jumbo-jekyll-theme 5.3.4 → 5.4.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
  SHA256:
3
- metadata.gz: 21c94c6e59f876894484947ecf363a4137d29be3edd8ee6fe7866f6811b0dc06
4
- data.tar.gz: 5fef062d048f6497d6c63fb27e063dec9774a7bf7dc6a611af6c4ad6d804687a
3
+ metadata.gz: a0ec81bb56c48b17bf7d71c16103d3598567de53a05855f5afa57375bdb1f2ed
4
+ data.tar.gz: 4ae6eb1d7f54c39d9c41d9182de630d41e98e4983eb98815d1dccc1ad98a1f6f
5
5
  SHA512:
6
- metadata.gz: 8cad3251df2ecd4295b5bdb30df750116ff27267fca51e2e3fda4b5b191308cc0e5a72f9c102ba8f4c990da981b26ab36022c788e35aeaf24e99d135657baf75
7
- data.tar.gz: 9d9ce2a24ccda11b999f3241831b9c1c681259843744757bbd4fe197e7e72020201d2bb73f4360418a12d4a605ab3c6c169d9f92a7b627f8ffdaf0b6db4b537b
6
+ metadata.gz: a07e84d271e517e75196dd15fbbf5a1ac856343fa3fbe9325ebbd4885c1b0eba867b318d730686e2c288660db75c5ca352c616bcf40701184f680bdcc4617d61
7
+ data.tar.gz: ff9a11e10f4e52e14636e54a57c9110fb8f71f0ffc2c013eb5d7f14345e9d2b2dbf59b253b8b93fe75ab337a15c92d26100a6c7a67c776ae121186b722bb427c
@@ -2,6 +2,6 @@
2
2
  {% if include.object.background_image %}background_image_row overlay{% endif %}"
3
3
  {% if include.object.background_image %}style="background-image: url({{include.object.background_image}})"{% endif %}>
4
4
  <div class="container">
5
- {% include flow_inner.html object=include.object.items %}
5
+ {% include flow_inner.html sections=include.object.sections %}
6
6
  </div>
7
7
  </div>
@@ -1,5 +1,5 @@
1
1
  <div class="row {% if include.object.style %}{{include.object.style}}{% endif %}
2
2
  {% if include.object.background_image %}background_image_row overlay{% endif %}"
3
3
  {% if include.object.background_image %}style="background-image: url({{include.object.background_image}}), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));"{% endif %}>
4
- {% include flow_inner.html object=include.object.items %}
4
+ {% include flow_inner.html sections=include.object.sections %}
5
5
  </div>
@@ -1,19 +1,19 @@
1
- {% for item in include.object %}
2
- {% if item.format == "title" %}
3
- {% include core/title.html object=item %}
4
- {% elsif item.format == "members" %}
5
- {% include core/members-section.html object=item %}
6
- {% elsif item.format == "block" %}
7
- {% include core/blocks.html object=item %}
8
- {% elsif item.format == "buttons" %}
9
- {% include core/buttons.html object=item.content centered=item.centered %}
10
- {% elsif item.format == "text" %}
11
- {% include core/text.html object=item %}
12
- {% elsif item.format == "custom" %}
13
- {% include {{item.include_name}} object=item %}
14
- {% elsif item.format == "slider" %}
15
- {% include core/slider_row.html object=item.content %}
16
- {% elsif item.format == "feature_block" %}
17
- {% include core/feature_block.html object=item.content %}
1
+ {% for section in include.sections %}
2
+ {% if section.format == "title" %}
3
+ {% include core/title.html object=section %}
4
+ {% elsif section.format == "members" %}
5
+ {% include core/members-section.html object=section %}
6
+ {% elsif section.format == "block" %}
7
+ {% include core/blocks.html object=section %}
8
+ {% elsif section.format == "buttons" %}
9
+ {% include core/buttons.html object=section.content centered=section.centered %}
10
+ {% elsif section.format == "text" %}
11
+ {% include core/text.html object=section %}
12
+ {% elsif section.format == "custom" %}
13
+ {% include {{section.include_name}} object=section %}
14
+ {% elsif section.format == "slider" %}
15
+ {% include core/slider_row.html object=section.content %}
16
+ {% elsif section.format == "feature_block" %}
17
+ {% include core/feature_block.html object=section.content %}
18
18
  {% endif %}
19
19
  {% endfor %}
@@ -1,13 +1,8 @@
1
1
  ---
2
2
  title: Authors
3
3
  permalink: /authors/
4
- layout: container-breadcrumb
4
+ layout: jumbotron-container
5
5
  css-package: blog
6
6
  js-package: blog
7
7
  ---
8
- <div class="row blog-row">
9
- <div class="col-xs-12">
10
- {{content}}
11
- {% include authors-posts.html %}
12
- </div>
13
- </div>
8
+ {% include authors-posts.html %}
@@ -1,4 +1,4 @@
1
1
  ---
2
- layout: jumbotron-container
2
+ layout: flow
3
3
  ---
4
4
  {{content}}
@@ -11,7 +11,21 @@ layout: base
11
11
  {% endif %}
12
12
  {% if page.flow %}
13
13
  <div id="flow_wrapper">
14
- {% include flow.html object=page.flow %}
14
+ {% for each in page.flow %}
15
+ {% if each.row == "main_content_row" %}
16
+ <div class="row" id="main_content">
17
+ <div class="container">
18
+ {{content}}
19
+ </div>
20
+ </div>
21
+ {% elsif each.row == "container_row" %}
22
+ {% include core/container_row.html object=each %}
23
+ {% elsif each.row == "full_width_row" %}
24
+ {% include core/full_width_row.html object=each %}
25
+ {% elsif each.row == "custom_include_row" %}
26
+ {% include {{each.source}} %}
27
+ {% endif %}
28
+ {% endfor %}
15
29
  </div>
16
30
  {% else %}
17
31
  <div class="row" id="content-container">
@@ -4,8 +4,8 @@ js-package: blog
4
4
  css-package: blog
5
5
  ---
6
6
  <div class="row overlay background-image {% if page.image.background-class %}{{page.image.background-class}}{% endif %}" id="jumbotron" style="background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('{% if page.image.path %}{{page.image.path}}{% else %}{{page.image}}{% endif %}');"> <!--Row -->
7
- <div id="jumbotron-content" class="flex-container"> <!--Jumbotron div -->
8
- <div class="container flex-center" id="jumbotron-text"> <!--Container -->
7
+ <div id="jumbotron-content" class="flex-container">
8
+ <div class="container flex-center" id="jumbotron-text">
9
9
  <h1 id="jumbotron-heading">{{page.title}}</h1>
10
10
  {% assign author = site.authors | where: "username", page.author | first %}
11
11
  {% assign author-url = author.url %}
@@ -30,13 +30,10 @@ css-package: blog
30
30
  {{ content }}
31
31
  {% include post-series.html %}
32
32
  </article>
33
- {% comment %}
34
- COMMENTS - Check to see if comments are toggled for this particular post.
35
- {% endcomment %}
36
33
  {% include disqus-comments.html %}
37
- </div>
38
- <div class="col-xs-12 col-sm-8 col-sm-offset-2 no-padding blog-sidebar ">
39
- {% include_cached post-sidebar.html %}
40
- </div>
34
+ </div>
35
+ <div class="col-xs-12 col-sm-8 col-sm-offset-2 no-padding blog-sidebar ">
36
+ {% include_cached post-sidebar.html %}
37
+ </div>
41
38
  </div>
42
39
  </div>
@@ -1,4 +1,5 @@
1
1
  // Core Jumbo Jekyll Theme Sass includes.
2
+ @import "core/normalize";
2
3
  @import "core/fonts";
3
4
  @import "core/nav";
4
5
  @import "core/theme";
@@ -28,6 +28,11 @@
28
28
  color: white;
29
29
  }
30
30
  }
31
+ .feature_block {
32
+ a.btn.btn-primary {
33
+ margin-top: 5px;
34
+ }
35
+ }
31
36
  &.block_row {
32
37
  .block {
33
38
  @media(max-width: $screen-sm-min) {
@@ -0,0 +1,358 @@
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
9
+ */
10
+
11
+ html {
12
+ line-height: 1.15;
13
+ /* 1 */
14
+ -webkit-text-size-adjust: 100%;
15
+ /* 2 */
16
+ }
17
+
18
+ /* Sections
19
+ ========================================================================== */
20
+
21
+ /**
22
+ * Remove the margin in all browsers.
23
+ */
24
+
25
+ body {
26
+ margin: 0;
27
+ }
28
+
29
+ /**
30
+ * Render the `main` element consistently in IE.
31
+ */
32
+
33
+ main {
34
+ display: block;
35
+ }
36
+
37
+ /**
38
+ * Correct the font size and margin on `h1` elements within `section` and
39
+ * `article` contexts in Chrome, Firefox, and Safari.
40
+ */
41
+
42
+ h1 {
43
+ font-size: 2em;
44
+ margin: 0.67em 0;
45
+ }
46
+
47
+ /* Grouping content
48
+ ========================================================================== */
49
+
50
+ /**
51
+ * 1. Add the correct box sizing in Firefox.
52
+ * 2. Show the overflow in Edge and IE.
53
+ */
54
+
55
+ hr {
56
+ box-sizing: content-box;
57
+ /* 1 */
58
+ height: 0;
59
+ /* 1 */
60
+ overflow: visible;
61
+ /* 2 */
62
+ }
63
+
64
+ /**
65
+ * 1. Correct the inheritance and scaling of font size in all browsers.
66
+ * 2. Correct the odd `em` font sizing in all browsers.
67
+ */
68
+
69
+ pre {
70
+ font-family: monospace, monospace;
71
+ /* 1 */
72
+ font-size: 1em;
73
+ /* 2 */
74
+ }
75
+
76
+ /* Text-level semantics
77
+ ========================================================================== */
78
+
79
+ /**
80
+ * Remove the gray background on active links in IE 10.
81
+ */
82
+
83
+ a {
84
+ background-color: transparent;
85
+ }
86
+
87
+ /**
88
+ * 1. Remove the bottom border in Chrome 57-
89
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
90
+ */
91
+
92
+ abbr[title] {
93
+ border-bottom: none;
94
+ /* 1 */
95
+ text-decoration: underline;
96
+ /* 2 */
97
+ text-decoration: underline dotted;
98
+ /* 2 */
99
+ }
100
+
101
+ /**
102
+ * Add the correct font weight in Chrome, Edge, and Safari.
103
+ */
104
+
105
+ b, strong {
106
+ font-weight: bolder;
107
+ }
108
+
109
+ /**
110
+ * 1. Correct the inheritance and scaling of font size in all browsers.
111
+ * 2. Correct the odd `em` font sizing in all browsers.
112
+ */
113
+
114
+ code, kbd, samp {
115
+ font-family: monospace, monospace;
116
+ /* 1 */
117
+ font-size: 1em;
118
+ /* 2 */
119
+ }
120
+
121
+ /**
122
+ * Add the correct font size in all browsers.
123
+ */
124
+
125
+ small {
126
+ font-size: 80%;
127
+ }
128
+
129
+ /**
130
+ * Prevent `sub` and `sup` elements from affecting the line height in
131
+ * all browsers.
132
+ */
133
+
134
+ sub, sup {
135
+ font-size: 75%;
136
+ line-height: 0;
137
+ position: relative;
138
+ vertical-align: baseline;
139
+ }
140
+
141
+ sub {
142
+ bottom: -0.25em;
143
+ }
144
+
145
+ sup {
146
+ top: -0.5em;
147
+ }
148
+
149
+ /* Embedded content
150
+ ========================================================================== */
151
+
152
+ /**
153
+ * Remove the border on images inside links in IE 10.
154
+ */
155
+
156
+ img {
157
+ border-style: none;
158
+ }
159
+
160
+ /* Forms
161
+ ========================================================================== */
162
+
163
+ /**
164
+ * 1. Change the font styles in all browsers.
165
+ * 2. Remove the margin in Firefox and Safari.
166
+ */
167
+
168
+ button, input, optgroup, select, textarea {
169
+ font-family: inherit;
170
+ /* 1 */
171
+ font-size: 100%;
172
+ /* 1 */
173
+ line-height: 1.15;
174
+ /* 1 */
175
+ margin: 0;
176
+ /* 2 */
177
+ }
178
+
179
+ /**
180
+ * Show the overflow in IE.
181
+ * 1. Show the overflow in Edge.
182
+ */
183
+
184
+ button, input {
185
+ /* 1 */
186
+ overflow: visible;
187
+ }
188
+
189
+ /**
190
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
191
+ * 1. Remove the inheritance of text transform in Firefox.
192
+ */
193
+
194
+ button, select {
195
+ /* 1 */
196
+ text-transform: none;
197
+ }
198
+
199
+ /**
200
+ * Correct the inability to style clickable types in iOS and Safari.
201
+ */
202
+
203
+ button, [type="button"], [type="reset"], [type="submit"] {
204
+ -webkit-appearance: button;
205
+ }
206
+
207
+ /**
208
+ * Remove the inner border and padding in Firefox.
209
+ */
210
+
211
+ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
212
+ border-style: none;
213
+ padding: 0;
214
+ }
215
+
216
+ /**
217
+ * Restore the focus styles unset by the previous rule.
218
+ */
219
+
220
+ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
221
+ outline: 1px dotted ButtonText;
222
+ }
223
+
224
+ /**
225
+ * Correct the padding in Firefox.
226
+ */
227
+
228
+ fieldset {
229
+ padding: 0.35em 0.75em 0.625em;
230
+ }
231
+
232
+ /**
233
+ * 1. Correct the text wrapping in Edge and IE.
234
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
235
+ * 3. Remove the padding so developers are not caught out when they zero out
236
+ * `fieldset` elements in all browsers.
237
+ */
238
+
239
+ legend {
240
+ box-sizing: border-box;
241
+ /* 1 */
242
+ color: inherit;
243
+ /* 2 */
244
+ display: table;
245
+ /* 1 */
246
+ max-width: 100%;
247
+ /* 1 */
248
+ padding: 0;
249
+ /* 3 */
250
+ white-space: normal;
251
+ /* 1 */
252
+ }
253
+
254
+ /**
255
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
256
+ */
257
+
258
+ progress {
259
+ vertical-align: baseline;
260
+ }
261
+
262
+ /**
263
+ * Remove the default vertical scrollbar in IE 10+.
264
+ */
265
+
266
+ textarea {
267
+ overflow: auto;
268
+ }
269
+
270
+ /**
271
+ * 1. Add the correct box sizing in IE 10.
272
+ * 2. Remove the padding in IE 10.
273
+ */
274
+
275
+ [type="checkbox"], [type="radio"] {
276
+ box-sizing: border-box;
277
+ /* 1 */
278
+ padding: 0;
279
+ /* 2 */
280
+ }
281
+
282
+ /**
283
+ * Correct the cursor style of increment and decrement buttons in Chrome.
284
+ */
285
+
286
+ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
287
+ height: auto;
288
+ }
289
+
290
+ /**
291
+ * 1. Correct the odd appearance in Chrome and Safari.
292
+ * 2. Correct the outline style in Safari.
293
+ */
294
+
295
+ [type="search"] {
296
+ -webkit-appearance: textfield;
297
+ /* 1 */
298
+ outline-offset: -2px;
299
+ /* 2 */
300
+ }
301
+
302
+ /**
303
+ * Remove the inner padding in Chrome and Safari on macOS.
304
+ */
305
+
306
+ [type="search"]::-webkit-search-decoration {
307
+ -webkit-appearance: none;
308
+ }
309
+
310
+ /**
311
+ * 1. Correct the inability to style clickable types in iOS and Safari.
312
+ * 2. Change font properties to `inherit` in Safari.
313
+ */
314
+
315
+ ::-webkit-file-upload-button {
316
+ -webkit-appearance: button;
317
+ /* 1 */
318
+ font: inherit;
319
+ /* 2 */
320
+ }
321
+
322
+ /* Interactive
323
+ ========================================================================== */
324
+
325
+ /*
326
+ * Add the correct display in Edge, IE 10+, and Firefox.
327
+ */
328
+
329
+ details {
330
+ display: block;
331
+ }
332
+
333
+ /*
334
+ * Add the correct display in all browsers.
335
+ */
336
+
337
+ summary {
338
+ display: list-item;
339
+ }
340
+
341
+ /* Misc
342
+ ========================================================================== */
343
+
344
+ /**
345
+ * Add the correct display in IE 10+.
346
+ */
347
+
348
+ template {
349
+ display: none;
350
+ }
351
+
352
+ /**
353
+ * Add the correct display in IE 10.
354
+ */
355
+
356
+ [hidden] {
357
+ display: none;
358
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.4
4
+ version: 5.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-24 00:00:00.000000000 Z
11
+ date: 2019-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -378,7 +378,7 @@ files:
378
378
  - _includes/core/button.html
379
379
  - _includes/core/buttons.html
380
380
  - _includes/core/call-to-action-banner.html
381
- - _includes/core/content_row.html
381
+ - _includes/core/container_row.html
382
382
  - _includes/core/feature_block.html
383
383
  - _includes/core/full_width_row.html
384
384
  - _includes/core/members-section.html
@@ -391,7 +391,6 @@ files:
391
391
  - _includes/custom_include_row.html
392
392
  - _includes/display-blog-posts.html
393
393
  - _includes/disqus-comments.html
394
- - _includes/flow.html
395
394
  - _includes/flow_inner.html
396
395
  - _includes/footer.html
397
396
  - _includes/github-edit.html
@@ -423,9 +422,6 @@ files:
423
422
  - _includes/youtube.html
424
423
  - _layouts/author.html
425
424
  - _layouts/base.html
426
- - _layouts/container-breadcrumb-tabs.html
427
- - _layouts/container-breadcrumb.html
428
- - _layouts/container.html
429
425
  - _layouts/default.html
430
426
  - _layouts/error.html
431
427
  - _layouts/flow.html
@@ -540,6 +536,7 @@ files:
540
536
  - _sass/core/jumbotron.scss
541
537
  - _sass/core/lightbox.scss
542
538
  - _sass/core/nav.scss
539
+ - _sass/core/normalize.scss
543
540
  - _sass/core/owl.carousel.min.scss
544
541
  - _sass/core/owl.theme.default.min.scss
545
542
  - _sass/core/social-media-icons.scss
@@ -1,15 +0,0 @@
1
- {% for section in include.object %}
2
- {% if section.type == "main-content" %}
3
- <div class="row" id="main_content">
4
- <div class="container">
5
- {{content}}
6
- </div>
7
- </div>
8
- {% elsif section.type == "content_row" %}
9
- {% include core/content_row.html object=section %}
10
- {% elsif section.type == "full_width_row" %}
11
- {% include core/full_width_row.html object=section %}
12
- {% elsif section.type == "custom_include_row" %}
13
- {% include {{section.source}} %}
14
- {% endif %}
15
- {% endfor %}
@@ -1,10 +0,0 @@
1
- ---
2
- layout: base
3
- ---
4
- {% include breadcrumb.html %}
5
- <div class="row" id="content-container">
6
- {% include sticky-tab-bar.html %}
7
- <div class="container">
8
- {{ content }}
9
- </div>
10
- </div>
@@ -1,19 +0,0 @@
1
- ---
2
- layout: base
3
- ---
4
- {% if page.jumbotron.carousel-images %}
5
- {% include carousel-header.html images=page.jumbotron.carousel-images %}
6
- {% include jumbotron.html %}
7
- {% elsif page.jumbotron %}
8
- {% include jumbotron.html %}
9
- {% else %}
10
- {% include breadcrumb.html %}
11
- {% endif %}
12
- <div class="row" id="content-container">
13
- {% if page.sticky-tab-bar %}
14
- {% include sticky-tab-bar.html %}
15
- {% endif %}
16
- <div class="container">
17
- {{ content }}
18
- </div>
19
- </div>
@@ -1,8 +0,0 @@
1
- ---
2
- layout: base
3
- ---
4
- {% if page.carousel %}
5
- {% include carousel-header.html images=site.page.images %}
6
- {% endif %}
7
- {% include jumbotron.html %}
8
- {{content}}