15 lines
358 B
HTML
15 lines
358 B
HTML
{% extends "base.html" %}
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<section id="contact-page">
|
|
<div class="container">
|
|
<center>
|
|
<h2>{{ page.title }}</h2>
|
|
<p class="lead">{{ page.thanks|richtext }}</p>
|
|
</center>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|