Morgan McMillian
5e36b41778
All checks were successful
dreamfall/morgan.mcmillian.dev/pipeline/head This commit looks good
20 lines
575 B
HTML
20 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 }}
|