Files
LifeFaq/templates/combined_template.html

21 lines
588 B
HTML
Raw Permalink Normal View History

2024-12-11 23:56:15 +01:00
<main>
{% for section in sections %}
<section>
2024-12-12 19:55:30 +01:00
<div class="row">
<div class="col-8 col-12-medium">
2024-12-12 23:30:19 +01:00
{# <p><b>Kort: {{ section.summary }}</b></p>#}
2024-12-12 19:55:30 +01:00
</div>
<div class="col-4 col-12-medium">
2024-12-12 23:30:19 +01:00
<p><small> <em>Kort: {{ section.summary }}</em></small></p>
2024-12-12 19:55:30 +01:00
</div>
</div>
2024-12-12 23:30:19 +01:00
{# <h2>{{ section.name }}</h2>#}
2024-12-11 23:56:15 +01:00
<div>
{{ section.content | safe }}
</div>
<hr>
</section>
{% endfor %}
</main>