1
0
Fork 0
ejv2.cc/themes/risotto/layouts/_default/list.html

17 lines
380 B
HTML
Raw Normal View History

2024-08-01 06:21:40 +01:00
{{ define "main" }}
<h1 id="{{ .Title | urlize }}">{{ .Title | markdownify }}</h1>
2024-08-01 07:15:24 +01:00
{{ .Content }}
2024-08-01 06:21:40 +01:00
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a> -- {{ .Date.Format "2 January 2006" }}</li>
2024-08-01 06:21:40 +01:00
{{ end }}
</ul>
{{ end }}
{{define "aside" }}
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
{{ end }}