Files
LifeFaq/templates/combined_template.html
2024-12-11 23:56:15 +01:00

15 lines
375 B
HTML

<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>