www_mycelium/templates/index.html

10 lines
274 B
HTML
Raw Normal View History

2024-05-03 20:15:09 +00:00
{% extends "_default/base.html" %}
{% block content %}
<!-- home page template, has a banner and rows of page summaries -->
2024-05-06 09:59:44 +00:00
<div>
2024-05-03 20:15:09 +00:00
{% set page = get_page(path="home/index.md") %}
{{page.content | safe}}
</div>
2024-05-04 09:52:00 +00:00
{% include "partials/faq.html" %}
2024-05-03 20:15:09 +00:00
{% endblock content %}