summaryrefslogtreecommitdiffstats
path: root/tozt/layouts/paginator.html
blob: 68a9013904913bd6973d8936ff87ce8ed0cab4c8 (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
27
---
layout : default
---
<div class="page-header">
  <h4>home</h4>
</div>
{{#collection.paginator}}
<div class="{{ collection.resource_name}}">
    <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>
{{/collection.paginator}}
<div class="pagination">
    <ul>
        {{#collection.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}}
        {{/collection.paginator_navigation}}
    </ul>
</div>