rootdo/themes/risotto/layouts/_default/list.html

16 lines
306 B
HTML
Raw Permalink Normal View History

2024-10-04 12:44:59 +00:00
{{ define "main" }}
<h1 id="{{ .Title | urlize }}">{{ .Title | markdownify }}</h1>
{{ .Content }}
<ul>
{{ range .Pages }}
{{ .Render "li" }}
{{ end }}
</ul>
{{ end }}
{{define "aside" }}
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
{{ end }}