mirror of
https://github.com/zyllian/webdog.git
synced 2025-01-18 11:44:35 -08:00
23 lines
568 B
Handlebars
23 lines
568 B
Handlebars
{{#if tag}}
|
|
<h1>Images tagged {{tag}}</h1>
|
|
<p><a href="/images/">View all images</a></p>
|
|
{{else}}
|
|
<h1>Images</h1>
|
|
<p><a href="/i/tags">View image tags</a></p>
|
|
<p><a href="rss.xml">RSS Feed</a></p>
|
|
{{/if}}
|
|
<h3>Page {{page}}/{{page_max}}</h3>
|
|
{{#if previous}}
|
|
<a href="./{{previous}}">Previous page</a>
|
|
{{/if}}
|
|
{{#if next}}
|
|
<a href="./{{next}}">Next page</a>
|
|
{{/if}}
|
|
<div class="images-list">
|
|
{{#each resources}}
|
|
<a class="image" href="/i/{{id}}">
|
|
<img class="image-actual" src="{{src}}" alt="{{alt}}">
|
|
<span class="title">{{title}}</span>
|
|
</a>
|
|
{{/each}}
|
|
</div>
|