2017-03-15 00:28:27 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-03-17 00:23:13 +01:00
|
|
|
|
2017-04-15 22:45:43 +02:00
|
|
|
{% safe %}{{ pagination| }}{% endsafe %}
|
2017-03-22 01:02:51 +01:00
|
|
|
|
2017-04-03 22:23:01 +02:00
|
|
|
<div class="clearfix d-flex justify-content-center flex-wrap">
|
2017-03-22 01:02:51 +01:00
|
|
|
{% for image in images %}
|
|
|
|
<a href="/show/{{ image.id }}" class="thumbnail-image">
|
2017-04-15 22:45:43 +02:00
|
|
|
<img src="/images/thumbnails/{{ image.hash }}" alt="{{ image.title }}">
|
2017-03-22 01:02:51 +01:00
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2017-03-17 00:23:13 +01:00
|
|
|
|
2017-04-15 22:45:43 +02:00
|
|
|
|
2017-03-15 00:28:27 +01:00
|
|
|
{% endblock %}
|