16 lines
397 B
HTML
16 lines
397 B
HTML
{% extends "page.html" %}
|
|
|
|
{% block content_body %}
|
|
{% if page.featured_image %}
|
|
{% from 'includes/macros.html' import pi %}
|
|
{% set i = page.featured_image[0] %}
|
|
{{ pi(i.pic, i.link, i.text, i.alt, i.credit, i.credit_link) }}
|
|
{% endif %}
|
|
<article>
|
|
{% include "includes/contact_form.html" %}
|
|
</article>
|
|
{% endblock content_body %}
|
|
|
|
{% block content_footer %}
|
|
{% endblock content_footer %}
|