mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
11 lines
No EOL
275 B
HTML
11 lines
No EOL
275 B
HTML
{{ define "main" }}
|
|
<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 }}
|
|
{{ end }} |