You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
476 B
20 lines
476 B
{% extends "base.html" %}
|
|
|
|
{% load wagtailcore_tags wagtailimages_tags %}
|
|
|
|
{% block body_class %}template-blogpage{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.body|richtext }}
|
|
|
|
{% for item in page.gallery_images.all %}
|
|
<div style="float: left; margin: 10px">
|
|
{% image item.image fill-320x240 %}
|
|
<p>{{ item.caption }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
<div style="clear: left"></div>
|
|
|
|
|
|
{% endblock %}
|