buildsomething/templates/contact.html

22 lines
473 B
HTML
Raw Normal View History

2024-11-06 14:19:46 +01:00
{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
{% block header %}
<header class="box-shadow">
2024-11-07 10:16:24 +01:00
{{ macros::render_header(path=page.path) }}
2024-11-06 14:19:46 +01:00
</header>
{% endblock header %}
2024-11-13 09:19:34 +01:00
{% block hero %}
{% endblock hero %}
2024-11-06 14:19:46 +01:00
{% block content %}
2024-11-10 14:39:03 +01:00
<div class="content text contact">
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
</div>
2024-11-06 14:19:46 +01:00
{% endblock content %}