forked from lay1010/lay1010.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·38 lines (37 loc) · 1.61 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="#000080">怕</font><font color="#FFA500">什</font><font color="#2E8B57">么</font><font color="#F08080">真</font><font color="#00CED1">理</font><font color="red">无</font><font color="#BA55D3">穷, </font><font color="#601986">进</font><font color="#556fb5">一</font><font color="#fa1089">寸</font><font color="#638c0b">有</font><font color="#e00089">一</font><font color="#0a1089">寸</font><font color="#f0c089">的</font><font color="#00c380">欢</font><font color="#cc1089">喜</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>