This commit is contained in:
ryfrd 2025-08-14 15:16:21 +01:00
parent c4dcb6e38b
commit 531029a18f
129 changed files with 7765 additions and 6938 deletions

View file

@ -0,0 +1,15 @@
{{ define "main" }}
<article>
<header id="post-header">
<h3>{{ .Title }}</h3>
<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 }}