17 lines
377 B
HTML
17 lines
377 B
HTML
{{ define "list" }} {{/* ‑‑ ausführbarer Entry‑Point */}}
|
||
{{ 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 }}
|