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

16 lines
508 B
HTML
Raw Normal View History

2024-01-16 13:29:54 +00:00
{{ define "body" }}
2022-07-12 06:28:37 +00:00
<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>
2022-12-03 21:40:21 +00:00
<section class="e-content">
{{.Content}}
</section>
2022-07-12 06:28:37 +00:00
</article>
</div>
</main>
{{ end }}