minimal-mistakes-jekyll 4.0.10 → 4.1.0

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: e2d4be0ecf82cc63e316907c207f93e4e18ba70f
4
- data.tar.gz: 4581287d8dd52372c7039cd8457dc15f1ed864b3
3
+ metadata.gz: 4d1d957115e80d3f4b0407a0095d88469e51d89d
4
+ data.tar.gz: 69978aad2b2f67510eb241343c0392979c68258e
5
5
  SHA512:
6
- metadata.gz: 8fb2e28cd776e99a7af46fac064fe38944e8ba6cb58d5d5cae37e664f97d30389fa17e45bfc915482570e29cb1d70f0393d6afda1aea4a0f546e008e4f79eab2
7
- data.tar.gz: 24ad04651f46ae848baed832f337eb33a48f9c6cef65dee5467ce6139ca7aaa6ce69987cea5237d8e58c78272e0bec4b5c2ab00e21cfa8014bb05e61f04793bf
6
+ metadata.gz: cb446c32de8be55e81d96e4b5972f44796a74b748e6a7f989c324dcac774a1cb47020500616873a05a946e56f5eb53d50f342ac96fa85ad92cec46076d8a4c8a
7
+ data.tar.gz: 16c7d0585fbb0e7b82a3373045c315cb14f2240a4147e7092b4389e90facdac5c2d11f4a362aba22803d302b676c7d71d71fa26aa270709537f458b0dcaa6a2e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## [4.1.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.1.0)
2
+
3
+ ### Enhancements
4
+
5
+ - Add Jekyll include for adding [custom author profile links](https://github.com/mmistakes/minimal-mistakes/blob/master/_includes/author-profile-custom-links.html) to sidebar
6
+
7
+ ### Bug Fixes
8
+
9
+ - Fix link to Discourse.org homepage in `noscript` section [#699](https://github.com/mmistakes/minimal-mistakes/pull/699)
10
+ - Fix padding issue with pagination buttons [#694](https://github.com/mmistakes/minimal-mistakes/issues/694)
11
+
1
12
  ## [4.0.10](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.10)
2
13
 
3
14
  ### Bug Fixes
@@ -0,0 +1,7 @@
1
+ <!--
2
+ <li>
3
+ <a href="http://link-to-whatever-social-network.com/user/" itemprop="sameAs">
4
+ <i class="fa fa-fw" aria-hidden="true"></i> Custom Social Profile Link
5
+ </a>
6
+ </li>
7
+ -->
@@ -30,162 +30,204 @@
30
30
  <ul class="author__urls social-icons">
31
31
  {% if author.location %}
32
32
  <li itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
33
- <i class="fa fa-fw fa-map-marker" aria-hidden="true"></i>
34
- <span itemprop="name"> {{ author.location }} </span>
33
+ <i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
35
34
  </li>
36
35
  {% endif %}
37
-
36
+
38
37
  {% if author.uri %}
39
38
  <li>
40
39
  <a href="{{ author.uri }}" itemprop="url">
41
- <i class="fa fa-fw fa-chain" aria-hidden="true"></i>
42
- {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
40
+ <i class="fa fa-fw fa-chain" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
43
41
  </a>
44
42
  </li>
45
43
  {% endif %}
46
-
44
+
47
45
  {% if author.email %}
48
46
  <li>
49
47
  <a href="mailto:{{ author.email }}">
50
- <i class="fa fa-fw fa-envelope-square" aria-hidden="true"></i>
51
48
  <meta itemprop="email" content="{{ author.email }}" />
52
- {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
49
+ <i class="fa fa-fw fa-envelope-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
53
50
  </a>
54
51
  </li>
55
52
  {% endif %}
56
-
53
+
57
54
  {% if author.keybase %}
58
- <li><a href="https://keybase.io/{{ author.keybase }} " itemprop="sameAs">
59
- <i class="fa fa-fw fa-key" aria-hidden="true"></i>
60
- Keybase
61
- </a></li>
55
+ <li>
56
+ <a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs">
57
+ <i class="fa fa-fw fa-key" aria-hidden="true"></i> Keybase
58
+ </a>
59
+ </li>
62
60
  {% endif %}
61
+
63
62
  {% if author.twitter %}
64
- <li><a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs">
65
- <i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i>
66
- Twitter
67
- </a></li>
63
+ <li>
64
+ <a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs">
65
+ <i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter
66
+ </a>
67
+ </li>
68
68
  {% endif %}
69
+
69
70
  {% if author.facebook %}
70
- <li><a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs">
71
- <i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i>
72
- Facebook
73
- </a></li>
71
+ <li>
72
+ <a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs">
73
+ <i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook
74
+ </a>
75
+ </li>
74
76
  {% endif %}
77
+
75
78
  {% if author.google_plus %}
76
- <li><a href="https://plus.google.com/+{{ author.google_plus }}" itemprop="sameAs">
77
- <i class="fa fa-fw fa-google-plus-square" aria-hidden="true"></i>
78
- Google+
79
- </a></li>
79
+ <li>
80
+ <a href="https://plus.google.com/+{{ author.google_plus }}" itemprop="sameAs">
81
+ <i class="fa fa-fw fa-google-plus-square" aria-hidden="true"></i> Google+
82
+ </a>
83
+ </li>
80
84
  {% endif %}
85
+
81
86
  {% if author.linkedin %}
82
- <li><a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs">
83
- <i class="fa fa-fw fa-linkedin-square" aria-hidden="true"></i>
84
- LinkedIn
85
- </a></li>
87
+ <li>
88
+ <a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs">
89
+ <i class="fa fa-fw fa-linkedin-square" aria-hidden="true"></i> LinkedIn
90
+ </a>
91
+ </li>
86
92
  {% endif %}
93
+
87
94
  {% if author.xing %}
88
- <li><a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs">
89
- <i class="fa fa-fw fa-xing-square" aria-hidden="true"></i>
90
- XING
91
- </a></li>
95
+ <li>
96
+ <a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs">
97
+ <i class="fa fa-fw fa-xing-square" aria-hidden="true"></i> XING
98
+ </a>
99
+ </li>
92
100
  {% endif %}
101
+
93
102
  {% if author.instagram %}
94
- <li><a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs">
95
- <i class="fa fa-fw fa-instagram" aria-hidden="true"></i>
96
- Instagram
97
- </a></li>
103
+ <li>
104
+ <a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs">
105
+ <i class="fa fa-fw fa-instagram" aria-hidden="true"></i> Instagram
106
+ </a>
107
+ </li>
98
108
  {% endif %}
109
+
99
110
  {% if author.tumblr %}
100
- <li><a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs">
101
- <i class="fa fa-fw fa-tumblr-square" aria-hidden="true"></i>
102
- Tumblr
103
- </a></li>
111
+ <li>
112
+ <a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs">
113
+ <i class="fa fa-fw fa-tumblr-square" aria-hidden="true"></i> Tumblr
114
+ </a>
115
+ </li>
104
116
  {% endif %}
117
+
105
118
  {% if author.bitbucket %}
106
- <li><a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs">
107
- <i class="fa fa-fw fa-bitbucket" aria-hidden="true"></i>
108
- Bitbucket
109
- </a></li>
119
+ <li>
120
+ <a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs">
121
+ <i class="fa fa-fw fa-bitbucket" aria-hidden="true"></i> Bitbucket
122
+ </a>
123
+ </li>
110
124
  {% endif %}
125
+
111
126
  {% if author.github %}
112
- <li><a href="https://github.com/{{ author.github }}" itemprop="sameAs">
113
- <i class="fa fa-fw fa-github" aria-hidden="true"></i>
114
- Github
115
- </a></li>
127
+ <li>
128
+ <a href="https://github.com/{{ author.github }}" itemprop="sameAs">
129
+ <i class="fa fa-fw fa-github" aria-hidden="true"></i> GitHub
130
+ </a>
131
+ </li>
116
132
  {% endif %}
133
+
117
134
  {% if author.stackoverflow %}
118
- <li><a href="https://www.stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs">
119
- <i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i>
120
- Stackoverflow
121
- </a></li>
135
+ <li>
136
+ <a href="https://www.stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs">
137
+ <i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i> Stackoverflow
138
+ </a>
139
+ </li>
122
140
  {% endif %}
141
+
123
142
  {% if author.lastfm %}
124
- <li><a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs">
125
- <i class="fa fa-fw fa-lastfm-square" aria-hidden="true"></i>
126
- Last.fm
127
- </a></li>
143
+ <li>
144
+ <a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs">
145
+ <i class="fa fa-fw fa-lastfm-square" aria-hidden="true"></i> Last.fm
146
+ </a>
147
+ </li>
128
148
  {% endif %}
149
+
129
150
  {% if author.dribbble %}
130
- <li><a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs">
131
- <i class="fa fa-fw fa-dribbble" aria-hidden="true"></i>
132
- Dribbble
133
- </a></li>
151
+ <li>
152
+ <a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs">
153
+ <i class="fa fa-fw fa-dribbble" aria-hidden="true"></i> Dribbble
154
+ </a>
155
+ </li>
134
156
  {% endif %}
157
+
135
158
  {% if author.pinterest %}
136
- <li><a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs">
137
- <i class="fa fa-fw fa-pinterest" aria-hidden="true"></i>
138
- Pinterest
139
- </a></li>
159
+ <li>
160
+ <a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs">
161
+ <i class="fa fa-fw fa-pinterest" aria-hidden="true"></i> Pinterest
162
+ </a>
163
+ </li>
140
164
  {% endif %}
165
+
141
166
  {% if author.foursquare %}
142
- <li><a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs">
143
- <i class="fa fa-fw fa-foursquare" aria-hidden="true"></i>
144
- Foursquare
145
- </a></li>
167
+ <li>
168
+ <a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs">
169
+ <i class="fa fa-fw fa-foursquare" aria-hidden="true"></i> Foursquare
170
+ </a>
171
+ </li>
146
172
  {% endif %}
173
+
147
174
  {% if author.steam %}
148
- <li><a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs">
149
- <i class="fa fa-fw fa-steam-square" aria-hidden="true"></i>
150
- Steam
151
- </a></li>
175
+ <li>
176
+ <a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs">
177
+ <i class="fa fa-fw fa-steam-square" aria-hidden="true"></i> Steam
178
+ </a>
179
+ </li>
152
180
  {% endif %}
181
+
153
182
  {% if author.youtube %}
154
- <li><a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs">
155
- <i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i>
156
- YouTube
157
- </a></li>
183
+ <li>
184
+ <a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs">
185
+ <i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
186
+ </a>
187
+ </li>
158
188
  {% endif %}
189
+
159
190
  {% if author.soundcloud %}
160
- <li><a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs">
161
- <i class="fa fa-fw fa-soundcloud" aria-hidden="true"></i>
162
- Soundcloud
163
- </a></li>
191
+ <li>
192
+ <a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs">
193
+ <i class="fa fa-fw fa-soundcloud" aria-hidden="true"></i> Soundcloud
194
+ </a>
195
+ </li>
164
196
  {% endif %}
197
+
165
198
  {% if author.weibo %}
166
- <li><a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs">
167
- <i class="fa fa-fw fa-weibo" aria-hidden="true"></i>
168
- Weibo
169
- </a></li>
199
+ <li>
200
+ <a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs">
201
+ <i class="fa fa-fw fa-weibo" aria-hidden="true"></i> Weibo
202
+ </a>
203
+ </li>
170
204
  {% endif %}
205
+
171
206
  {% if author.flickr %}
172
- <li><a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs">
173
- <i class="fa fa-fw fa-flickr" aria-hidden="true"></i>
174
- Flickr
175
- </a></li>
207
+ <li>
208
+ <a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs">
209
+ <i class="fa fa-fw fa-flickr" aria-hidden="true"></i> Flickr
210
+ </a>
211
+ </li>
176
212
  {% endif %}
213
+
177
214
  {% if author.codepen %}
178
- <li><a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs">
179
- <i class="fa fa-fw fa-codepen" aria-hidden="true"></i>
180
- CodePen
181
- </a></li>
215
+ <li>
216
+ <a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs">
217
+ <i class="fa fa-fw fa-codepen" aria-hidden="true"></i> CodePen
218
+ </a>
219
+ </li>
182
220
  {% endif %}
221
+
183
222
  {% if author.vine %}
184
- <li><a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs">
185
- <i class="fa fa-fw fa-vine" aria-hidden="true"></i>
186
- Vine
187
- </a></li>
223
+ <li>
224
+ <a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs">
225
+ <i class="fa fa-fw fa-vine" aria-hidden="true"></i> Vine
226
+ </a>
227
+ </li>
188
228
  {% endif %}
229
+
230
+ {% include author-profile-custom-links.html %}
189
231
  </ul>
190
232
  </div>
191
233
  </div>
@@ -9,5 +9,5 @@
9
9
  (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
10
10
  })();
11
11
  </script>
12
- <noscript>Please enable JavaScript to view the comments powered by [Discourse](http://forum.beta-europe.org/c/beta/website).</a></noscript>
13
- {% endif %}
12
+ <noscript>Please enable JavaScript to view the comments powered by <a href="https://www.discourse.org/">Discourse.</a></noscript>
13
+ {% endif %}
@@ -75,6 +75,7 @@
75
75
  margin-left: -1px;
76
76
 
77
77
  a {
78
+ display: block;
78
79
  margin-bottom: 0.25em;
79
80
  padding: 0.5em 1em;
80
81
  font-family: $sans-serif;
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.10
4
+ version: 4.1.0
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-12-01 00:00:00.000000000 Z
11
+ date: 2016-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -136,6 +136,7 @@ files:
136
136
  - _includes/analytics-providers/google.html
137
137
  - _includes/analytics.html
138
138
  - _includes/archive-single.html
139
+ - _includes/author-profile-custom-links.html
139
140
  - _includes/author-profile.html
140
141
  - _includes/base_path
141
142
  - _includes/breadcrumbs.html