trwnh.com/hugo/layouts/notes/single.html

14 lines
400 B
HTML
Raw Normal View History

2024-01-16 13:29:54 +00:00
{{ 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 }}