16 lines
371 B
HTML
16 lines
371 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% safe %}{{ pagination| }}{% endsafe %}
|
|
|
|
<div class="clearfix d-flex justify-content-center flex-wrap">
|
|
{% for image in images %}
|
|
<a href="/show/{{ image.id }}" class="thumbnail-image">
|
|
<img src="/images/thumbnails/{{ image.hash }}" alt="{{ image.title }}">
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|