Reduce the depth of the DOM and simplify the CSS a bit

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.
This commit is contained in:
Eryn Wells 2024-10-13 23:13:16 -07:00
parent d17ec7f48f
commit 4c689f0f5c
8 changed files with 31 additions and 43 deletions

View file

@ -5,15 +5,13 @@
</header>
{{- with .Content }}
<div class="main--list__content">{{ . }}</div>
<div class="main__content">{{ . }}</div>
{{ end -}}
<div class="main--list__page-list">
{{ range .Pages.ByDate.Reverse -}}
{{ if or (not .Draft) hugo.IsDevelopment }}
{{ .Render "page_summary" }}
{{ end }}
{{- end }}
</div>
{{ range .Pages.ByDate.Reverse -}}
{{ if or (not .Draft) hugo.IsDevelopment }}
{{ .Render "page_summary" }}
{{ end }}
{{- end }}
</main>
{{ end }}