wikingo/templates/list.html

17 lines
330 B
HTML
Raw Normal View History

2022-03-22 15:36:18 +00:00
{{define "title"}}
Wikingo - List
{{end}}
{{define "body"}}
2022-04-04 20:16:07 +00:00
{{ if .title }}
<h1>{{ .title }}</h1>
{{ else }}
2022-03-22 15:36:18 +00:00
<h1>List</h1>
2022-04-04 20:16:07 +00:00
{{ end }}
2022-03-22 15:36:18 +00:00
<ul>
{{ range .pages }}
2022-04-04 20:16:07 +00:00
<li><a href="/{{ .Name }}/{{ .Version }}">{{ .Name }}, v{{ .Version }}</a>.- {{ .Body }}</li>
2022-03-22 15:36:18 +00:00
{{ end }}
</ul>
{{end}}