Lets test

This commit is contained in:
2024-12-11 23:56:15 +01:00
parent 379f6a4273
commit 82228fdb27
27 changed files with 545 additions and 151 deletions

View File

@@ -0,0 +1,14 @@
<main>
{% for section in sections %}
<section>
<h2>{{ section.name }}</h2>
<p><strong>Summary:</strong> {{ section.summary }}</p>
<p><strong>Author:</strong> {{ section.author }}</p>
<div>
{{ section.content | safe }}
</div>
<hr>
</section>
{% endfor %}
</main>