mirror of https://github.com/openresty/openresty
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
587 B
Plaintext
29 lines
587 B
Plaintext
<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>
|
|
|