generated from hjess/PythonTemplateProject
15 lines
375 B
HTML
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>
|
|
|