webdog/site/templates/images.hbs

24 lines
568 B
Handlebars
Raw Normal View History

2022-12-14 21:39:19 -08:00
{{#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>
2022-12-14 21:52:11 -08:00
<p><a href="rss.xml">RSS Feed</a></p>
2022-12-14 21:39:19 -08:00
{{/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}}
2022-12-14 21:39:19 -08:00
<a class="image" href="/i/{{id}}">
<img class="image-actual" src="{{src}}" alt="{{alt}}">
<span class="title">{{title}}</span>
</a>
{{/each}}
</div>