2024-02-23 04:35:34 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<article class="h-entry content">
|
|
|
|
{{ 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 }}
|
|
|
|
<a class="p-author h-card hidden" href="https://yequari.com">yequari</a>
|
2024-03-03 17:00:32 +00:00
|
|
|
{{ partial "post-header.html" .}}
|
|
|
|
<a class="u-url permalink hidden" href={{ .RelPermalink }}>Permalink</a>
|
2024-02-23 04:35:34 +00:00
|
|
|
<div class="e-content">
|
|
|
|
<h1 class="p-name">{{ .Title }}</h1>
|
2024-04-20 22:44:03 +00:00
|
|
|
{{ if .Params.Subtitle }}<p class="subtitle">{{ .Params.Subtitle }}</p>{{ end }}
|
2024-02-23 04:35:34 +00:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|