cronyakatsuki.xyz/layouts/_default/single.html

14 lines
238 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 20:10:52 +02:00
<div id="blog-meta">
<p id="date">{{ .Date.Format .Site.Params.dateFormat }}</p>
{{ partial "tags.html" . }}
<hr>
2023-10-06 19:04:36 +02:00
</div>
{{ end }} {{ .Content }} {{ end }}