summaryrefslogtreecommitdiffstats
path: root/themes/Brine/layouts/_default/list.html
diff options
context:
space:
mode:
authorbreadcat2024-04-07 16:56:56 +0100
committerbreadcat2024-04-07 16:56:56 +0100
commit50155a5a1f4ea085b61a13fe974607130b5eddc2 (patch)
tree6bced83109d739fe1fec806010ade927970a479f /themes/Brine/layouts/_default/list.html
parentb36391fe423a5f601aea0de02457575fde306e1e (diff)
downloadblog.minskio.co.uk-50155a5a1f4ea085b61a13fe974607130b5eddc2.tar.gz
blog.minskio.co.uk-50155a5a1f4ea085b61a13fe974607130b5eddc2.tar.bz2
blog.minskio.co.uk-50155a5a1f4ea085b61a13fe974607130b5eddc2.zip
Dim counts on tag page
Diffstat (limited to 'themes/Brine/layouts/_default/list.html')
-rw-r--r--themes/Brine/layouts/_default/list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/Brine/layouts/_default/list.html b/themes/Brine/layouts/_default/list.html
index 89cb5db..b6d49e5 100644
--- a/themes/Brine/layouts/_default/list.html
+++ b/themes/Brine/layouts/_default/list.html
@@ -2,11 +2,11 @@
<ul>
{{ if .IsHome }}
{{ $paginator := .Paginate (where .Site.RegularPages.ByDate.Reverse "Section" "posts") }}{{ range $paginator.Pages }}
- <li><h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2><span>{{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }} updated{{ end }}, {{ .ReadingTime }} min read</span></li>{{ end }}
+ <li><h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>{{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }} updated{{ end }}, {{ .ReadingTime }} min read</li>{{ end }}
</ul>{{ partial "pagination.html" $ }}
{{ else }}
{{ range .Pages.ByDate.Reverse }}
- <li><h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2><span>{{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }} updated{{ end }}, {{ .ReadingTime }} min read</span></li>
+ <li><h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>{{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }} updated{{ end }}, {{ .ReadingTime }} min read</li>
{{ end }}
</ul>
{{ end }}