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