forked from hero/www_hero_project
16 lines
288 B
HTML
16 lines
288 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/social.html" %}
|
|
|
|
{% include "partials/faq.html" %}
|
|
|
|
{% endblock content %}
|