webdog/site/templates/images.tera

24 lines
641 B
Text
Raw Normal View History

2024-11-04 17:09:11 -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>
2024-11-04 17:09:11 -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>
2024-11-04 17:09:11 -08:00
{% endif %}
2023-11-12 19:57:47 -08:00
<h3>page {{page}}/{{page_max}}</h3>
2024-11-04 17:09:11 -08:00
{% if previous %}
2023-11-12 19:54:54 -08:00
<a href="./{{previous}}">previous page</a>
2024-11-04 17:09:11 -08:00
{% endif %}
{% if next %}
2023-11-12 19:54:54 -08:00
<a href="./{{next}}">next page</a>
2024-11-04 17:09:11 -08:00
{% endif %}
2022-12-14 21:39:19 -08:00
<div class="images-list">
2024-11-04 17:09:11 -08:00
{% for resource in resources %}
<a class="image" href="/i/{{resource.id}}">
<img class="image-actual" src="{{resource.cdn_file}}" alt="{{resource.alt}}">
<span class="title">{{resource.title}}</span>
2022-12-14 21:39:19 -08:00
</a>
2024-11-04 17:09:11 -08:00
{% endfor %}
2022-12-14 21:39:19 -08:00
</div>