jumbo-jekyll-theme 1.4.1.11 → 1.4.2.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: ad9f2d6bf9ab511dd92cac108d1d1258c28a2dc7
4
- data.tar.gz: '097303a09f50c94399395c49bd3ee4efe5b54ff3'
3
+ metadata.gz: 7b9edfb0cecaabd5e7583ab1d160f4ad696db149
4
+ data.tar.gz: 03c9a2d747281ce6c2d2c0f48107bf653e3c3335
5
5
  SHA512:
6
- metadata.gz: e978283fe68c34f6fb799eee13a75a54fb32b8455dfb9931829da0cbed9e6b432292ddd56257de72dd10299b68123e8995111afb514a5c24023be6ee7bded71b
7
- data.tar.gz: 2060218413e97934eab4437e66f19a03ff0da1813d3f461065ff82abc9164735357bdf04b0ac2d62d5fb1cbdecb1f2e87e920b7c9a92d39e22a6183e7e278759
6
+ metadata.gz: 4dc3aa215d32d29c2872f299a09dcea7f3056da5eda256e16373c7fb08b219362e9bb898891e6810672744624ea2c255d492ea17aff30441f3b4933f37b0214a
7
+ data.tar.gz: 6d920c1f02fcc8da3f25d8df5aeb35390ff8cfbf67de266df346cb6c056353b7a3aae1f96cf7f44e032d882672b2afe49a6deb4335b8ed78773f54b1e3e228c7
data/_data/settings.yml CHANGED
@@ -20,6 +20,8 @@ home:
20
20
  shaped-divider: true
21
21
  # Jumbotron settings for the home page
22
22
  jumbotron:
23
+ # Toggle the jumbotron
24
+ enabled: true
23
25
  # Title for the home page jumbotron
24
26
  title:
25
27
  first-line: Welcome to the
data/_includes/nav.html CHANGED
@@ -1,15 +1,16 @@
1
1
  <nav class="
2
- {% if layout.nav-light %}
3
- {% if site.data.settings.home.transparent_nav %}
4
- nav-light
5
- {% endif %}
6
- {% elsif layout.nav-dark %}
7
- {% if site.data.settings.home.dark-nav %}
8
- nav-light
2
+ {% if site.data.settings.home.jumbotron.enabled %}
3
+ {% if layout.nav-light %}
4
+ {% if site.data.settings.home.transparent_nav %}
5
+ nav-light
6
+ {% endif %}
7
+ {% elsif layout.nav-dark %}
8
+ {% if site.data.settings.home.dark-nav %}
9
+ nav-light
10
+ {% endif %}
9
11
  {% endif %}
10
12
  {% endif %}
11
13
  navbar-inverse navbar-fixed-top" id="main-navigation">
12
-
13
14
  <!-- NAVBAR HEADER-->
14
15
  <div class="navbar-header">
15
16
  <button for="navbar-toggle-cbox" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false" aria-controls="navbar">
@@ -18,7 +19,6 @@ navbar-inverse navbar-fixed-top" id="main-navigation">
18
19
  <span class="icon-bar"></span>
19
20
  <span class="icon-bar"></span>
20
21
  </button>
21
-
22
22
  {% if site.data.nav.brand %}
23
23
  <a class="navbar-brand " href="{{site.data.nav.brand.url}}">
24
24
  {% if site.data.nav.brand.image.enabled %}
@@ -8,7 +8,7 @@ js-package: main
8
8
  {% if site.data.company.google.tag_manager %}
9
9
  {% include _theme-includes/_script-includes/gtm/gtm-noscript.html %}
10
10
  {% endif %}
11
- <div id="wrapper{% if layout.home == true %}-home{% endif %}">
11
+ <div id="wrapper{% if layout.home == true and site.data.settings.home.jumbotron.enabled %}-home{% endif %}">
12
12
  {% include nav.html %}
13
13
  {{content}}
14
14
 
data/_layouts/home.html CHANGED
@@ -5,7 +5,9 @@ css-package: home
5
5
  nav-light: true
6
6
  home: true
7
7
  ---
8
- {% include jumbotron.html %}
8
+ {% if site.data.settings.home.jumbotron.enabled %}
9
+ {% include jumbotron.html %}
10
+ {% endif %}
9
11
 
10
12
  <div class="container-fluid" id="content-container">
11
13
  <div class="row">
data/_sass/app/about.scss CHANGED
@@ -35,7 +35,7 @@ dt {
35
35
  }
36
36
 
37
37
  //Smallest mobile view
38
- @media(max-width:767px){
38
+ @media(max-width:$screen-sm-min){
39
39
  .linaro-profile-image {
40
40
  float:none !important;
41
41
  margin-bottom: 10px !important;
data/_sass/app/blog.scss CHANGED
@@ -40,7 +40,7 @@ h1#featured-image-blog-title {
40
40
  background-position: center center;
41
41
  }
42
42
 
43
- @media(max-width:767px){
43
+ @media(max-width:$screen-sm-min){
44
44
  .blog-author-image {
45
45
  height: 50px;
46
46
  width: 50px;
@@ -1,5 +1,5 @@
1
1
 
2
- @media only screen and (min-width: 768px) and (max-width: 992px) {
2
+ @media only screen and (min-width: $screen-xs-min) and (max-width: $screen-sm-min) {
3
3
  #home-block-sliders .owl-theme .owl-nav.disabled+.owl-dots {
4
4
  margin-top: 10px;
5
5
  position: relative;
@@ -7,7 +7,7 @@
7
7
  }
8
8
  }
9
9
 
10
- @media(min-width:992px){
10
+ @media(min-width:$screen-sm-min){
11
11
  .row.activity-holder.center-block {
12
12
  height: auto;
13
13
  }
@@ -30,7 +30,7 @@ article.post-content > .col-md-4 {
30
30
  }
31
31
 
32
32
 
33
- @media (max-width: 767px) {
33
+ @media (max-width: $screen-xs-min) {
34
34
 
35
35
 
36
36
  article.post-content > .col-md-4 {
@@ -63,7 +63,7 @@ article.post-content > .col-md-4 {
63
63
  }
64
64
 
65
65
  //Smallest mobile view
66
- @media(max-width:767px){
66
+ @media(max-width:$screen-xs-min){
67
67
 
68
68
  article.post-content > .col-md-4 {
69
69
  padding: 0px;
@@ -4,7 +4,7 @@ top: 200px;
4
4
  position: relative;
5
5
  }
6
6
 
7
- @media(max-width:767px){
7
+ @media(max-width:$screen-xs-min){
8
8
  div#birds-container {
9
9
  top: -80px;
10
10
  position: relative;
@@ -37,7 +37,7 @@ padding: 5px;
37
37
  }
38
38
 
39
39
  // Anything below the large container size
40
- @media(min-width:1459px){
40
+ @media(min-width:$screen-lg-min){
41
41
  #linaro-latest-tweets .tweet-user-name {
42
42
  padding-left: 35px;
43
43
  }
@@ -329,7 +329,7 @@ animation-delay: 22s;
329
329
  }
330
330
  }
331
331
 
332
- @media(max-width:767px){
332
+ @media(max-width:$screen-xs-min){
333
333
  @keyframes movement{
334
334
  0% {
335
335
  left: 0px;
data/_sass/app/work.scss CHANGED
@@ -144,7 +144,7 @@ div.group_member_images > .col-md-2.col-sm-3.col-xs-4 {
144
144
  min-height: 100px;
145
145
  }
146
146
  //Smallest mobile view
147
- @media(max-width:767px){
147
+ @media(max-width:$screen-xs-min){
148
148
  .col-xs-6.col-md-3.text-center.work_icon_col {
149
149
  margin-bottom: 35px;
150
150
  }
@@ -13,7 +13,7 @@
13
13
 
14
14
  /* Home Page Styles - SM */
15
15
 
16
- @media(max-width:991px){
16
+ @media(max-width:$screen-sm-min){
17
17
 
18
18
  #homepage-heading {
19
19
  font-size: 26px;
data/_sass/core/nav.scss CHANGED
@@ -241,12 +241,12 @@ ul#navbar-buttons > li > ul.dropdown-menu {
241
241
 
242
242
  // Navbar Brand
243
243
  .navbar-brand {
244
- @media (min-width: 1200px){
244
+ @media (min-width: $screen-md-min){
245
245
  padding-top: 0px;
246
246
  padding-bottom: 0px;
247
247
  padding-left: 15px;
248
248
  }
249
- @media (max-width: 1199px){
249
+ @media (max-width: $screen-md-min){
250
250
  padding-top: 0px;
251
251
  padding-bottom: 0px;
252
252
  padding-left: 5px;
@@ -260,7 +260,7 @@ ul#navbar-buttons > li > ul.dropdown-menu {
260
260
  padding-bottom: 5px;
261
261
  }
262
262
  #brand-image {
263
- @media (max-width: 1200px){
263
+ @media (max-width: $screen-md-min){
264
264
  height:70px;
265
265
  width:auto;
266
266
  }
@@ -338,7 +338,7 @@ nav > ul.navbar-right {
338
338
  transition: all 1s ease;
339
339
  }
340
340
 
341
- @media(max-width:1200px){
341
+ @media(max-width:$screen-md-min){
342
342
  #tabbed-nav-bar .tabbed-nav-btn{
343
343
  width:100%;
344
344
  }
@@ -473,7 +473,7 @@ nav > ul.navbar-right {
473
473
  }
474
474
 
475
475
 
476
- @media (min-width: 1200px) {
476
+ @media (min-width: $screen-md-min) {
477
477
  #tabbed-nav-bar .nav-tabs {
478
478
  margin-top: 18px;
479
479
  }
@@ -493,7 +493,7 @@ button#closeForm {
493
493
  color: $navbar-text-color;
494
494
  }
495
495
 
496
- @media (max-width: 1199px){
496
+ @media (max-width: $screen-md-min){
497
497
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a.dropdown-item {
498
498
  color: $navbar-text-color;
499
499
  }
@@ -711,7 +711,7 @@ li#linaro-app-menu-item > ul:before {
711
711
  margin-left: -16px;
712
712
  }
713
713
 
714
- @media only screen and (max-width: 1459px) and (min-width: 992px) {
714
+ @media only screen and (max-width: $screen-lg-min) and (min-width: $screen-sm-min) {
715
715
  div#search_bar {
716
716
  right: 0px;
717
717
  }
@@ -1,6 +1,6 @@
1
1
  /*** Table Styles **/
2
2
 
3
- @media (max-width: 767px) {
3
+ @media (max-width: $screen-xs-min) {
4
4
  .responsive-table {
5
5
  display: block;
6
6
  width: 100%;
@@ -242,7 +242,7 @@ p.sub-tag {
242
242
  border-radius: 0px;
243
243
  }
244
244
 
245
- @media(max-width:991px){
245
+ @media(max-width:$screen-sm-min){
246
246
  .partners-panel {
247
247
  height: auto;
248
248
  }
@@ -322,7 +322,7 @@ button#c-submit-button {
322
322
  }
323
323
 
324
324
 
325
- @media (max-width: 1199px){
325
+ @media (max-width: $screen-md-min){
326
326
  h1#home-page-title {
327
327
  font-size: 25px;
328
328
  }
@@ -346,21 +346,21 @@ button#c-submit-button {
346
346
  float: left;
347
347
  }
348
348
 
349
- @media (min-width: 768px) {
349
+ @media (min-width: $screen-xs-min) {
350
350
  .col-sm-5ths {
351
351
  width: 20%;
352
352
  float: left;
353
353
  }
354
354
  }
355
355
 
356
- @media (min-width: 992px) {
356
+ @media (min-width: $screen-sm-min) {
357
357
  .col-md-5ths {
358
358
  width: 20%;
359
359
  float: left;
360
360
  }
361
361
  }
362
362
 
363
- @media (min-width: 1200px) {
363
+ @media (min-width: $screen-md-min) {
364
364
  .col-lg-5ths {
365
365
  width: 20%;
366
366
  float: left;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1.11
4
+ version: 1.4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
@@ -192,6 +192,20 @@ dependencies:
192
192
  - - ">="
193
193
  - !ruby/object:Gem::Version
194
194
  version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: jekyll-theme-assets
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
195
209
  - !ruby/object:Gem::Dependency
196
210
  name: hash-joiner
197
211
  requirement: !ruby/object:Gem::Requirement