forked from 2049bbs/2049bbs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (28 loc) · 885 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
36
37
38
39
40
---
layout: default
---
{% include get_baseurl.html %}
<div class="nav-title">
<div class="float-left fs14">
<a href="{{ baseURL }}/index.html">{{ site.name }}</a>
</div>
<div class="c"></div>
</div>
<div class="main-box home-box-list">
{% for article in paginator.posts %}
{% include article_list_item.html %}
{% endfor %}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ baseURL }}{{ paginator.previous_page_path }}{% if paginator.page != 2 %}/{% endif %}index.html" class="float-left">
« 上一页
</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ baseURL }}{{ paginator.next_page_path }}/index.html" class="float-right">
下一页 »
</a>
{% endif %}
<div class="c"></div>
</div>
</div>