mirror of
https://gitlab.wasp.best/sel/web.git
synced 2026-04-28 21:44:08 +02:00
12 lines
389 B
HTML
12 lines
389 B
HTML
{{ define "main" }}
|
|
<section class="highlighted">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</section>
|
|
{{ range .Pages }}
|
|
<section>
|
|
<p><a class="post-title" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> <span class="date"> {{ .Date | time.Format "2006-01-02, 15:04 -07:00" }}</span></p>
|
|
<p class="summary">{{ .Summary }}</p>
|
|
</section>
|
|
{{ end }}
|
|
{{ end }}
|