-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 974 Bytes
/
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
---
layout: page
title: wcccode
titlename: wcccode
---
<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>