forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
27 lines (25 loc) · 881 Bytes
/
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
---
layout: default
---
<div class="posts">
<div class="container-fluid">
<div class="post-list">
{% for post in site.posts %}
<div class="post">
<div>
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
<div class="byline">
<time datetime={{ post.date | date: "%Y-%m-%d" }}>{{ post.date | date_to_string }}
<time class="ago" datetime={{ post.date }}></time>
</time>
·
{% for category in post.category %}
<span class="category">{{ category }}</span>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>