2024-10-15 00:13:17 +00:00
|
|
|
{{ define "main" -}}
|
|
|
|
|
<div class="post">
|
|
|
|
|
{{ partial "post/info.html" . }}
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
{{ if (.Site.Params.listmonk) }}
|
|
|
|
|
{{ partial "post/listmonk_email_newsletters.html" . }}
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ partial "post/navigation.html" . }}
|
|
|
|
|
{{ if or (.Site.Params.remark42) (.Site.Config.Services.Disqus.Shortname) }}
|
|
|
|
|
{{ partial "post/comments.html" . }}
|
|
|
|
|
{{ end }}
|
2025-12-24 20:43:35 -06:00
|
|
|
{{/* Mastodon comments - shows if mastodon_id is set in front matter */}}
|
|
|
|
|
{{ partial "mastodon-comments.html" . }}
|
2024-10-15 00:13:17 +00:00
|
|
|
{{- if .Site.Params.goatcounter }}
|
|
|
|
|
{{ partial "analytics.html" . -}}
|
|
|
|
|
{{- end}}
|
|
|
|
|
</div>
|
|
|
|
|
{{- end }}
|
|
|
|
|
{{ define "sidebar" }}
|
|
|
|
|
{{ if and (not .Params.hideToc) (not .Site.Params.hideToc) }}
|
|
|
|
|
{{ partial "table_of_contents.html" . }}
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ end }}
|