feat: display images on frontpage

This commit is contained in:
2023-06-24 16:43:43 +02:00
parent 16f56cba7a
commit 2cd9d31657

View File

@@ -22,7 +22,11 @@
<div class="overview"> <div class="overview">
<p> <p>
{% for path in paths %} {% for path in paths %}
{{ path }}<br> {% if not "cache" in path %}
<a href="/m/{{ path }}">
<img alt="{{ path }}" src="/m/{{ path }}?encoding=webp&x=250" class="float: right"></img>
</a>
{% endif %}
{% endfor %} {% endfor %}
</p> </p>
</div> </div>