linaro-jekyll-theme 0.3.1 → 0.3.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d04be8a1cba5a31052926ac9dae322eeb14e831
|
|
4
|
+
data.tar.gz: 6f0be6618af4feb297c08128a874d9c057dbf351
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4fbb4d07557028a4bab7608844695678a61aca645c37b09a612e670b236fd3df265b885e3286edf2c0b46ff3c2547e42a9fb41305047b717e4f61b6863958fe
|
|
7
|
+
data.tar.gz: c6d6e3f31fe0296ff895ccda1289a6c4efc64106e6532618d2674ed7505271f9ba44f8692797a70d40635a59954c39d370ca08cb166383c00f249b9b91d7d1b0
|
|
@@ -0,0 +1,13 @@
|
|
|
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.homepage.hero-line-1}}<br />
|
|
5
|
+
<b>{{site.homepage.hero-line-2}}</b></h1>
|
|
6
|
+
<p class="sub-tag center-block fade-in-two">
|
|
7
|
+
<span>{{site.homepage.hero-line-3}}</span><br />
|
|
8
|
+
<span>{{site.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.homepage.button-url-1}}" role="button">{{site.homepage.button-text-1}}</a>  
|
|
11
|
+
<a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="{{site.homepage.button-url-2}}" role="button">{{site.homepage.button-text-2}}</a></p>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
data/_layouts/blog.html
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default-no-sub-nav
|
|
3
|
+
---
|
|
4
|
+
<div class="row blog-row">
|
|
5
|
+
<div class="col-md-9">
|
|
6
|
+
{{content}}
|
|
7
|
+
</div>
|
|
8
|
+
<div class="col-md-3">
|
|
9
|
+
<div class="panel panel-primary blog-panel">
|
|
10
|
+
<div class="panel-heading">
|
|
11
|
+
<h3 class="panel-title">Follow Us</h3>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="panel-body">
|
|
14
|
+
<a href="http://facebook.com/{{site.facebook_username}}" class="blog-icons"><i class="icon-facebook"></i></a>
|
|
15
|
+
<a href="https://github.com/{{site.github_username}}" class="blog-icons"><i class="icon-github-circled"></i></a>
|
|
16
|
+
<a href="https://plus.google.com/{{site.google_plus_username}}/posts" class="blog-icons"><i class="icon-gplus"></i></a>
|
|
17
|
+
<a href="https://www.linkedin.com/company/{{site.linkedin_username}}" class="blog-icons"><i class="icon-linkedin"></i></a>
|
|
18
|
+
<a href="https://twitter.com/{{site.twitter_username}}" class="blog-icons"><i class="icon-twitter"></i></a>
|
|
19
|
+
<a href="https://www.youtube.com/{{site.youtube_username}}" class="blog-icons"><i class="icon-youtube"></i></a>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
</div>
|
|
23
|
+
<div class="panel panel-primary blog-panel">
|
|
24
|
+
<div class="panel-heading">
|
|
25
|
+
<h3 class="panel-title">Recent Blogs</h3>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="panel-body">
|
|
28
|
+
{% for blog in site.posts limit: 5 %}
|
|
29
|
+
<div class="featured_blog_post">
|
|
30
|
+
<div class="row">
|
|
31
|
+
<div class="col-md-3 col-sm-3 col-xs-3 no-padding">
|
|
32
|
+
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
33
|
+
{% if blog.featured_image %}
|
|
34
|
+
data-src="/assets/images/blog/thumbnails/{{blog.featured_image}}"
|
|
35
|
+
{% else %}
|
|
36
|
+
data-src="/assets/images/placeholder.png"
|
|
37
|
+
{% endif %}
|
|
38
|
+
alt="{{blog.title}}" class="img-responsive lazyload"/>
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col-md-9 col-sm-9 col-xs-9 ">
|
|
41
|
+
<a href="{{blog.url}}">{{blog.title | truncate: 40}}</a>
|
|
42
|
+
<br /><small><em>{{blog.date | date: "%A, %B %-d, %Y" }}</em></small>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
{% endfor %}
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
<div class="row">
|
|
53
|
+
{% include _theme-includes/_blog/pagination.html %}
|
|
54
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{% include _theme-includes/_head/head.html %}
|
|
2
|
+
<body>
|
|
3
|
+
{% include _theme-includes/_navigation/nav.html %}
|
|
4
|
+
{% include _theme-includes/_page-structure/breadcrumb.html %}
|
|
5
|
+
<div class="container-fluid">
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="container content-container">
|
|
8
|
+
{{ content }}
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
{% include _theme-includes/_footer/footer.html %}
|
|
12
|
+
</div>
|
|
13
|
+
{% include _theme-includes/_script-includes/javascript.html %}
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
|
Binary file
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
@@ -198,6 +198,7 @@ files:
|
|
|
198
198
|
- _includes/_theme-includes/_navigation/_sub-navigation/tabbed-nav.html
|
|
199
199
|
- _includes/_theme-includes/_navigation/nav.html
|
|
200
200
|
- _includes/_theme-includes/_page-structure/breadcrumb.html
|
|
201
|
+
- _includes/_theme-includes/_page-structure/home-hero.html
|
|
201
202
|
- _includes/_theme-includes/_page-structure/old-breadcrumb.html
|
|
202
203
|
- _includes/_theme-includes/_script-includes/css.html
|
|
203
204
|
- _includes/_theme-includes/_script-includes/gtm/gtm-noscript.html
|
|
@@ -211,6 +212,8 @@ files:
|
|
|
211
212
|
- _includes/image.html
|
|
212
213
|
- _includes/media.html
|
|
213
214
|
- _includes/owl-carousel-homepage.html
|
|
215
|
+
- _layouts/blog.html
|
|
216
|
+
- _layouts/default-no-sub-nav.html
|
|
214
217
|
- _layouts/default.html
|
|
215
218
|
- _layouts/home.html
|
|
216
219
|
- _layouts/post.html
|
|
@@ -334,6 +337,7 @@ files:
|
|
|
334
337
|
- assets/images/Linaro-Logo_standard.svg
|
|
335
338
|
- assets/images/Linaro-Sprinkle.svg
|
|
336
339
|
- assets/images/banner.jpg
|
|
340
|
+
- assets/images/placeholder.png
|
|
337
341
|
- assets/js/app.js
|
|
338
342
|
- assets/js/app/96boards.js
|
|
339
343
|
- assets/js/app/app.js
|