forked from hero/www_hero_project
14 lines
250 B
HTML
14 lines
250 B
HTML
|
{% extends "_default/base.html" %}
|
||
|
{% block content %}
|
||
|
|
||
|
<div>
|
||
|
{% set page = get_page(path="contact/index.md") %}
|
||
|
{{page.content | safe}}
|
||
|
</div>
|
||
|
|
||
|
{% include "partials/contact.html" %}
|
||
|
|
||
|
{% include "partials/faq.html" %}
|
||
|
|
||
|
{% endblock content %}
|