-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (29 loc) · 1017 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
27
28
29
30
31
32
33
34
---
layout: default
title: Home
---
<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="category-title">{{ post.date | date: '%Y' }}</h2>
<ul class="post-container">
{% endif %}
<li class="post-item">
<span class="post-meta date-label">{{ post.date | date: "%b %d" }}</span>
<div class="article-title"><a class="post-link" href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">{{ post.title }}</a></div>
</li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
<h2 class="category-title">{{ post.previous.date | date: '%Y' }}</h2>
<ul class="post-container">
{% endif %}
{% endif %}
{% endfor %}
</div>
</section>