morgan.mcmillian.dev/templates/page.html
Morgan McMillian 5e36b41778
All checks were successful
dreamfall/morgan.mcmillian.dev/pipeline/head This commit looks good
blog post about pantalaimon ut project move
2023-02-10 07:06:29 -08:00

21 lines
575 B
HTML

{{ define "main" }}
<main>
<h1>{{ .Title }}</h1>
{{- if not .Date.IsZero }}
<small>{{ .Date.Format "2006-01-02" }} on
{{ if .Params.origin }} {{ .Params.origin }}
{{ else }} <a href="/">{{ site.Title }}</a>
{{ end }}
</small>{{ end }}
{{ .Content | safeHTML }}
</main>
<footer>
<small>
This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA-4.0 license</a>.
<a href="https://git.dreamfall.space/thrrgilag/morgan.mcmillian.dev">Source code</a>
</small>
</footer>
{{ end }}