diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-26 17:12:52 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-26 17:12:52 +0100 |
commit | 14e03301ea8dee9b2dc30ae1f3fb78ab6408d3ff (patch) | |
tree | 5502792f11927b223704f775f620335fb4594d0f /themes/problematic/layouts/partials/posts.html | |
parent | c6153ea12b59b43902eeff3c68a32163e5955d3b (diff) |
fixed title tags on main pages
Diffstat (limited to '')
-rw-r--r-- | themes/problematic/layouts/partials/posts.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/themes/problematic/layouts/partials/posts.html b/themes/problematic/layouts/partials/posts.html index b1c8c82..74f0fe6 100644 --- a/themes/problematic/layouts/partials/posts.html +++ b/themes/problematic/layouts/partials/posts.html @@ -1,11 +1,9 @@ -<h2>Blog Posts</h2> - +<hr class="new1"> {{ range $key, $value := .Site.Taxonomies.categories }} <h3>{{ $key | title }}</h3> <ul> - {{ range where (where site.RegularPages "Section" "blog") ".Params.categories" "intersect" (slice ($key |title)) }} <li><a href="{{ .Permalink }}">{{ .Title }}</a> ({{ .Date.Format "2 Jan 06" }})</li> |