blob: 28bf36ae66f3424df43954cd379518303e10244b (
plain)
1
2
3
4
5
6
7
8
9
10
|
{{define "body"}}
<main id="content">
{{ range .Sections }}
<div class="introduction">
<h1>{{ .Name }}</h1>
<p>{{ .Description }}</p>
</div>
{{ template "logs_display" . }} {{ end }}
</main>
{{end}}
|