summaryrefslogtreecommitdiffstats
path: root/_root/index.html
blob: 1a0d384a124b7e448b7734189cff0f564a47fbb1 (plain) (blame)
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
---
title: home
---
{{# posts.paginator }}
<div class="post">
  <h3 class="title"><a href="{{url}}">{{title}}</a> <span class="date">{{ date }}</span></h3>
  {{{ summary }}}
  <div class="more">
    <a href="{{url}}">read more..</a>
  </div>
</div>
{{/ posts.paginator }}

<hr>
<div class="pagination">
  <ul>
  {{#posts.paginator_navigation}}
    {{#is_active_page}}
      <li class="active"><a href="{{url}}">{{name}}</a></li>
    {{/is_active_page}}
    {{^is_active_page}}
      <li><a href="{{url}}">{{name}}</a></li>
    {{/is_active_page}}
  {{/posts.paginator_navigation}}
  </ul>
</div>