- Update design - Add new logo - All posts in a single category - New draft: Selbst Hosting
14 lines
410 B
HTML
14 lines
410 B
HTML
{{ define "main" }}
|
|
<article>
|
|
{{ $dateMachine := .Lastmod | time.Format "2006-01-02T15:04:05-07:00" }}
|
|
{{ $dateHuman := .Lastmod | time.Format ":date_long" }}
|
|
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<p class="lead">{{ .Description }}</p>
|
|
|
|
{{ .Content }}
|
|
</article>
|
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
|
{{ end }}
|