-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathindex.html
31 lines (30 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: layout
title: "Eric Jones"
---
{% for post in site.posts offset: 0 limit: 50 %}
<div class="row">
<div class="span7">
<div class="row">
<div class="span2">
<a href="{{ post.url }}" >
<img border="0" width="250" height="150" src="/img/posts/{{ post.image }}" alt="">
</a>
</div>
<div class="span5">
<h4><strong><a href="{{ post.url }}">{{ post.title }}</a></strong></h4>
<p>
{{ post.summary }}
</p>
<p>
<i class="icon-calendar"></i> {{ post.date | date: "%B %e, %Y" }}
| <i class="icon-comment"></i> <a href="http://erjjones.github.com{{ post.url }}#disqus_thread" data-disqus-identifier="{{ post.url }}"></a>
| <i class="icon-tags"></i> Tags :{% for tag in post.tags %} <a href="/tags/{{ tag }}" rel="tooltip" title="View posts tagged with "{{ tag }}""><span class="label label-info">{{ tag }}</span></a> {% if forloop.last != true %} {% endif %} {% endfor %}
</p>
<p><a href="{{ post.url }}">Read more</a></p>
</div>
</div>
<hr>
</div>
</div>
{% endfor %}