minimal-mistakes-jekyll 4.0.3 → 4.0.4

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
  SHA1:
3
- metadata.gz: a51a32ed24fcceef4d302dd4baa0269722dd690b
4
- data.tar.gz: a706d8bbfedbd8e08c37219c4992268373bfccba
3
+ metadata.gz: d086aa37b0e34e365038bd20578f9aac7429ba72
4
+ data.tar.gz: af72249879e42af14584bf1b529185b885a9b3d3
5
5
  SHA512:
6
- metadata.gz: 5645f456f7e58243a4de58615c18ea427b459826fed90781cd64b9498b9608c0d1fb74289740296663a02451887a5cb34de90c452795a33a7a9523627ff96b69
7
- data.tar.gz: 2a39b349e670668ed8e94f2b84bb5c124e43012c13dd6ca05bb26b93250941db8c346f30255394135d7fc2841d0e253a937c5dfa3049197fe3a95fc4005ba966
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.
@@ -18,7 +18,7 @@
18
18
  {% if teaser contains "://" %}
19
19
  "{{ teaser }}"
20
20
  {% else %}
21
- "{{ teaser | prepend: "/" | absolute_url }}"
21
+ "{{ teaser | absolute_url }}"
22
22
  {% endif %}
23
23
  alt="">
24
24
  </div>
@@ -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 | prepend: "/" | absolute_url }}" class="author__avatar" alt="{{ author.name }}">
12
+ <img src="{{ author.avatar | absolute_url }}" class="author__avatar" alt="{{ author.name }}">
13
13
  {% endif %}
14
14
  </div>
15
15
  {% endif %}
@@ -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 | prepend: "/" | absolute_url }}{% endcapture %}
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 | prepend: "/" | absolute_url }}"
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 | prepend: "/" | absolute_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 | prepend: "/" | absolute_url }}"
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 | prepend: "/" | absolute_url }}"
39
+ "{{ img.image_path | absolute_url }}"
40
40
  {% endif %}
41
41
  alt="{% if img.alt %}{{ img.alt }}{% endif %}">
42
42
  {% endif %}
@@ -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 | prepend: "/" | absolute_url }}{% endcapture %}
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 | prepend: "/" | absolute_url }}{% endcapture %}
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 | prepend: "/" | absolute_url }}{% endif %}">
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 | prepend: "/" | absolute_url }}{% endif %}">
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 | prepend: "/" | absolute_url }}">
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 | prepend: "/" | absolute_url }}{% endif %}">
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 | prepend: "/" | absolute_url }}{% endif %}">
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 | prepend: "/" | absolute_url }}{% endif %}">
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 | prepend: "/" | absolute_url }}{% endif %}">
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 | prepend: "/" | absolute_url | jsonify }}
116
+ "logo": {{ site.og_image | absolute_url | jsonify }}
115
117
  }
116
118
  </script>
117
119
  {% endif %}
@@ -8,7 +8,7 @@
8
8
  {% if s.image contains "://" %}
9
9
  "{{ s.image }}"
10
10
  {% else %}
11
- "{{ s.image | prepend: "/" | absolute_url }}"
11
+ "{{ s.image | absolute_url }}"
12
12
  {% endif %}
13
13
  alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
14
14
  {% endif %}
@@ -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.3
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-10-07 00:00:00.000000000 Z
11
+ date: 2016-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll