www_mycelium/templates/index.html

9 lines
249 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 -->
<div class="">
{% set page = get_page(path="home/index.md") %}
{{page.content | safe}}
</div>
{% endblock content %}