-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (37 loc) · 1.21 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
---
layout: page_title
title: <i class="fa fa-home fa-lg"></i>
titlename: 首页
---
<!--<br>-->
<center><h3><font color="#2E8B57">D.K.的个人博客-可能是个程序员</font></h3></center>
<div class="row">
<div class="col-md-12">
<div class="panel panel-primary">
<div class="panel-heading">{{ site.locals.newest }}</div>
{% for post in paginator.posts %}
<a href='{{ post.url }}' class="list-group-item pjaxlink clearfix">
{{post.title}}
<span class="badge">{{ post.date | date:"%Y年%m月%d日" }}</span>
</a>
{% endfor %}
</div>
</div>
{% for cate in site.cates %}
<div class="col-md-12">
<div class="panel panel-primary">
<div class="panel-heading">{{ cate }}</div>
{% for tag in site.tags %}
{% if tag[0] == cate %}
{% for post in tag[1] %}
<a href='{{ post.url }}' class="list-group-item pjaxlink clearfix">
{{post.title}}
<span class="badge">{{ post.date | date:"%Y年%m月%d日" }}</span>
</a>
{% endfor %}
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>