summaryrefslogtreecommitdiffstats
path: root/planet2/config/pager-template.html
blob: 301a7ffd7bea93c748415e7f0d6912dc587a25f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<table class="centered">
    <tr>
        <td>
            <#if prev??>
                &laquo; <a href="${prev}">Previous Page</a> |
            </#if>
        </td>
        <td>
            <a href="${filename}">Page (${page} of ${pages})</a>
        </td>
        <td>
            <#if next??>
                | <a href="${next}">Next Page</a> &raquo;
            </#if>
        </td>
    </tr>
</table>