14 lines
509 B
HTML
14 lines
509 B
HTML
{% extends "page.html" %} {% block content_header %}
|
|
<article>
|
|
{% if page.featured_image %}
|
|
<header class="content-header">
|
|
{% 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) }}
|
|
</header>
|
|
{% endif %} {% endblock content_header %} {% block content_body %} {% include
|
|
"includes/contact_form.html" %} {% endblock content_body %} {% block
|
|
content_footer %}
|
|
</article>
|
|
{% endblock content_footer %}
|