-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·41 lines (38 loc) · 1.35 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
39
40
41
---
layout: page_no_comments
title: <i class="fa fa-home fa-lg"></i>
titlename: 首页
---
<center><h2>{{ site.title }}</h2></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 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 category in site.categories %}
{% if category[0] == cate %}
{% for post in category[1] limit:5 %}
<a href='{{ post.url }}' class="list-group-item clearfix">
{{post.title}}
<span class="badge">{{ post.date | date:"%Y年%m月%d日" }}</span>
</a>
{% endfor %}
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<!-- add clustrmaps -->
<script type='text/javascript' id='clustrmaps' src='//cdn.clustrmaps.com/map_v2.js?cl=080808&w=271&t=tt&d=4iXMS8X2dlPvu34J4JliBgAJQCnccDRLdoETli_fiGE&co=ffffff&ct=808080&cmo=3acc3a&cmn=ff5353'></script>