blog/themes/conspiracy/layouts/single.html
2025-06-30 14:48:34 +02:00

23 lines
646 B
HTML

{{- define "main" }}
{{- if not .IsHome | and .Title }}
<header>
<h1>{{ .Title }}</h1>
{{- partial "breadcrumbs.html" . }}
{{- if .Params.Date }} <strong>{{ .Date.Format "2006-01-02" }}</strong>{{- end }}
</header>
{{- end }}
{{- if .Params.noindex }}
<main>
{{- else }}
<main data-pagefind-body>
{{- end }}
{{- if .Params.external_links }}
<div class="links">
{{- range .Params.external_links }}
<a href="{{ .url | absURL }}">{{ .name }}</a>
{{- end }}
</div>
{{- end }}
{{ .Content }}
</main>
{{- end }}