mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
30b4eb07f7
- This is a first pass at getting a more logical structure. The focus is on moving from admin/frontend to client/server. - The location of the databases is highly important, this isn't expected to change again In the future - client/assets should probably become public/ - more stuff should be shared (helpers etc) - cleanup some confusion around tpl and views
10 lines
No EOL
373 B
Handlebars
10 lines
No EOL
373 B
Handlebars
|
|
<nav id="pagination" role="pagination">
|
|
{{#if next}}
|
|
<div class="previous-page"><a href="/page/{{next}}/">Older Posts →</a></div>
|
|
{{/if}}
|
|
<div class="page-number">Page {{page}}<span class="extended"> of {{pages}}</span></div>
|
|
{{#if prev}}
|
|
<div class="next-page"><a href="/page/{{prev}}/">← Newer Posts</a></div></nav>
|
|
{{/if}}
|
|
</nav> |