-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.11 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
---
layout: page
title: 首页
---
<div class="page page-index">
{% 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>
<div class="title">
<a href="{{ site.baseurl | append: post.url }}" class="hover-underline">{{ post.title }}</a>
</div>
<div class="categories">
{% for categorie in post.categories -%}
<a href="{{site.baseurl}}/pages/categories.html#{{ categorie }}" class="hover-underline">{{ categorie }}</a>
{%- endfor %}
</div>
</li>
{%- if forloop.last or post_previous_year != post_year %}
</ul>
</div>
{%- endif %}
{%- endfor %}
</div>