This commit is contained in:
ryfrd 2025-03-06 17:27:32 +00:00
parent 478c5823e3
commit 0e6cfb0d23
150 changed files with 40696 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{{ define "main" }}
<article>
<header id="post-header">
<h1>{{ .Title }}</h1>
<div>
{{- if isset .Params "date" -}}
{{ if eq .Lastmod .Date }}
<time>{{ .Date | time.Format (i18n "post.created") }}</time>
{{ else }}
<time>{{ .Lastmod | time.Format (i18n "post.updated") }}</time>
{{ end }}
{{- end -}}
</div>
</header>
{{- .Content -}}
</article>
{{ end }}