Lets test

This commit is contained in:
2024-12-12 19:55:30 +01:00
parent e4887345a5
commit c6ac4599f4
15 changed files with 173 additions and 2991 deletions

View File

@@ -4,7 +4,8 @@
{% block content %}
<header class="main">
<h1>{{ category_name }}</h1>
<!-- Spacer for future header -->
<p></p>
</header>
<div>
{{ content | safe }}

View File

@@ -1,9 +1,15 @@
<main>
{% for section in sections %}
<section>
<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>
<h2>{{ section.name }}</h2>
<p><strong>Summary:</strong> {{ section.summary }}</p>
<p><strong>Author:</strong> {{ section.author }}</p>
<div>
{{ section.content | safe }}
</div>