trwnh.com/hugo/layouts/notes/single.html
2024-01-16 07:29:54 -06:00

14 lines
400 B
HTML

{{ define "body" }}
<main id="{{.File.Path | urlize}}" class="comment section">
<div class="container">
<article class="h-entry">
<section class="e-content">
{{.Content}}
</section>
<footer class="meta">
<time class="dt-published" datetime='{{.Date.Format "2006-01-02T03:04:05Z"}}'>{{.Date.Format "2006-01-02 03:04 UTC"}}</time>
</footer>
</article>
</div>
</main>
{{ end }}