yequari.com/themes/saturn/layouts/blog/single.html

19 lines
803 B
HTML
Raw Normal View History

2023-08-12 10:44:17 +00:00
{{ define "main" }}
2023-10-10 03:39:10 +00:00
<section class="content">
2023-09-12 23:48:39 +00:00
<article class="h-entry content">
2023-08-12 10:44:17 +00:00
<h1 class="p-name">{{ .Title }}</h1>
2023-12-15 03:49:27 +00:00
{{ if .Params.reply_to }}
<p class="context">⤷ Reply to <a href="{{ .Params.reply_to.url }}" class="u-in-reply-to">{{ .Params.reply_to.title }}</a> by {{ .Params.reply_to.author }}.</p>
{{ end }}
2023-08-12 10:44:17 +00:00
<a class="p-author h-card hidden" href="https://yequari.com">yequari</a>
<time class="dt-published" datetime={{.PublishDate }}>{{ .PublishDate.Format "Mon, Jan 02, 2006" }}</time>
<a class="u-url permalink" href={{ .RelPermalink }}>Permalink</a>
{{ partial "tags.html" .}}
<div class="e-content">
{{ .Content }}
</div>
</article>
2023-10-21 00:20:07 +00:00
{{ partial "webmentions.html" }}
2023-10-10 03:39:10 +00:00
</section>
2023-08-12 10:44:17 +00:00
{{ end }}