2024-02-22 21:35:34 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<article class="h-entry content">
|
2025-02-23 21:29:49 -07:00
|
|
|
{{ 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>
|
2024-02-22 21:35:34 -07:00
|
|
|
{{ end }}
|
2024-03-03 10:00:32 -07:00
|
|
|
{{ partial "post-header.html" .}}
|
2024-02-22 21:35:34 -07:00
|
|
|
<div class="e-content">
|
|
|
|
<h1 class="p-name">{{ .Title }}</h1>
|
2024-04-20 15:44:03 -07:00
|
|
|
{{ if .Params.Subtitle }}<p class="subtitle">{{ .Params.Subtitle }}</p>{{ end }}
|
2024-11-03 06:51:18 -07:00
|
|
|
{{ if .Params.toc }}<aside>{{ .TableOfContents }}</aside>{{ end }}
|
2024-02-22 21:35:34 -07:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|