webdog/site/templates/images.hbs

24 lines
568 B
Handlebars
Raw Normal View History

2022-12-14 21:39:19 -08:00
{{#if tag}}
2023-11-12 19:54:54 -08:00
<h1>images tagged {{tag}}</h1>
2023-11-12 19:57:47 -08:00
<p><a href="/images/">view all images</a></p>
2022-12-14 21:39:19 -08:00
{{else}}
2023-11-12 19:54:54 -08:00
<h1>images</h1>
2023-11-12 19:57:47 -08:00
<p><a href="/i/tags">view image tags</a></p>
<p><a href="rss.xml">rss feed</a></p>
2022-12-14 21:39:19 -08:00
{{/if}}
2023-11-12 19:57:47 -08:00
<h3>page {{page}}/{{page_max}}</h3>
2022-12-14 21:39:19 -08:00
{{#if previous}}
2023-11-12 19:54:54 -08:00
<a href="./{{previous}}">previous page</a>
2022-12-14 21:39:19 -08:00
{{/if}}
{{#if next}}
2023-11-12 19:54:54 -08:00
<a href="./{{next}}">next page</a>
2022-12-14 21:39:19 -08:00
{{/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>