File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
7
## [ 4.20.0] ( https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0 )
2
8
3
9
### Bug Fixes
Original file line number Diff line number Diff line change @@ -12,9 +12,10 @@ <h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | d
12
12
{% assign posts = site.posts %}
13
13
{% endif %}
14
14
15
- < div class ="entries-{{ page.entries_layout | default: 'list' }} ">
15
+ {% assign entries_layout = page.entries_layout | default: 'list' %}
16
+ < div class ="entries-{{ entries_layout }} ">
16
17
{% for post in posts %}
17
- {% include archive-single.html type=page. entries_layout %}
18
+ {% include archive-single.html type=entries_layout %}
18
19
{% endfor %}
19
20
</ div >
20
21
Original file line number Diff line number Diff line change @@ -5,10 +5,16 @@ permalink: /docs/history/
5
5
excerpt : " Change log of enhancements and bug fixes made to the theme."
6
6
sidebar :
7
7
nav : docs
8
- last_modified_at : 2020-08-04T11:16:42 -04:00
8
+ last_modified_at : 2020-08-04T12:31:35 -04:00
9
9
toc : false
10
10
---
11
11
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
+
12
18
## [ 4.20.0] ( https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0 )
13
19
14
20
### Bug Fixes
You can’t perform that action at this time.
0 commit comments