mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
12 lines
268 B
HTML
12 lines
268 B
HTML
|
{{ define "main" }}
|
||
|
<article>
|
||
|
<header id="post-header">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{- if isset .Params "date" -}}
|
||
|
<time>{{ .Date.Format "January 2, 2006" }}</time>
|
||
|
{{- end -}}
|
||
|
</header>
|
||
|
{{- .Content -}}
|
||
|
</article>
|
||
|
{{ end }}
|