Add header to list pages. Fix header spacing

This commit is contained in:
Justin Nguyen 2020-12-23 01:16:17 -08:00
parent 5992889676
commit 43f70f8cd2
4 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,6 @@
&-header { &-header {
font-size: 1.8rem !important; font-size: 1.8rem !important;
margin-top: 3em !important;
text-decoration: underline; text-decoration: underline;
} }

View File

@ -51,13 +51,13 @@
{{ end }} {{ end }}
</div> </div>
{{ else }} {{ else }}
<div class="posts"> <section class="posts">
{{ $paginator := .Paginate (where $PageContext.RegularPages "Type" $contentTypeName) }} {{ $paginator := .Paginate (where $PageContext.RegularPages "Type" $contentTypeName) }}
{{ range $paginator.Pages.ByDate.Reverse }} {{ range $paginator.Pages.ByDate.Reverse }}
{{ partial "collection.html" . }} {{ partial "collection.html" . }}
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</div> </section>
{{ end }} {{ end }}

View File

@ -1,13 +1,14 @@
{{ define "main" }} {{ define "main" }}
<h1 class="section-header">{{ .Title }}<a href="{{ .Permalink }}" class="hanchor" arialabel="Anchor"></a></h1>
{{ with .Content }} {{ with .Content }}
<div class="index-content"> <div class="index-content">
{{ . }} {{ . }}
</div> </div>
{{ end }} {{ end }}
<div class="posts"> <section class="posts">
{{ range .Pages.ByDate.Reverse }} {{ range .Pages.ByDate.Reverse }}
{{ partial "collection.html" . }} {{ partial "collection.html" . }}
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</div> </section>
{{ end }} {{ end }}

File diff suppressed because one or more lines are too long