diff --git a/CHANGELOG.md b/CHANGELOG.md index a99ca28b..82b0dee3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Bug Fixes + +- Fix an unclosed `

` tag in `page__hero.html`, near `page.header.actions`. + ### Enhancements - Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636) diff --git a/_includes/page__hero.html b/_includes/page__hero.html index dd1c26fb..2d56b9e3 100644 --- a/_includes/page__hero.html +++ b/_includes/page__hero.html @@ -44,6 +44,7 @@ {% for action in page.header.actions %} {{ action.label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }} {% endfor %} +

{% endif %} {% else %} diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index fd92990b..14fed509 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -5,7 +5,7 @@ permalink: "/docs/history/" excerpt: Change log of enhancements and bug fixes made to the theme. sidebar: nav: docs -last_modified_at: '2024-05-05T01:06:09+08:00' +last_modified_at: '2024-05-05T02:36:12+08:00' toc: false --- @@ -17,6 +17,10 @@ toc: false {% raw %} ## Unreleased +### Bug Fixes + +- Fix an unclosed `

` tag in `page__hero.html`, near `page.header.actions`. + ### Enhancements - Add support for [Jekyll Paginate V2](https://github.com/sverrirs/jekyll-paginate-v2) 🎉 [#2636](https://github.com/mmistakes/minimal-mistakes/pull/2636)