summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--layouts/partials/post-tags.html8
2 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c83447a..7d1942f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Rework post dates format. Now they prefixes with "Published on" and "Updated on"
- Rework single post layouts. Reduce the number of layouts for poems, dramas, narratives and posts to one
+### Fixed
+
+- Fix tags html layout
+
## [v0.3.0](https://github.com/sergeyklay/gohugo-theme-ed/compare/v0.2.0...v0.3.0)
### Added
diff --git a/layouts/partials/post-tags.html b/layouts/partials/post-tags.html
index 1fa1c96..58cf8db 100644
--- a/layouts/partials/post-tags.html
+++ b/layouts/partials/post-tags.html
@@ -2,8 +2,10 @@
<ul class="post-tags">
{{ range $index, $name := sort $tags -}}
- <a href="{{ (printf "/tags/%s/" $name) | urlize }}">
- {{ $name | markdownify }}
- </a>
+ <li>
+ <a href="{{ (printf "/tags/%s/" $name) | urlize }}">
+ {{ $name | markdownify }}
+ </a>
+ </li>
{{ end }}
</ul>