jumbo-jekyll-theme 1.4.1.6 → 1.4.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +2 -2
- data/_includes/head.html +1 -1
- data/_includes/image.html +2 -2
- data/_includes/javascript.html +3 -3
- data/_includes/jumbotron.html +2 -2
- data/_includes/nav.html +1 -1
- data/_includes/sidebar.html +1 -1
- data/_layouts/post-featured-image.html +5 -5
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 494a3b9a95cdaba79f98ddbd6e931fd949f135f1
|
4
|
+
data.tar.gz: 628052c679a2c9bd7a7efe56da9da68f316b18af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98cbaeedd30f4187c88c8630c712e88854f5701933b65c160bf81ff4c56e1badfd8dcbd5bf7ae794f53954f86a75894e68be051c0627f923a280107d3583803c
|
7
|
+
data.tar.gz: 83ac565e7561a2fc907de54d934bc4c2dfc28f5a5a87f79586a84a3fb6a13592c9b3adde179403cad2a778efe9f7f8652c2430b2d371680bd8c7a1628a34cf5f
|
data/_includes/footer.html
CHANGED
@@ -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 %}{%
|
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}}" />
|
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="{%
|
27
|
+
<a href="{{site.data.linaro.url}}"><img src="{% asset_path '{{site.data.settings.linaro-footer-image}}' %}" class="linaro-logo" alt="Linaro Icon" /></a>
|
28
28
|
Copyright © {{ '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">•</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
|
-
{%
|
15
|
+
{% asset_path '{{site.data.company.favicon}}' %}
|
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="{%
|
2
|
+
![{{include.alt}}](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==){:class="img-responsive lazyload {% if include.class %}{{include.class}}{% endif %}" data-src="{% asset_path '{{include.name}}' %}"}
|
3
3
|
{% else %}
|
4
|
-
[![{{include.alt}}](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==){:class="img-responsive lazyload {% if include.class %}{{include.class}}{% endif %}" data-src="{%
|
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 %}
|
5
5
|
{% endif %}
|
6
6
|
|
data/_includes/javascript.html
CHANGED
@@ -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="{%
|
3
|
+
<script type="text/javascript" src="{% asset_path {{js-package}} @data %}"></script>
|
4
4
|
{% elsif page.js-package %}
|
5
5
|
{% capture js-package %}package-{{page.js-package}}{% endcapture %}
|
6
|
-
<script type="text/javascript" src="{%
|
6
|
+
<script type="text/javascript" src="{% asset_path {{js-package}} @data %}"></script>
|
7
7
|
{% else %}
|
8
|
-
<script type="text/javascript" src="{%
|
8
|
+
<script type="text/javascript" src="{% asset_path package @data %}"></script>
|
9
9
|
{% endif %}
|
10
10
|
|
11
11
|
|
data/_includes/jumbotron.html
CHANGED
@@ -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({%
|
3
|
+
style="background: #000 url({% asset_path '{{site.data.settings.home.jumbotron.background-image}}' %}) 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="{%
|
20
|
+
<img src="{% asset_path '{{site.data.settings.home.jumbotron.image}}' %}" 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="{%
|
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" />
|
27
27
|
{% else %}
|
28
28
|
{% include linaro-svg.html %}
|
29
29
|
{% endif %}
|
data/_includes/sidebar.html
CHANGED
@@ -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="{%
|
28
|
+
<img src="{% asset_path '{{tab.icon}}' %}" 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('{%
|
12
|
+
url('{% asset_path {{page.image.name}} %}') 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
|
-
{%
|
24
|
+
{% asset_path '{{author.image.name}}' %}
|
25
25
|
{% else %}
|
26
|
-
{%
|
26
|
+
{% asset_path 'avatar-placeholder.png' %}
|
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
|
-
{%
|
35
|
+
{% asset_path '{{co-author.image.name}}' %}
|
36
36
|
{% else %}
|
37
|
-
{%
|
37
|
+
{% asset_path 'avatar-placeholder.png' %}
|
38
38
|
{% endif %})" />
|
39
39
|
</a>
|
40
40
|
<br />
|
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.
|
4
|
+
version: 1.4.1.7
|
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:
|
117
|
+
version: 2.4.0
|
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:
|
124
|
+
version: 2.4.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: jekyll-data
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|