1
0
Fork 0
ejv2.cc/themes/risotto/layouts/_default/list.html
Ethan Marshall 5da2f358e9
Clean up and improve some layouts
Adds tags and category shows to single pages.
Adds dates to list pages.
2024-08-02 00:33:05 +01:00

16 lines
380 B
HTML

{{ define "main" }}
<h1 id="{{ .Title | urlize }}">{{ .Title | markdownify }}</h1>
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a> -- {{ .Date.Format "2 January 2006" }}</li>
{{ end }}
</ul>
{{ end }}
{{define "aside" }}
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
{{ end }}