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">
|
|
|
|
|
<p><b>Opsumering: {{ section.summary }}</b></p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-4 col-12-medium">
|
|
|
|
|
<p><em>Forfatter: {{ section.author }}</em></p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-12-11 23:56:15 +01:00
|
|
|
<h2>{{ section.name }}</h2>
|
|
|
|
|
<div>
|
|
|
|
|
{{ section.content | safe }}
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</section>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</main>
|
|
|
|
|
|