feat: add description section to section/term/taxonomies, fix header margin

This commit is contained in:
Jacky Zhao 2022-07-14 12:02:35 -07:00
parent 7ccff2cf3d
commit b2555ced61
4 changed files with 10 additions and 0 deletions

View File

@ -177,6 +177,7 @@ blockquote {
article {
& > h1 {
margin-top: 2em;
font-size: 2em;
}

View File

@ -9,6 +9,9 @@
{{partial "header.html" .}}
<article>
<h1>All {{.Title}}</h1>
{{with .Params.description}}
<p>{{.}}</p>
{{end}}
{{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }}
{{ template "_internal/pagination.html" .}}
</article>

View File

@ -9,6 +9,9 @@
{{partial "header.html" .}}
<article>
<h1>All {{.Title}}</h1>
{{with .Params.description}}
<p>{{.}}</p>
{{end}}
<div class="tags">
{{ range .Site.Taxonomies.tags.ByCount }}
<div class="meta">

View File

@ -9,6 +9,9 @@
{{partial "header.html" .}}
<article>
<h1>Tag: {{ .Title }}</h1>
{{with .Params.description}}
<p>{{.}}</p>
{{end}}
{{partial "page-list.html" .Paginator.Pages}}
{{ template "_internal/pagination.html" . }}
</article>