-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.26 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
---
layout: default
---
{% include intro.html %}
<section class="post-list">
<div class="container">
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture%}
{% if forloop.first %}
<h2 class="year-post" id="{{ this_year }}-ref">{{this_year}}</h2>
<div class="post-preview">
{% endif %}
<span class="post-title alignable pull-left">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</span>
<span class="post-time alignable pull-right">
<time>{{ post.date | date: '%B, %Y '}}</time>
</span>
<div style="clear:both">
{% if forloop.last %}
</div>
{% else %}
{% if this_year != next_year %}
</div>
<h2 class="year-post" id="{{ next_year }}-ref">{{next_year}}</h2>
<div class="post-preview">
{% endif %}
{% endif %}
{% endfor %}
</div>
</section>