22 lines
586 B
HTML
22 lines
586 B
HTML
{{ define "main" -}}
|
|
{{ if .Site.Params.light_dark }}
|
|
{{ partial "light_dark.html" . }}
|
|
{{ end }}
|
|
<div class="post">
|
|
{{ with .Site.GetPage "/about" }}
|
|
{{ if .Pages }}
|
|
{{ range .Pages }}
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{ end }}
|
|
{{ else }}
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if (.Site.Params.listmonk) }}
|
|
{{ partial "post/listmonk_email_newsletters.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|