mirror of
https://codeberg.org/mclemens/amberterm.git
synced 2026-04-10 17:55:26 -04:00
17 lines
434 B
HTML
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 }}
|