17 lines
473 B
HTML
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 }}
|