forked from TMaize/tmaize-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 1006 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 1006 Bytes
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
---
layout: page
title: 首页
css: [common.css,page.css]
js: [blog.js]
---
<div class="page page-index animation-fade-up">
{% for post in site.posts %}
{% capture post_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture post_previous_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% capture post_next_year %}{{ post.next.date | date: "%Y" }}{% endcapture %}
{% if forloop.first or post_next_year != post_year %}
<div class="list-post"><h2 id="{{post_year}}">{{post_year}}</h2><ul>
{% endif %}
<li>
<span class="date">{{ post.date | date: "%Y/%m/%d" }}</span>
<a href="{{ site.baseUrl | append: post.url }}" class="title hover-underline">{{ post.title }}</a>
{% for categorie in post.categories %}
<a href="{{site.baseUrl}}/pages/categories.html#{{ categorie }}" class="category hover-underline">{{ categorie }}</a>
{% endfor %}
</li>
{% if forloop.last or post_previous_year != post_year %}
</ul></div>
{% endif %}
{% endfor %}
</div>