verdandi-test/templates/gallery.html

12 lines
204 B
HTML
Raw Normal View History

2016-04-19 21:57:58 +02:00
{% extends "base.html" %}
{% block content %}
<h1>{{title}}</h1>
{{description}}
2016-04-19 21:57:58 +02:00
{% for image in images %}
<a href="{{image.image}}"><img src="{{image.thumb}}" /></a>
{% endfor %}
{% endblock %}