-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 851 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
---
layout: page
---
<ul class="post-list">
<!-- Display pinned posts first -->
{% for post in site.posts %}
{% if post.pinned %}
<li class="list-group-item post-item pinned-post">
<a href="{{ post.url }}">
<span class="date">{{ post.date | date: "%Y.%m.%d" }}</span>
<span class="title">{{ post.title }}</span>
</a>
</li>
{% endif %}
{% endfor %}
<!-- Display non-pinned posts -->
{% for post in site.posts %}
{% unless post.pinned %}
<li class="list-group-item post-item">
<a href="{{ post.url }}">
<span class="date">{{ post.date | date: "%Y.%m.%d" }}</span>
<span class="title">{{ post.title }}</span>
</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<footer class="site-footer">
<span class="site-footer-credits">Copyright©2011-{{ site.time | date: "%Y" }}</span>
</footer>