Files
Dave Gallant 8d898eb69a Tweak theme
2024-04-07 21:55:42 -04:00

21 lines
455 B
HTML

{{ define "main" }}
<article class="post">
<div class="post-header">
<h1>{{ .Title | markdownify }}</h1>
{{ partial "post-meta.html" (dict "page" . "pageIndex" 0) }}
</div>
<div class="post-content">
{{ .Content }}
</div>
{{ if .Params.SocialShare }}
{{ partial "social-share.html" . }}
{{ end }}
{{ if .Params.Comments }}
{{ partial "comments.html" . }}
{{ end }}
</article>
{{ end }}