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

10 lines
226 B
HTML

{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> {{ with .Params.author }}by {{ . }}{{ end }}</li>
{{ end }}
</ul>
{{ end }}