feat: add description section to section/term/taxonomies, fix header margin
| | |
| | | |
| | | article { |
| | | & > h1 { |
| | | margin-top: 2em; |
| | | font-size: 2em; |
| | | } |
| | | |
| | |
| | | {{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> |
| | |
| | | {{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"> |
| | |
| | | {{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> |