t-r.de/theme/templates/contact.html

29 lines
583 B
HTML

{% extends "page.html" %}
{% block content_all %}
<article>
{% block content_header %}
{{ super() }}
{% endblock content_header %}
{% block content_body %}
{% if page.featured_image %}
{% from 'includes/macros.html' import fi %}
{% set i = page.featured_image[0] %}
{{ fi(i.pic, i.link, i.text, i.alt, i.credit, i.credit_link) }}
{% endif %}
{% if page.content %}
<div class="padded">
{{ page.content }}
</div>
{% endif %}
{% include "includes/contact_form.html" %}
{% endblock content_body %}
</article>
{% endblock content_all %}