linaro-jekyll-theme 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/_theme-includes/_page-structure/home-hero-shape.html +14 -0
- data/_includes/_theme-includes/_page-structure/home-hero.html +1 -0
- data/_includes/_theme-includes/_page-structure/shape-divider.html +12 -0
- data/_layouts/home-shape.html +18 -0
- data/_sass/core/homepage.scss +4 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3eada09d10dc0cbf8c34fa1df3beaa4a1c234d60
|
|
4
|
+
data.tar.gz: 8bee442cc16e1addb100ea255c9dd2376c896876
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a851f102f4a77f5f0d7411bc883070bd8aa6749d436758d4e7717d316806ebee58dc528a574c5ad21b3274b2a19ff45d71390ac0a405954678c835a24e44b8b
|
|
7
|
+
data.tar.gz: 1d631864539b081862c767846796ac1a922b4a3518529ea7466e285c543907fe263558e7667d4d2bc0159e85f03fe04f996d232b95f55b0591b3192587ffb044
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<div class="jumbotron text-center homepage-jumbotron" id="homepage-jumbotron">
|
|
2
|
+
<div class="container">
|
|
3
|
+
|
|
4
|
+
<h1 class="fade-in-one" id="homepage-heading">{{site.data.company.homepage.hero-line-1}}<br />
|
|
5
|
+
<b>{{site.data.company.homepage.hero-line-2}}</b></h1>
|
|
6
|
+
<p class="sub-tag center-block fade-in-two">
|
|
7
|
+
<span>{{site.data.company.homepage.hero-line-3}}</span><br />
|
|
8
|
+
<span>{{site.data.company.homepage.hero-line-4}}</span>
|
|
9
|
+
</p>
|
|
10
|
+
<p id="buttons"><a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="{{site.data.company.homepage.button-url-1}}" role="button">{{site.data.company.homepage.button-text-1}}</a>  
|
|
11
|
+
<a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="{{site.data.company.homepage.button-url-2}}" role="button">{{site.data.company.homepage.button-text-2}}</a></p>
|
|
12
|
+
</div>
|
|
13
|
+
{% include _theme-includes/_page-structure/shape-divider.html %}
|
|
14
|
+
</div>
|
|
@@ -10,4 +10,5 @@
|
|
|
10
10
|
<p id="buttons"><a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="{{site.data.company.homepage.button-url-1}}" role="button">{{site.data.company.homepage.button-text-1}}</a>  
|
|
11
11
|
<a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="{{site.data.company.homepage.button-url-2}}" role="button">{{site.data.company.homepage.button-text-2}}</a></p>
|
|
12
12
|
</div>
|
|
13
|
+
{% include _theme-includes/_page-structure/shape-divider.html %}
|
|
13
14
|
</div>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<div class="homepage-shape">
|
|
2
|
+
<svg width="100%" height="130px">
|
|
3
|
+
<defs>
|
|
4
|
+
<pattern id="shapeDividerPattern-4" preserveaspectratio="none" style="background-repeat: none;" patternunits="userSpaceOnUse" x="0" y="0" width="100%" height="1300px" viewbox="0 0 100 1300">
|
|
5
|
+
<polygon fill="#ffffff" points="0,0 0,130 50,130 "></polygon>
|
|
6
|
+
<polygon fill="#ffffff" points="100,0 100,130 50,130 "></polygon>
|
|
7
|
+
</pattern>
|
|
8
|
+
</defs>
|
|
9
|
+
<!-- Background -->
|
|
10
|
+
<rect x="0" y="0" width="100%" height="130px" fill="url(#shapeDividerPattern-4)"></rect>
|
|
11
|
+
</svg>
|
|
12
|
+
</div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
specific_css: /assets/css/home-page.css
|
|
3
|
+
---
|
|
4
|
+
{% include _theme-includes/_head/head.html %}
|
|
5
|
+
<body>
|
|
6
|
+
{% include _theme-includes/_navigation/nav.html %}
|
|
7
|
+
{% include _theme-includes/_page-structure/home-hero-shape.html %}
|
|
8
|
+
<div class="container-fluid content-container">
|
|
9
|
+
<div class="row">
|
|
10
|
+
<div class="container">
|
|
11
|
+
{{ content }}
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
{% include _theme-includes/_footer/footer.html %}
|
|
15
|
+
</div>
|
|
16
|
+
{% include _theme-includes/_script-includes/javascript.html %}
|
|
17
|
+
</body>
|
|
18
|
+
</html>
|
data/_sass/core/homepage.scss
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linaro-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
@@ -202,7 +202,9 @@ files:
|
|
|
202
202
|
- _includes/_theme-includes/_navigation/nav.html
|
|
203
203
|
- _includes/_theme-includes/_navigation/tabbed-nav.html
|
|
204
204
|
- _includes/_theme-includes/_page-structure/breadcrumb.html
|
|
205
|
+
- _includes/_theme-includes/_page-structure/home-hero-shape.html
|
|
205
206
|
- _includes/_theme-includes/_page-structure/home-hero.html
|
|
207
|
+
- _includes/_theme-includes/_page-structure/shape-divider.html
|
|
206
208
|
- _includes/_theme-includes/_script-includes/css.html
|
|
207
209
|
- _includes/_theme-includes/_script-includes/gtm/gtm-noscript.html
|
|
208
210
|
- _includes/_theme-includes/_script-includes/gtm/gtm-script.html
|
|
@@ -223,6 +225,7 @@ files:
|
|
|
223
225
|
- _layouts/empty.html
|
|
224
226
|
- _layouts/fluid-no-sub-nav.html
|
|
225
227
|
- _layouts/fluid.html
|
|
228
|
+
- _layouts/home-shape.html
|
|
226
229
|
- _layouts/home.html
|
|
227
230
|
- _layouts/post.html
|
|
228
231
|
- _layouts/product-display-page.html
|