amberterm/layouts/_default/single.html
2022-06-07 16:38:04 +02:00

18 lines
470 B
HTML

{{ define "main" }}
<main>
<article>
<h1>{{ .Title }}</h1>
{{ if .Params.showthedate | default "true" }}
<b><time>{{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }}</time></b>
{{ end }}
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
<div>
{{ .Content }}
</div>
</article>
</main>
{{ partial "sidebar.html" . }}
{{ end }}