forked from Jerkwin/Jerkwin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
15 lines (14 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
layout: default
---
<ul class="listing">
{%for post in paginator.posts%}{%capture y%}{{post.date|date:"%Y"}}{%endcapture%}{%if year !=y%}{%assign year=y%}<li class="listing-seperator">{{y}}</li>{%endif%}
<li class="listing-item"><time>{{post.date|date:"%m-%d"}}</time><a href="{{post.url}}"> {{post.title}}</a></li>{%endfor%}
</ul>
<div id="post-pagination" class="paginator">
{%if paginator.previous_page%}{%if paginator.previous_page==1%}<a href="/"><前页</a>{%else%}<a href="/page{{paginator.previous_page}}"><前页</a>{%endif%}{%else%}<span class="previous disabled"><前页</span>{%endif%}
{%if paginator.page==1%}<span class="current-page">1</span>{%else%}<a href="/">1</a>{%endif%}
{%for count in (2..paginator.total_pages)%}{%if count==paginator.page%}<span class="current-page">{{count}}</span>{%else%}<a href="/page{{count}}">{{count}}</a>{%endif%}{%endfor%}
{%if paginator.next_page%}<a class="next" href="/page{{paginator.next_page}}">后页></a>{%else%}<span class="next disabled">后页></span>{%endif%}
(共{{paginator.total_posts}}篇)
</div>