mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
13 lines
No EOL
310 B
HTML
13 lines
No EOL
310 B
HTML
{{ define "main" }}
|
|
<main class="single maxw">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ range .Pages.ByPublishDate.Reverse }}
|
|
<p>
|
|
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
<a class="summary" href="{{ .RelPermalink }}">
|
|
<p>{{ .Summary }}</p>
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
</main>
|
|
{{ end }} |