19 lines
803 B
HTML
Raw Normal View History

2023-08-12 03:44:17 -07:00
{{ define "main" }}
2023-10-09 20:39:10 -07:00
<section class="content">
2023-09-12 16:48:39 -07:00
<article class="h-entry content">
2023-08-12 03:44:17 -07:00
<h1 class="p-name">{{ .Title }}</h1>
2023-12-14 20:49:27 -07: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 03:44:17 -07: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-20 17:20:07 -07:00
{{ partial "webmentions.html" }}
2023-10-09 20:39:10 -07:00
</section>
2023-08-12 03:44:17 -07:00
{{ end }}