www_ourverse.tf/templates/index.html
2023-01-05 12:00:08 +02:00

9 lines
266 B
HTML

{% extends "_default/base.html" %}
{% block content %}
<!-- home page template, has a banner and rows of page summaries -->
<div class="container mx-auto">
{% set page = get_page(path="home/index.md") %}
{{page.content | safe}}
</div>
{% endblock content %}