mirror of
https://codeberg.org/mclemens/amberterm.git
synced 2024-11-19 11:15:54 -05:00
18 lines
470 B
HTML
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 }}
|