jumbo-jekyll-theme 1.4.1.8 → 1.4.1.9

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: 1c32a4297f5b554373e148ed1dd6e46d58ed5efd
4
- data.tar.gz: 13ff2a485ead4d2f9a86f164382364f7305dc7f4
3
+ metadata.gz: fa71c7cfa6924bcb067cc8d3b268e06399a5b02f
4
+ data.tar.gz: 9769050765ae1cc62219a772b7e3cc1af26bd1dc
5
5
  SHA512:
6
- metadata.gz: e26b24f0de5eb8e3f9ba55fedb62c0bb63664046bb5014d9bb1cc9df52137e926eada08f3f23ca177e9405d6b39dfb64de8d2d1e519b5b2e8626ac2996f04803
7
- data.tar.gz: fcdb939604b6f98c0f05470a902263068137e376c47ab4d24f8187afd9a348e5eeca25466d6729b2554a002b8d8743768415344136ca66e367c6a13ab2e8bf4a
6
+ metadata.gz: 174c9962a0fcfd8b8cde7fbb42f7bd962d8c5a6c4af0d38a152e83fa7a23ee06f156258340d84ed41ef8b399255f2bf452c2676bbb4eab84795aa338e3b2d0a3
7
+ data.tar.gz: ba40542f0a332df737c61a34b35af80663ea37267dfde4711c9efaf140c32409110ea01c7e54dca92c73fee66bd8200c9db5cbfb4b6d4e721e46f607acc75ddd
@@ -15,7 +15,7 @@
15
15
  {% endfor %} {% if site.data.footer.image %}
16
16
  <div class="col-xs-6 col-md-2">
17
17
  <a href="/">
18
- <img src="{% if site.data.footer.image %}{% asset_path '{{site.data.footer.image}}' %}{% endif %}" class="footer-logo pull-right" alt="{{site.data.company.name}}" />
18
+ <img src="{% if site.data.footer.image %}{% asset '{{site.data.footer.image}}' @path %}{% endif %}" class="footer-logo pull-right" alt="{{site.data.company.name}}" />
19
19
  </a>
20
20
  </div>
21
21
  {% endif %}
@@ -24,7 +24,7 @@
24
24
  <div class="row footer-strip">
25
25
  <div class="container">
26
26
  <div class="col-md-6 company-footer-bottom">
27
- <a href="{{site.data.linaro.url}}"><img src="{% asset_path '{{site.data.settings.linaro-footer-image}}' %}" class="linaro-logo" alt="Linaro Icon" /></a>
27
+ <a href="{{site.data.linaro.url}}"><img src="{% asset '{{site.data.settings.linaro-footer-image}}' @path %}" class="linaro-logo" alt="Linaro Icon" /></a>
28
28
  Copyright &copy; {{ 'now' | date: "%Y" }} Linaro Limited <a href="{{site.data.linaro.url}}">{{site.data.linaro.name}}</a>
29
29
  {% for link in site.data.footer.company-links %}
30
30
  <span class="coloured-bp">&bull;</span>
data/_includes/head.html CHANGED
@@ -12,7 +12,7 @@
12
12
  {% include css.html %}
13
13
 
14
14
  <link rel="icon" href="{% if site.data.settings.favicon %}
15
- {% asset_path '{{site.data.company.favicon}}' %}
15
+ {% asset '{{site.data.company.favicon}}' @path %}
16
16
  {% endif %}" type="image/png" />
17
17
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
18
18
  <meta charset="UTF-8">
data/_includes/image.html CHANGED
@@ -1,6 +1,6 @@
1
1
  {% if include.lightbox_disabled %}
2
- ![{{include.alt}}](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==){:class="img-responsive lazyload {% if include.class %}{{include.class}}{% endif %}" data-src="{% asset_path '{{include.name}}' %}"}
2
+ ![{{include.alt}}](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==){:class="img-responsive lazyload {% if include.class %}{{include.class}}{% endif %}" data-src="{% asset '{{include.name}}' @path %}"}
3
3
  {% else %}
4
- [![{{include.alt}}](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==){:class="img-responsive lazyload {% if include.class %}{{include.class}}{% endif %}" data-src="{% asset_path '{{include.name}}' %}"}]({% if include.url %}{{include.url}}{% elsif include.lightbox_disabled %}{% else %}{% asset_path "{{include.name}}" %}{% endif %}){% if include.lightbox_disabled %}{% else %}{% if include.url %}{% else %}{: data-lightbox="{{include.name}}" data-title="{{include.alt}}"}{% endif %}{% endif %}
4
+ [![{{include.alt}}](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==){:class="img-responsive lazyload {% if include.class %}{{include.class}}{% endif %}" data-src="{% asset '{{include.name}}' @path %}"}]({% if include.url %}{{include.url}}{% elsif include.lightbox_disabled %}{% else %}{% asset "{{include.name}}" @path %}{% endif %}){% if include.lightbox_disabled %}{% else %}{% if include.url %}{% else %}{: data-lightbox="{{include.name}}" data-title="{{include.alt}}"}{% endif %}{% endif %}
5
5
  {% endif %}
6
6
 
@@ -1,11 +1,11 @@
1
1
  {% if layout.js-package %}
2
2
  {% capture js-package %}package-{{layout.js-package}}{% endcapture %}
3
- <script type="text/javascript" src="{% asset_path {{js-package}} @data %}"></script>
3
+ <script type="text/javascript" src="{% asset {{js-package}} @path %}"></script>
4
4
  {% elsif page.js-package %}
5
5
  {% capture js-package %}package-{{page.js-package}}{% endcapture %}
6
- <script type="text/javascript" src="{% asset_path {{js-package}} @data %}"></script>
6
+ <script type="text/javascript" src="{% asset {{js-package}} @path %}"></script>
7
7
  {% else %}
8
- <script type="text/javascript" src="{% asset_path package @data %}"></script>
8
+ <script type="text/javascript" src="{% asset package @path %}"></script>
9
9
  {% endif %}
10
10
 
11
11
 
@@ -1,6 +1,6 @@
1
1
  <div class="container-fluid" id="homepage-header"
2
2
  {% if site.data.settings.home.jumbotron.background-image %}
3
- style="background: #000 url({% asset_path '{{site.data.settings.home.jumbotron.background-image}}' %}) no-repeat center center fixed;
3
+ style="background: #000 url({% asset '{{site.data.settings.home.jumbotron.background-image}}' @path %}) no-repeat center center fixed;
4
4
  background-size: cover;
5
5
  -webkit-background-size: cover;
6
6
  -moz-background-size: cover;
@@ -17,7 +17,7 @@
17
17
 
18
18
  {% if site.data.settings.home.jumbotron.image %}
19
19
  <div class="col-md-12">
20
- <img src="{% asset_path '{{site.data.settings.home.jumbotron.image}}' %}" id="home-hero-image"
20
+ <img src="{% asset '{{site.data.settings.home.jumbotron.image}}' @path %}" id="home-hero-image"
21
21
  class="img-responsive center-block animated fadeIn" alt="{{site.title}} Home Page Image">
22
22
  </div>
23
23
  {% endif %}
data/_includes/nav.html CHANGED
@@ -23,7 +23,7 @@ navbar-inverse navbar-fixed-top" id="main-navigation">
23
23
  <a class="navbar-brand " href="{{site.data.nav.brand.url}}">
24
24
  {% if site.data.nav.brand.image.enabled %}
25
25
  {% if site.data.nav.brand.image.name %}
26
- <img src="{% asset_path '{{ site.data.nav.brand.image.name }}' %}" alt="{% if site.data.settings.name %}{{ site.data.settings.name }}{% else %}Linaro Site{% endif %} Logo." id="brand-image" />
26
+ <img src="{% asset '{{ site.data.nav.brand.image.name }}' @path %}" alt="{% if site.data.settings.name %}{{ site.data.settings.name }}{% else %}Linaro Site{% endif %} Logo." id="brand-image" />
27
27
  {% else %}
28
28
  {% include linaro-svg.html %}
29
29
  {% endif %}
@@ -25,7 +25,7 @@
25
25
  <a href="{{tab.url}}" role="link">
26
26
  {% if tab.icon %}
27
27
  <div class="ext-left">
28
- <img src="{% asset_path '{{tab.icon}}' %}" class="developer-services-icon" alt="{{tab.title}} Icon"/>
28
+ <img src="{% asset '{{tab.icon}}' @path %}" class="developer-services-icon" alt="{{tab.title}} Icon"/>
29
29
  </div>
30
30
  <div class="ext-right">
31
31
  {{ tab.title}} {% if tab.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}
@@ -9,7 +9,7 @@ css-package: blog
9
9
  <div class="img-blog" style="background: linear-gradient(
10
10
  rgba(20,20,20, .5),
11
11
  rgba(20,20,20, .5)),
12
- url('{% asset_path {{page.image.name}} %}') no-repeat center center fixed;
12
+ url('{% asset {{page.image.name}} @path %}') no-repeat center center fixed;
13
13
  background-size: cover;
14
14
  -webkit-background-size: cover;
15
15
  -moz-background-size: cover;
@@ -21,9 +21,9 @@ css-package: blog
21
21
  <a href="{{author.url}}">
22
22
  <img class="blog-author-image" style="
23
23
  background-image:url({% if author.image.name %}
24
- {% asset_path '{{author.image.name}}' %}
24
+ {% asset '{{author.image.name}}' @path %}
25
25
  {% else %}
26
- {% asset_path 'avatar-placeholder.png' %}
26
+ {% asset 'avatar-placeholder.png' @path %}
27
27
  {% endif %})" />
28
28
  </a>
29
29
 
@@ -32,9 +32,9 @@ css-package: blog
32
32
  <a href="{{co-author.url}}">
33
33
  <img class="blog-author-image" style="
34
34
  background-image:url({% if co-author.image.name %}
35
- {% asset_path '{{co-author.image.name}}' %}
35
+ {% asset '{{co-author.image.name}}' @path %}
36
36
  {% else %}
37
- {% asset_path 'avatar-placeholder.png' %}
37
+ {% asset 'avatar-placeholder.png' @path %}
38
38
  {% endif %})" />
39
39
  </a>
40
40
  <br />
@@ -6,14 +6,14 @@
6
6
 
7
7
  @function twbs-font-path($path) {
8
8
  // do something like following
9
- // from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>"
10
- // from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>"
11
- // or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>"
12
- @return "<%- asset_path("#{$path}".replace(/[#?].*$/, '')) + "#{$path}".replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>";
9
+ // from "path/to/font.ext#suffix" to "<%- asset(path/to/font.ext)) + #suffix %>"
10
+ // from "path/to/font.ext?#suffix" to "<%- asset(path/to/font.ext)) + ?#suffix %>"
11
+ // or from "path/to/font.ext" just "<%- asset(path/to/font.ext)) %>"
12
+ @return "<%- asset("#{$path}".replace(/[#?].*$/, '')) + "#{$path}".replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>";
13
13
  }
14
14
 
15
15
  @function twbs-image-path($file) {
16
- @return "<%- asset_path("#{$file}") %>";
16
+ @return "<%- asset("#{$file}") %>";
17
17
  }
18
18
 
19
19
  $bootstrap-sass-asset-helper: true;
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.8
4
+ version: 1.4.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
@@ -112,16 +112,16 @@ dependencies:
112
112
  name: jekyll-assets
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - "<="
115
+ - - '='
116
116
  - !ruby/object:Gem::Version
117
- version: 2.3.2
117
+ version: 3.0.6
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - "<="
122
+ - - '='
123
123
  - !ruby/object:Gem::Version
124
- version: 2.3.2
124
+ version: 3.0.6
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: jekyll-data
127
127
  requirement: !ruby/object:Gem::Requirement