2022-03-18 13:35:57 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
|
2023-06-11 21:13:11 +02:00
|
|
|
<section class="section">
|
2022-03-18 13:35:57 +01:00
|
|
|
<div class="container">
|
2023-07-24 12:02:51 +02:00
|
|
|
<h2 class="mb-4">{{ .Title }}</h2>
|
|
|
|
<div class="content text-justify">
|
|
|
|
{{ range .Params.files }}
|
|
|
|
{{ partial "download" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
2022-03-18 13:35:57 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ end }}
|