22 lines
632 B
HTML
22 lines
632 B
HTML
{{ 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 }}
|
|
{{- 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 }}
|