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.
37 lines
649 B
37 lines
649 B
|
|
|
|
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wagtailcore_tags wagtailimages_tags %}
|
|
|
|
{% block body_class %}template-blogpage{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p><a href="{{ page.get_parent.url }}">Return to blog</a></p>
|
|
<h1>{{ page.title }}</h1>
|
|
<p class="meta">{{ page.date }}</p>
|
|
<div class="intro">{{ page.intro }}</div>
|
|
{{ page.body|richtext }}
|
|
|
|
|
|
|
|
{% for item in page.gallery_images.all %}
|
|
<div style="float: left; margin: 5px">
|
|
{% image item.image fill-320x240 %}
|
|
<p>{{ item.caption }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|