-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
48 lines (48 loc) · 1.51 KB
/
categories.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
42
43
44
45
46
47
48
---
layout: default
navId: categories
title: 分类
---
<div class="row">
<div class="col-md-9" role="main">
<div class="page-header">
<h1>{{ page.title }}</h1>
</div>
{% for category in site.categories %}
<section id="{{ category[0] }}">
<div class="panel panel-default">
<div class="panel-heading">
<h4>{{ category[0] }}</h4>
</div>
<div class="panel-body">
<ul>
{% for post in category[1] %}
<li>
{{ post.date | date:"%Y-%m-%d" }} ---
<a href="{{ site.ctx }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</section>
{% endfor %}
</div>
<div class="col-md-3">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{ page.title }}</h3>
</div>
<ul class="nav nav-pills nav-stacked">
{% for category in site.categories %}
<li>
<a href="#{{ category[0] }}">
<span class="badge pull-right">{{ category[1].size }}</span>
<i class="fa fa-list"></i> {{ category[0] }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>