-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
97 lines (82 loc) · 3.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
layout: default
---
<div id="index" class="row">
<div class="col-sm-9">
<div class="post-area">
<!-- small button -->
<!-- <p class="pull-right visible-xs">
<button>toggle</button>
</p> -->
<div class="post-list-header">
Posts
</div>
<div class="post-list-body">
<div class="all-posts" post-cate="All">
{% for post in paginator.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 class="paginator">
{% if paginator.total_pages > 1 %}
<!-- 分页代码 -->
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">上一页</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="active">{{ page }}</span>
{% elsif page == 1 %}
<a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
{% else %}
<a href="/{{ site.paginate_path | prepend: site.url | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">下一页</a>
{% endif %}
{% endif %}
</div>
</div>
<!-- <div class="posts-in-categories"> -->
{% 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 | prepend: site.baseurl }}" 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>
<div class="col-sm-3">
<div class="shadow-corner-curl hidden-xs">
<div class="categories-list-header">
Categories
</div>
<a href="{{'/index.html' | prepend: site.baseurl}}" class="categories-list-item" cate="All">
All<span class="my-badge"> {{site.posts | size}}</span>
</a>
{% for category in site.categories order:ascending %}
<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>