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

16 lines
508 B
HTML

{{ define "body" }}
<main id="{{.File.BaseFileName | urlize}}" class="comment section">
<div class="container">
<article class="h-entry">
<header>
<h1 class="p-name">{{.Title}}</h1>
<p>In reply to: <a href="{{.Params.inReplyTo}}" class="u-in-reply-to">{{.Params.inReplyTo}}</a></p>
<p>Original: <a href="{{.Params.original}}" class="u-syndication">{{.Params.original}}</a></p>
</header>
<section class="e-content">
{{.Content}}
</section>
</article>
</div>
</main>
{{ end }}