waltuh-hugo-theme/layouts/_default/single.html

12 lines
205 B
HTML
Raw Normal View History

2023-07-19 19:33:57 +00:00
{{ define "main" }}
<div class="scroll">
<header>
<h1> {{ .Title }} </h1>
<h3> Last Modified: {{ .Lastmod | time.Format ":date_long"}}</h3>
</header>
<article>
{{ .Content }}
</article>
</div>
{{ end }}