Remove the main intermediate container. It wasn't acutally serving a purpose. Remove some of the BEM-style classes that also weren't really doing anything.
13 lines
277 B
HTML
13 lines
277 B
HTML
{{ define "main" }}
|
|
<main class="main--list">
|
|
<header class="page-header">
|
|
{{ partial "page_header.html" (dict "page" .) }}
|
|
</header>
|
|
|
|
{{- .Content -}}
|
|
|
|
{{- range .Pages.ByTitle -}}
|
|
{{ .Render "page_summary" }}
|
|
{{- end -}}
|
|
</main>
|
|
{{ end }}
|