tlwiki-hugo-theme/layouts/_default/list.html

13 lines
202 B
HTML
Raw Normal View History

2021-03-05 09:44:42 +00:00
{{ define "main" }}
<h1 id="{{ .Title | urlize }}">{{ .Title | markdownify }}</h2>
{{ .Content }}
<ul>
{{ range .Pages }}
{{ .Render "li" }}
{{ end }}
</ul>
{{ end }}