2022-11-15 11:11:07 +00:00
|
|
|
{% extends "_default/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<!-- home page template, has a banner and rows of page summaries -->
|
2023-01-05 10:00:08 +00:00
|
|
|
<div class="container mx-auto">
|
2022-11-15 11:11:07 +00:00
|
|
|
{% set page = get_page(path="home/index.md") %}
|
|
|
|
{{page.content | safe}}
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|