diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | layouts/shortcodes/toc.html | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 16fcd55..5a1d15a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add missed `theme-color` meta tag - Enable maskable icon support - Rework term rendering for Atom feeds to not include duplicates +- Remove redundant `<aside>` tags around the post's ToC ## [v0.3.0](https://github.com/sergeyklay/gohugo-theme-ed/compare/v0.2.0...v0.3.0) diff --git a/layouts/shortcodes/toc.html b/layouts/shortcodes/toc.html index 0a640da..ba789ee 100644 --- a/layouts/shortcodes/toc.html +++ b/layouts/shortcodes/toc.html @@ -1,3 +1 @@ -<aside> - {{ .Page.TableOfContents }} -</aside> +{{ .Page.TableOfContents }} |
