Browse Source

add thumbnail to /archive.html template.

stable
Craig Oates 2 years ago
parent
commit
4b5831452d
  1. 6
      templates/archive.html

6
templates/archive.html

@ -5,7 +5,11 @@
{% for entry in archive-entries %}
<div>
<a href="/view/archive/{{entry.slug}}">{{entry.title}}</a>
<a href="/view/archive/{{entry.slug}}">
<img alt="{{entry.title}}"
src="/storage/thumb/archive/{{entry.slug}}">
{{entry.title}}
</a>
</div>
{% endfor %}

Loading…
Cancel
Save