cronyakatsuki.xyz/layouts/_default/single.html

12 lines
186 B
HTML
Raw Normal View History

2023-10-05 21:05:32 +02:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
2023-10-06 19:04:36 +02:00
{{ if isset .Params "date" }}
2023-10-05 21:05:32 +02:00
2023-10-06 19:04:36 +02:00
<div id="date">
<p>{{ .Date.Format .Site.Params.dateFormat }}</p>
</div>
{{ end }} {{ .Content }} {{ end }}