website/layouts/_default/list.html
Jan Kremer bc23423206
meta: Big update
- Update design
- Add new logo
- All posts in a single category
- New draft: Selbst Hosting
2025-02-22 19:08:52 +01:00

16 lines
477 B
HTML

{{ define "main" }}
{{ .Content }}
{{ range .Pages }}
<a href="{{ .RelPermalink }}" style="display: block">
<div class="list">
<h2>{{ .Title }}</h2>
<p class="lead">{{ .Description }}</p>
{{ $dateMachine := .Lastmod | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Lastmod | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
</div>
</a>
{{ end }}
{{ end }}