Initial commit

This commit is contained in:
sasha-astiadi
2022-10-06 16:08:29 +02:00
commit 7c5298a4b2
115 changed files with 5416 additions and 0 deletions

9
templates/index.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends "_default/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 %}