Files
b1tsblog/internal/web/templates/list.html
2025-05-04 13:40:31 +02:00

17 lines
377 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ define "list" }} {{/* ausführbarer EntryPoint */}}
{{ template "base.html" . }} {{/* ruft das Layout auf */}}
{{ end }}
{{ define "title" }}Alle Artikel{{ end }}
{{ define "body" }}
<ul>
{{ range . }}
<li>
<a href="/post/{{ .Slug }}">{{ .Title }}</a>
— {{ .Date.Format "02.01.2006" }}
</li>
{{ end }}
</ul>
{{ end }}