acoeur/themes/acoeur/layouts/_default/group.html

19 lines
551 B
HTML
Raw Normal View History

2022-11-28 16:26:39 +01:00
{{ define "main" }}
<section class="pa3 pa4-ns nested-copy-line-height
{{ if (le (.RelPermalink | strings.Count "/") 3) }}with-breadcrumb{{ end }}">
{{ with .Content }}
<section id="content"
class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy {{ $.Param "text_color" | default "mid-gray" }}">
{{- . -}}
</section>
{{ end }}
{{ range .Pages }}
{{ .Render "summary-with-image" }}
{{ range (.Paginate .RegularPagesRecursive).Pages }}
{{ .Title }}
{{ end }}
{{ end }}
</section>
{{ end }}