yenu/resources/templates/index.html

15 lines
438 B
HTML
Raw Normal View History

2017-03-15 00:28:27 +01:00
{% extends "layout.html" %}
{% block content %}
{% safe %}{{ pagination }}{% endsafe %}
{% safe %}{{ pagination-mobile }}{% 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" title="{{ image.title }}">
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-15 00:28:27 +01:00
{% endblock %}