www_zola_template/templates/index.html
2025-08-04 17:30:12 +03:00

11 lines
234 B
HTML

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