forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
47 lines (37 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture %}
{% if forloop.first %}
<div class="hat_title">
<h3>{{this_year}}</h3>
</div>
<div class="post_list">
<ul>
{% endif %}
<li>
<h4 style="display: inline;">
<span class="post-meta">{{ post.date | date: "%Y-%m-%e" }}</span> » <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h4>
</li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
</div>
<div class="hat_title">
<h3> {{next_year}}</h3>
</div>
<div class="post_list">
<ul>
{% else %}
{% endif %}
{% endif %}
{% endfor %}
</div>