gohugo-theme-bree/layouts/page/single.html

14 lines
405 B
HTML

{{ define "main" }}
{{- $postType := .Type | lower | singularize -}}
<article class="{{ partial "post-class.html" . }}" role="document"{{ with .Params.lang }} lang="{{ . }}"{{ end }}>
<header>
<h1 class="text-title">
{{ .Params.pageTitle | default .Title }}
</h1>
</header>
<div class="{{ $postType }}-body">
{{ .Content }}
</div>
</article>
{{ end }}