website/layouts/_default/home.html
Jan Kremer f91ff03006
Meta: Spring cleaning
Added syntax highlighting, remove font, many small improvements.
Hot fix font: Athelas shows weird symbols in Chrome.
2024-04-02 08:10:20 +02:00

17 lines
506 B
HTML

{{ define "main" }}
{{ .Content }}
{{ $pages := .Paginate (where .Site.RegularPages "Type" "ne" "page") }}
{{ range $pages.Pages }}
<a href="{{ .RelPermalink }}" style="display:block">
<div class="list">
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format "2006-01-02" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
<h2>{{ .Title }}</h2>
<p class="lead">{{ .Description }}</p>
</div>
</a>
{{ end }}
{{ end }}