commit e6a46071eb35595aadd4d6a0f5f0c33fa23fc5fa parent 200f8933cc506afc87b63a9f09dc8a2cf6925526 Author: breadcat <peter@minskio.co.uk> Date: Thu, 25 Jun 2020 21:04:09 +0100 Replace .URL with .Permalink Diffstat:
M | themes/Brine/layouts/_default/terms.html | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/themes/Brine/layouts/_default/terms.html b/themes/Brine/layouts/_default/terms.html @@ -1,6 +1,6 @@ {{ define "main" }}<article> <h1>{{ .Title }}</h1> <ul class="posts-list"> - {{ range .Data.Terms.Alphabetical }} <li><a href="{{ .Page.URL }}">{{ .Page.Title }}</a> {{ .Count }}</li> + {{ range .Data.Terms.Alphabetical }} <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }}</li> {{ end }}</ul> </article>{{ end }}