brainbaking/themes/brainbaking-minimal/layouts/_default/single.html

30 lines
623 B
HTML
Raw Normal View History

2020-05-27 20:35:46 +02:00
{{ partial "header" . }}
<main class="h-entry" data-pagefind-body>
2021-03-12 18:48:49 +01:00
{{ partial "bigimg" . }}
2020-05-27 21:20:01 +02:00
2021-03-12 18:48:49 +01:00
<article class="single {{ .Section }}">
{{ partial "single-header" . }}
2021-02-28 11:06:55 +01:00
<div class="e-content content">
{{ .Content | safeHTML }}
</div>
</article>
2021-03-12 18:48:49 +01:00
{{ if (not .Params.disableComments) }}
2021-03-12 18:48:49 +01:00
<div class="belowsingle">
<div class="txtblock">
{{ partial "single-comments" . }}
{{ partial "single-webmentions" . }}
2020-05-27 20:35:46 +02:00
2021-03-12 18:48:49 +01:00
{{ partial "single-related" . }}
2020-05-27 20:35:46 +02:00
2021-03-12 18:48:49 +01:00
<footer>
</footer>
</div>
</div>
{{ end }}
2020-05-27 20:35:46 +02:00
</main>
{{ if (not .Params.disableComments) }}
{{ partial "footer.html" . }}
{{ end }}