Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/minimal-bootstrap-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsherrie gossett <sherrie.g5@gmail.com>2022-05-01 06:49:27 +0300
committerGitHub <noreply@github.com>2022-05-01 06:49:27 +0300
commit7326b9ffde27000688d3a5e46f3e6261df19e3a6 (patch)
tree56d739b991e03536bea24275c8008a5ff9e5a799
parent309bc164db2b3589779474a3ac876fefdbbb8226 (diff)
Update categories.html (#21)HEADmaster
Brackets need to be removed - they're currently displaying with the categories on post pages.
-rw-r--r--layouts/partials/categories.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/categories.html b/layouts/partials/categories.html
index 85ebf1d..526366d 100644
--- a/layouts/partials/categories.html
+++ b/layouts/partials/categories.html
@@ -1,4 +1,4 @@
{{ range .Params.categories }}
{{ $href := print (absURL "categories/") (urlize .) }}
-<small><code>[<a href="{{ $href }}">{{ . }}</a>]</code></small>
+<small><code><a href="{{ $href }}">{{ . }}</a></code></small>
{{ end }}