www_mycelium/templates/layouts/contact.html

16 lines
288 B
HTML
Raw Normal View History

2024-05-06 20:53:21 +00:00
{% extends "_default/base.html" %}
{% block content %}
<div>
{% set page = get_page(path="contact/index.md") %}
{{page.content | safe}}
</div>
{% include "partials/contact.html" %}
2024-05-21 06:15:21 +00:00
{% include "partials/social.html" %}
2024-05-06 20:53:21 +00:00
{% include "partials/faq.html" %}
{% endblock content %}