minimal-mistakes-jekyll 4.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/_includes/archive-single.html +1 -1
- data/_includes/author-profile.html +1 -1
- data/_includes/feature_row +2 -2
- data/_includes/gallery +3 -3
- data/_includes/page__hero.html +2 -2
- data/_includes/seo.html +10 -8
- data/_includes/sidebar.html +1 -1
- data/_sass/_navigation.scss +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d086aa37b0e34e365038bd20578f9aac7429ba72
|
4
|
+
data.tar.gz: af72249879e42af14584bf1b529185b885a9b3d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f4cd468ae964e85289f867f53bdea0e1cb9ecf83c205987cf370ad9a7aa0de9dd1f0679a5c763838815831274ae23882071e6d368e6c17cfa182575ec09bc98
|
7
|
+
data.tar.gz: 07666c3a59d127b4dbabe43235ba61737eabab7adc7314bc799280e458b82631004e4e9f9441eeac94859b9c48d8fcfcac019c486a2512d822ff401c13ff2141
|
data/README.md
CHANGED
@@ -6,6 +6,8 @@ Minimal Mistakes is a flexible two-column Jekyll theme. Perfect for hosting your
|
|
6
6
|
|
7
7
|
See what's new in the [CHANGELOG](CHANGELOG.md).
|
8
8
|
|
9
|
+
Interested in testing out a [**pre-release "gemified" version**](https://github.com/mmistakes/minimal-mistakes/tree/feature/theme-gem) of the theme? Read this blog post to [learn how](https://mmistakes.github.io/minimal-mistakes/jekyll/gemified-theme-beta/).
|
10
|
+
|
9
11
|
[![Minimal Mistakes live preview][2]][1]
|
10
12
|
|
11
13
|
[1]: https://mmistakes.github.io/minimal-mistakes/
|
@@ -143,4 +145,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
143
145
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
144
146
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
145
147
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
146
|
-
SOFTWARE.
|
148
|
+
SOFTWARE.
|
@@ -9,7 +9,7 @@
|
|
9
9
|
{% if author.avatar contains "://" %}
|
10
10
|
<img src="{{ author.avatar }}" alt="{{ author.name }}">
|
11
11
|
{% else %}
|
12
|
-
<img src="{{ author.avatar |
|
12
|
+
<img src="{{ author.avatar | absolute_url }}" class="author__avatar" alt="{{ author.name }}">
|
13
13
|
{% endif %}
|
14
14
|
</div>
|
15
15
|
{% endif %}
|
data/_includes/feature_row
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
{% if f.url contains "://" %}
|
12
12
|
{% capture f_url %}{{ f.url }}{% endcapture %}
|
13
13
|
{% else %}
|
14
|
-
{% capture f_url %}{{ f.url |
|
14
|
+
{% capture f_url %}{{ f.url | absolute_url }}{% endcapture %}
|
15
15
|
{% endif %}
|
16
16
|
|
17
17
|
<div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
|
@@ -22,7 +22,7 @@
|
|
22
22
|
{% if f.image_path contains "://" %}
|
23
23
|
"{{ f.image_path }}"
|
24
24
|
{% else %}
|
25
|
-
"{{ f.image_path |
|
25
|
+
"{{ f.image_path | absolute_url }}"
|
26
26
|
{% endif %}
|
27
27
|
alt="{% if f.alt %}{{ f.alt }}{% endif %}">
|
28
28
|
</div>
|
data/_includes/gallery
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
{% if img.url contains "://" %}
|
20
20
|
"{{ img.url }}"
|
21
21
|
{% else %}
|
22
|
-
"{{ img.url |
|
22
|
+
"{{ img.url | absolute_url }}"
|
23
23
|
{% endif %}
|
24
24
|
{% if img.title %}title="{{ img.title }}"{% endif %}
|
25
25
|
>
|
@@ -27,7 +27,7 @@
|
|
27
27
|
{% if img.image_path contains "://" %}
|
28
28
|
"{{ img.image_path }}"
|
29
29
|
{% else %}
|
30
|
-
"{{ img.image_path |
|
30
|
+
"{{ img.image_path | absolute_url }}"
|
31
31
|
{% endif %}
|
32
32
|
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
33
33
|
</a>
|
@@ -36,7 +36,7 @@
|
|
36
36
|
{% if img.image_path contains "://" %}
|
37
37
|
"{{ img.image_path }}"
|
38
38
|
{% else %}
|
39
|
-
"{{ img.image_path |
|
39
|
+
"{{ img.image_path | absolute_url }}"
|
40
40
|
{% endif %}
|
41
41
|
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
42
42
|
{% endif %}
|
data/_includes/page__hero.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{% if page.header.image contains "://" %}
|
2
2
|
{% capture img_path %}{{ page.header.image }}{% endcapture %}
|
3
3
|
{% else %}
|
4
|
-
{% capture img_path %}{{ page.header.image |
|
4
|
+
{% capture img_path %}{{ page.header.image | absolute_url }}{% endcapture %}
|
5
5
|
{% endif %}
|
6
6
|
|
7
7
|
{% if page.header.cta_url contains "://" %}
|
@@ -13,7 +13,7 @@
|
|
13
13
|
{% if page.header.overlay_image contains "://" %}
|
14
14
|
{% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %}
|
15
15
|
{% elsif page.header.overlay_image %}
|
16
|
-
{% capture overlay_img_path %}{{ page.header.overlay_image |
|
16
|
+
{% capture overlay_img_path %}{{ page.header.overlay_image | absolute_url }}{% endcapture %}
|
17
17
|
{% endif %}
|
18
18
|
|
19
19
|
{% if page.header.overlay_filter contains "rgba" %}
|
data/_includes/seo.html
CHANGED
@@ -23,6 +23,8 @@
|
|
23
23
|
{% assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once %}
|
24
24
|
{% endif %}
|
25
25
|
|
26
|
+
<meta name="description" content="{{ seo_description }}">
|
27
|
+
|
26
28
|
{% assign seo_author = page.author | default: page.author[0] | default: site.author[0] %}
|
27
29
|
{% if seo_author %}
|
28
30
|
{% if seo_author.twitter %}
|
@@ -58,13 +60,13 @@
|
|
58
60
|
|
59
61
|
{% if page.header.image %}
|
60
62
|
<meta name="twitter:card" content="summary_large_image">
|
61
|
-
<meta name="twitter:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image |
|
63
|
+
<meta name="twitter:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image | absolute_url }}{% endif %}">
|
62
64
|
{% else %}
|
63
65
|
<meta name="twitter:card" content="summary">
|
64
66
|
{% if page.header.teaser %}
|
65
|
-
<meta name="twitter:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser |
|
67
|
+
<meta name="twitter:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser | absolute_url }}{% endif %}">
|
66
68
|
{% elsif site.og_image %}
|
67
|
-
<meta name="twitter:image" content="{{ site.og_image |
|
69
|
+
<meta name="twitter:image" content="{{ site.og_image | absolute_url }}">
|
68
70
|
{% endif %}
|
69
71
|
{% endif %}
|
70
72
|
|
@@ -84,13 +86,13 @@
|
|
84
86
|
{% endif %}
|
85
87
|
|
86
88
|
{% if page.header.image %}
|
87
|
-
<meta property="og:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image |
|
89
|
+
<meta property="og:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image | absolute_url }}{% endif %}">
|
88
90
|
{% elsif page.header.overlay_image %}
|
89
|
-
<meta property="og:image" content="{% if page.header.overlay_image contains "://" %}{{ page.header.overlay_image }}{% else %}{{ page.header.overlay_image |
|
91
|
+
<meta property="og:image" content="{% if page.header.overlay_image contains "://" %}{{ page.header.overlay_image }}{% else %}{{ page.header.overlay_image | absolute_url }}{% endif %}">
|
90
92
|
{% elsif page.header.teaser %}
|
91
|
-
<meta property="og:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser |
|
93
|
+
<meta property="og:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser | absolute_url }}{% endif %}">
|
92
94
|
{% elsif site.og_image %}
|
93
|
-
<meta property="og:image" content="{% if site.og_image contains "://" %}{{ site.og_image }}{% else %}{{ site.og_image |
|
95
|
+
<meta property="og:image" content="{% if site.og_image contains "://" %}{{ site.og_image }}{% else %}{{ site.og_image | absolute_url }}{% endif %}">
|
94
96
|
{% endif %}
|
95
97
|
|
96
98
|
{% if page.date %}
|
@@ -111,7 +113,7 @@
|
|
111
113
|
"@context": "http://schema.org",
|
112
114
|
"@type": "Organization",
|
113
115
|
"url": {{ seo_url | jsonify }},
|
114
|
-
"logo": {{ site.og_image |
|
116
|
+
"logo": {{ site.og_image | absolute_url | jsonify }}
|
115
117
|
}
|
116
118
|
</script>
|
117
119
|
{% endif %}
|
data/_includes/sidebar.html
CHANGED
data/_sass/_navigation.scss
CHANGED
@@ -236,9 +236,9 @@
|
|
236
236
|
width: 100%;
|
237
237
|
-webkit-transition: $global-transition;
|
238
238
|
transition: $global-transition;
|
239
|
-
-webkit-transform: scaleX(0);
|
240
|
-
-ms-transform: scaleX(0);
|
241
|
-
transform: scaleX(0); /* hide*/
|
239
|
+
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
|
240
|
+
-ms-transform: scaleX(0) translate3d(0, 0 , 0);
|
241
|
+
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
|
242
242
|
}
|
243
243
|
|
244
244
|
&:hover:before {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimal-mistakes-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Rose
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|