Skip to content

Commit 53ad4d3

Browse files
committedAug 4, 2020
Fix grid entries_layout in home.html
1 parent 3135099 commit 53ad4d3

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.20.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.1)
2+
3+
### Bug Fixes
4+
5+
- Fix grid `entries_layout` in home.html. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
6+
17
## [4.20.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0)
28

39
### Bug Fixes

‎_layouts/home.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ <h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | d
1212
{% assign posts = site.posts %}
1313
{% endif %}
1414

15-
<div class="entries-{{ page.entries_layout | default: 'list' }}">
15+
{% assign entries_layout = page.entries_layout | default: 'list' %}
16+
<div class="entries-{{ entries_layout }}">
1617
{% for post in posts %}
17-
{% include archive-single.html type=page.entries_layout %}
18+
{% include archive-single.html type=entries_layout %}
1819
{% endfor %}
1920
</div>
2021

‎docs/_docs/18-history.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ permalink: /docs/history/
55
excerpt: "Change log of enhancements and bug fixes made to the theme."
66
sidebar:
77
nav: docs
8-
last_modified_at: 2020-08-04T11:16:42-04:00
8+
last_modified_at: 2020-08-04T12:31:35-04:00
99
toc: false
1010
---
1111

12+
## [4.20.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.1)
13+
14+
### Bug Fixes
15+
16+
- Fix grid `entries_layout` in home.html. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
17+
1218
## [4.20.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0)
1319

1420
### Bug Fixes

0 commit comments

Comments
 (0)
Please sign in to comment.