14 lines
421 B
HTML
14 lines
421 B
HTML
{% load wagtailcore_tags wagtailimages_tags %}
|
|
|
|
|
|
{% if page.image %}
|
|
{% image page.image width-1000 as photo %}
|
|
<div class="mb-3 image header-image" data-image='{{ photo.url }}'></div>
|
|
{% endif %}
|
|
<h1 class="display-5">{{ page.title }}</h1>
|
|
<h5 class="my-3">Subtitle</h5>
|
|
<p>{% include "common/content_details.html" with page=page %}</p>
|
|
<hr />
|
|
<div class="content mt-3">
|
|
{% include_block page.body %}
|
|
</div>
|