-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
44 lines (42 loc) · 1.32 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
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
date: 2014-10-19 23:51
---
{% if site.show_blog_header %}
{% include blog_header.html %}
{% endif %}
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8">
{% for post in site.posts %}
<div class="blog-short">
<h3><a href="{{post.url | prepend: site.baseurl}}">{{post.title}}</a></h3>
<div>
<small>
<i class="fa fa-calendar"></i>
<time>
{{ post.date | date:'%A, %B %d, %Y'}}
</time>
</small>
</div>
<div class="margin10">
<small>
<i class="fa fa-tag"></i>
{% for tag in post.tags %}
<span class="label label-tag">{{tag}}</span>
{% endfor %}
</small>
</div>
{% if post.thumbnail %}
<div class="imgcontainer col-xs-12 col-sm-4 col-md-3 col-lg-3">
<img src="{{post.thumbnail}}"
alt="{{post.title}}" class="pull-left img-responsive thumb img-thumbnail" />
</div>
{% endif %}
<article class="excerpt">{{post.excerpt}}</article>
<a class="pull-right marginBottom10" href="{{post.url | prepend: site.baseurl }}">Read More</a>
</div>
{% endfor %}
</div>
</div>
</div>