work with risotto

This commit is contained in:
Colmaris 2025-03-14 18:24:19 +01:00
parent e336313018
commit 8327ef14e6
27 changed files with 627 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{{ 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 }}