32bit.cafe/layouts/guides/list.html

10 lines
226 B
HTML
Raw Permalink Normal View History

2024-05-01 00:33:01 +00:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> {{ with .Params.author }}by {{ . }}{{ end }}</li>
{{ end }}
</ul>
{{ end }}