2025-02-23 21:29:49 -07:00

15 lines
642 B
HTML

{{ define "main" }}
<article class="h-entry content">
{{ if .Params.context }}
<p class="context">⬑ Reply to <a href="{{ .Params.context.url }}" class="u-in-reply-to">{{ .Params.context.title }}</a> by {{ .Params.context.author }}.</p>
{{ end }}
{{ partial "post-header.html" .}}
<div class="e-content">
<h1 class="p-name">{{ .Title }}</h1>
{{ if .Params.Subtitle }}<p class="subtitle">{{ .Params.Subtitle }}</p>{{ end }}
{{ if .Params.toc }}<aside>{{ .TableOfContents }}</aside>{{ end }}
{{ .Content }}
</div>
</article>
{{ end }}