linaro-jekyll-theme 0.10.25 → 0.10.26

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: 0a161aedd2f3c0a9aa39208e1b323a028881cfb5
4
- data.tar.gz: 2ba141a867cbf72391a5ac49e81f222555b213b4
3
+ metadata.gz: '038f87aea97f42b24d20bec7c853c6cedc9fe411'
4
+ data.tar.gz: b6a1c54d03c3975b7f82ca79ad2a180bb6905d23
5
5
  SHA512:
6
- metadata.gz: f3113c73c80a2637a9dd8a3a852e71ae726adf649c18136ac7771bda46cf32e4d0f4c8d6c035078535f4b1b2a3c135dd57d3eaf95fe88eead2cb9f20687d82cd
7
- data.tar.gz: 1ee9a1b80bb2bfaa2e68ad10d51340b96041dec816f5dbc4743aa1011442e626f9ec01a3ddd23ab1db5c06b08d6c920d636a604b0572a56c41b879ed3c381215
6
+ metadata.gz: df319986404545caee2085908c62dce33c7ebf59b4c8db24a060641c7aa9603afddce2a8dcfca4490eb6efde1649afa3d3f7df0f7c30cde0097cdf3c128671d2
7
+ data.tar.gz: 9dbb162efbd7a3dae1a8ea6bc84d1afe03b6db4df5118052364ffd38d2b695976e3c66de8d0d972ad5cc7ffc8e944735bcdc3b26cd48c364eb0a352ae47e0cde
@@ -11,13 +11,24 @@
11
11
  class="jumbotron text-center homepage-jumbotron"
12
12
  {% endif %} >
13
13
  <div class="container">
14
- <h1 id="home-page-title" class="fade-in-one text-center" id="homepage-heading">{{site.data.company.slogan}}</h1>
15
- <p id="home-page-text" class="sub-tag center-block fade-in-two">
16
- <span>A theme for Linaro Static Jekyll sites.</span><br />
17
- <span>Customize this in the _data folder.</span>
18
- </p>
19
- <p id="buttons"><a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="https://github.com/kylekirkby/LinaroJekyllTheme" role="button">Customize this in the _data folder</a>&#32;&#32;
20
- <a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="/setup/" role="button">Setup</a></p>
14
+ {% if site.data.company.home.hero-image %}
15
+ <div class="col-md-12">
16
+ <img src="{{site.data.company.home.hero-image}}" id="home-hero-image" class="img-responsive center-block animated fadeIn" alt="{{site.title}} Home Page Image">
17
+ </div>
18
+ {% endif %}
19
+ {% if site.data.company.home.title %}
20
+ <h2 id="home-page-title" class="fade-in-one text-center" id="homepage-heading">{{site.data.company.home.title}}</h2>
21
+ {% endif %}
22
+ {% if site.data.company.home.sub-title %}
23
+ <h4 id="home-page-text" class="text-center">{{site.data.company.home.sub-title}}</h4>
24
+ {% endif %}
25
+ {% if site.data.company.home.buttons %}
26
+ <p id="buttons">
27
+ {% for button in site.data.company.buttons %}
28
+ <a class="{{button.class}}" href="{{button.url}}" role="button">{{button.text}}</a>
29
+ {% endif %}
30
+ </p>
31
+ {% endif %}
21
32
  </div>
22
33
  {% include _theme-includes/_page-structure/shape-divider.html %}
23
34
  </div>
@@ -33,3 +33,8 @@
33
33
  #home-page-title{
34
34
  color: $home-page-main-title-color;
35
35
  }
36
+
37
+ #home-hero-image {
38
+ width: auto;
39
+ height: 200px;
40
+ }
@@ -340,3 +340,22 @@ button#mc-embedded-subscribe:hover {
340
340
  .no-padding {
341
341
  padding: 0;
342
342
  }
343
+
344
+ //Spec Button
345
+ .spec-button {
346
+ padding: 15px;
347
+ color: #fff;
348
+ width: 200px;
349
+ height: auto;
350
+ letter-spacing: 2px;
351
+ background-color: transparent;
352
+ border-radius:2px;
353
+ border: 1px solid #fff;
354
+ transition: all 200ms ease;
355
+ }
356
+ .spec-button:hover{
357
+ background-color: #fff;
358
+ color: #131313;
359
+ text-decoration: none;
360
+ transition: all 500ms ease;
361
+ }
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.10.25
4
+ version: 0.10.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby