minimal-mistakes-jekyll 4.20.0 → 4.20.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d315ea81db661005b52625eb984504cece11c22bd12bb87e4aaebd67469f1a3
4
- data.tar.gz: 83f7c7837bf582fdebd8629afa251c7d701714f42ad4b26639c8c391df3ee8d4
3
+ metadata.gz: 6a87f268a92ee3a2c43df5f30c4bdc8fc1aae40926e09747c4b9cd4d7fdf0b5a
4
+ data.tar.gz: 25e4896b2c56abc1d6688f5ce259b2ffe0542ea7f45cb6e5851cd2b228378db7
5
5
  SHA512:
6
- metadata.gz: 8366691e4b39b767391af1334c3e9e294d4a818b4f9b65a7aa4dc67a9d42a34464837e358a83484d6d34fed68d0bd6bdf39d17cdad7ddc3ded1ac984b69d8f23
7
- data.tar.gz: 8097d8aa51a709a73cde74ac172b037bf23782a4e200ad08d138a86c9c7f900b5e7ccc0ca6a3baa8a181322fc72f0cd6b20e35a5c1992888efcc4ade6480ffcc
6
+ metadata.gz: bc05437e8e5253b05cf8a6d01eb1d0484ca6f595621f5f4f1c2f817dfb98f7d6d25c81acfc44866789e89cc01dd0a0905b95ffe81fcb9765676b51d19186e0c2
7
+ data.tar.gz: 07d685c3724d313b25d589e5bc4a0408c2cddf0b75f2a2ddccad1543121891f82204b8d65313ea8715e83c0b8f901498a336d3bb85bb234a7056b6c3a247372a
@@ -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
+
1
7
  ## [4.20.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0)
2
8
 
3
9
  ### Bug Fixes
data/README.md CHANGED
@@ -126,7 +126,7 @@ To install:
126
126
  bundle
127
127
  ```
128
128
 
129
- 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.20.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
129
+ 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.20.1"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
130
130
 
131
131
  **Looking for an example?** Use the [Minimal Mistakes remote theme starter](https://github.com/mmistakes/mm-github-pages-starter/generate) for the quickest method of getting a GitHub Pages hosted site up and running. Generate a new repository from the starter, replace sample content with your own, and configure as needed.
132
132
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  <!doctype html>
5
5
  <!--
6
- Minimal Mistakes Jekyll Theme 4.20.0 by Michael Rose
6
+ Minimal Mistakes Jekyll Theme 4.20.1 by Michael Rose
7
7
  Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
8
8
  Free for personal and commercial use under the MIT license
9
9
  https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
@@ -12,9 +12,10 @@ layout: archive
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
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Minimal Mistakes Jekyll Theme 4.20.0 by Michael Rose
2
+ * Minimal Mistakes Jekyll Theme 4.20.1 by Michael Rose
3
3
  * Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
4
4
  * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Minimal Mistakes Jekyll Theme 4.20.0 by Michael Rose
2
+ * Minimal Mistakes Jekyll Theme 4.20.1 by Michael Rose
3
3
  * Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
4
4
  * Licensed under MIT
5
5
  */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimal-mistakes-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.20.0
4
+ version: 4.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rose