29 lines
587 B
C
29 lines
587 B
C
|
<ul class="module-list">
|
||
|
[% last_id %]
|
||
|
[% FOREACH post IN posts -%]
|
||
|
<li class="module-list-item">
|
||
|
<a href="#post-[% post.id %]">[% post.title %]</a>
|
||
|
</li>
|
||
|
[%- last_id = post.id %]
|
||
|
[% END -%]
|
||
|
</ul>
|
||
|
|
||
|
<p class="module-more">
|
||
|
|
||
|
[% IF offset > 0 %]
|
||
|
<a href="javascript:getRecentPosts([% offset - count %])"><<</a>
|
||
|
[% END %]
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
[% IF last_id > 1 && posts.size == count %]
|
||
|
<a id="more-recent-posts" href="javascript:getRecentPosts([% offset + count %]);">
|
||
|
Next...
|
||
|
</a>
|
||
|
[% END %]
|
||
|
|
||
|
</p>
|
||
|
|