-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·55 lines (55 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
---
<div id="index" class="row">
<div class="col-sm-9">
<div class="post-area">
<div class="post-list-header">
文章
</div>
<div class="post-list-body">
<div class="all-posts" post-cate="All">
{% for post in site.posts %}
<a class="post-list-item" href="{{ post.url | prepend: site.baseurl }}">
<h2>
{{ post.title }}
</h2>
<span class="">{{ post.date | date: "%b %-d, %Y" }}</span>
</a>
{% endfor %}
</div>
{% for category in site.categories %}
<div post-cate="{{category | first}}">
{% for posts in category %}
{% for post in posts %}
{% if post.url %}
<a href="{{ post.url }}" class="post-list-item">
<h2>
{{ post.title }}
</h2>
<span class="">{{ post.date | date: "%b %-d, %Y" }}</span>
</a>
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
<div class="col-sm-3">
<div class="shadow-corner-curl hidden-xs">
<div class="categories-list-header">
分类
</div>
<a href="javascript:;" class="categories-list-item" cate="All">
全部<span class="my-badge"> {{site.posts | size}}</span>
</a>
{% for category in site.categories reversed%}
<a href="javascript:;" class="categories-list-item" cate="{{ category | first }}">
{{ category | first }} <span class="my-badge">{{ category | last | size }}</span>
</a>
{% endfor %}
</div>
</div>
</div>