Files
amberterm/layouts/_default/single.html
2023-04-16 09:39:53 +02:00

17 lines
434 B
HTML

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