Files
b1tsblog/internal/web/templates/list.html
jbergner b7edfdd544
Some checks failed
release-tag / release-image (push) Failing after 1m48s
v2-Neuerstellung
2026-05-18 11:25:31 +02:00

17 lines
473 B
HTML

{{ define "content" }}
<h1>{{ .Title }}</h1>
<p>{{ .Description }}</p>
<section class="grid">
{{ range .Articles }}
<article class="card">
{{ if .Cover }}<img src="{{ .Cover }}" alt="">{{ end }}
<h2><a href="/post/{{ .Slug }}">{{ .Title }}</a></h2>
<p>{{ .Description }}</p>
<small>{{ .Date.Format "02.01.2006" }} · {{ .Counter }} Aufrufe · {{ .Format }}</small>
</article>
{{ else }}
<p>Noch keine Artikel.</p>
{{ end }}
</section>
{{ end }}