buildsomething/templates/contact.html
2024-11-13 09:19:34 +01:00

22 lines
473 B
HTML

{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
{% block header %}
<header class="box-shadow">
{{ macros::render_header(path=page.path) }}
</header>
{% endblock header %}
{% block hero %}
{% endblock hero %}
{% block content %}
<div class="content text contact">
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
</div>
{% endblock content %}