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.
 
 
 
 

35 lines
637 B

{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block body_class %}template-blogpage{% endblock %}
{% block content %}
<br>
<div class="row featurette">
<div class="col-md-7">
<h1>{{ page.title }}</h1>
{{ page.body|richtext }}
</div>
<div class="col-md-5">
{% for item in page.gallery_images.all %}
<div style="float: center; margin: 10px">
{% image item.image fill-600x400 %}
<p>{{ item.caption }}</p>
</div>
{% endfor %}
{% endblock %}
</div>
</div>
<hr class="featurette-divider">