Files
LifeFaq/templates/combined_template.html

16 lines
336 B
HTML
Raw Normal View History

2024-12-11 23:56:15 +01:00
<main>
{% for section in sections %}
<section>
2024-12-31 00:05:36 +01:00
<div class="align-left">
<p><small> <em>Kort: {{ section.summary }}</em></small></p>
2024-12-12 19:55:30 +01:00
</div>
2024-12-31 00:05:36 +01:00
2024-12-11 23:56:15 +01:00
<div>
{{ section.content | safe }}
</div>
<hr>
</section>
{% endfor %}
</main>