parent
f3c74113fd
commit
07957f6d64
4 changed files with 8 additions and 3 deletions
|
@ -12,6 +12,7 @@
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
- Fix "Follow menu falls under post links" on small screens. [#2479](https://github.com/mmistakes/minimal-mistakes/issues/2479)
|
- Fix "Follow menu falls under post links" on small screens. [#2479](https://github.com/mmistakes/minimal-mistakes/issues/2479)
|
||||||
|
- Hide index page from page-archive. [#2482](https://github.com/mmistakes/minimal-mistakes/pull/2482)
|
||||||
|
|
||||||
## [4.19.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.1)
|
## [4.19.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.1)
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ toc: false
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
- Fix "Follow menu falls under post links" on small screens. [#2479](https://github.com/mmistakes/minimal-mistakes/issues/2479)
|
- Fix "Follow menu falls under post links" on small screens. [#2479](https://github.com/mmistakes/minimal-mistakes/issues/2479)
|
||||||
|
- Hide index page from page-archive. [#2482](https://github.com/mmistakes/minimal-mistakes/pull/2482)
|
||||||
|
|
||||||
## [4.19.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.1)
|
## [4.19.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.1)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: splash
|
layout: splash
|
||||||
permalink: /
|
permalink: /
|
||||||
|
hidden: true
|
||||||
header:
|
header:
|
||||||
overlay_color: "#5e616c"
|
overlay_color: "#5e616c"
|
||||||
overlay_image: /assets/images/mm-home-page-feature.jpg
|
overlay_image: /assets/images/mm-home-page-feature.jpg
|
||||||
|
@ -34,4 +35,4 @@ feature_row:
|
||||||
btn_label: "Learn more"
|
btn_label: "Learn more"
|
||||||
---
|
---
|
||||||
|
|
||||||
{% include feature_row %}
|
{% include feature_row %}
|
||||||
|
|
|
@ -6,5 +6,7 @@ author_profile: false
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in site.pages %}
|
{% for post in site.pages %}
|
||||||
{% include archive-single.html %}
|
{% unless post.hidden %}
|
||||||
{% endfor %}
|
{% include archive-single.html %}
|
||||||
|
{% endunless %}
|
||||||
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue