bop-hugo-theme/layouts/_default/single.html

17 lines
250 B
HTML
Raw Normal View History

2020-10-14 01:00:50 +02:00
{{ define "main" }}
2020-11-15 16:26:56 +01:00
<main>
2020-11-17 18:30:20 +01:00
<div class="hero">
{{ partial "scope.html" . }}
</div>
<div class="content">
2020-10-14 01:00:50 +02:00
{{- with .Content -}}
<div>
{{ . }}
</div>
{{- end -}}
</div>
2020-11-15 16:26:56 +01:00
</main>
2020-10-14 01:00:50 +02:00
{{ end }}