linaro-jekyll-theme 1.1 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE.txt +1 -1
- data/README.md +19 -50
- data/_config.yml +192 -0
- data/_data/footer.yml +27 -107
- data/_data/nav.yml +72 -61
- data/_data/picture.yml +151 -0
- data/_data/universal_nav.yml +22 -0
- data/_includes/blog/authors_posts.html +37 -0
- data/_includes/blog/blog_filler_element.html +21 -0
- data/_includes/blog/display_latest_posts.html +131 -0
- data/_includes/blog/disqus_comments.html +24 -0
- data/_includes/blog/latest_posts.html +11 -0
- data/_includes/blog/pagination.html +37 -0
- data/_includes/blog/post_search.html +11 -0
- data/_includes/blog/post_series.html +28 -0
- data/_includes/blog/post_sidebar.html +74 -0
- data/_includes/blog/read_time.html +7 -0
- data/_includes/blog/tags.html +67 -0
- data/_includes/components/breadcrumb.html +37 -0
- data/_includes/components/carousel_header.html +15 -0
- data/_includes/components/cookie_manager.html +72 -0
- data/_includes/components/css.html +8 -0
- data/_includes/components/github_edit.html +34 -0
- data/_includes/components/head.html +66 -0
- data/_includes/components/http2.html +57 -0
- data/_includes/components/javascript.html +10 -0
- data/_includes/components/jumbotron.html +83 -0
- data/_includes/components/linaro_404.html +16 -0
- data/_includes/components/schema.html +1 -0
- data/_includes/components/sidebar.html +55 -0
- data/_includes/examples/custom_include.html +10 -0
- data/_includes/examples/custom_include_row.html +562 -0
- data/_includes/flow/blocks.html +73 -0
- data/_includes/flow/button.html +6 -0
- data/_includes/flow/buttons.html +5 -0
- data/_includes/flow/call-to-action-banner.html +8 -0
- data/_includes/flow/collapse.html +21 -0
- data/_includes/flow/container_row.html +11 -0
- data/_includes/flow/feature_block.html +41 -0
- data/_includes/flow/flow_inner.html +29 -0
- data/_includes/flow/full_width_row.html +5 -0
- data/_includes/flow/image.html +12 -0
- data/_includes/flow/members-section.html +24 -0
- data/_includes/flow/slider.html +25 -0
- data/_includes/flow/slider_row.html +3 -0
- data/_includes/flow/tabbed_content.html +21 -0
- data/_includes/flow/text.html +3 -0
- data/_includes/flow/title.html +3 -0
- data/_includes/footer/footer.html +29 -0
- data/_includes/image.html +15 -4
- data/_includes/js_bundles/app.html +4 -0
- data/_includes/js_bundles/vendor.html +13 -0
- data/_includes/media.html +4 -4
- data/_includes/nav/brand.html +3 -0
- data/_includes/nav/nav.html +133 -0
- data/_includes/nav/universal_nav.html +36 -0
- data/_includes/social_media_icons.html +24 -0
- data/_includes/sticky-tab-bar.html +61 -0
- data/_includes/youtube.html +74 -6
- data/_layouts/author.html +61 -0
- data/_layouts/base.html +14 -0
- data/_layouts/default.html +2 -18
- data/_layouts/flow.html +33 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +75 -133
- data/{_layouts/about.html → _sass/app/blog.scss} +0 -0
- data/_sass/app/custom.scss +1 -0
- data/_sass/app/overrides.scss +43 -0
- data/_sass/app/search.scss +51 -0
- data/_sass/blog.scss +3 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +47 -0
- data/_sass/bootstrap/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/_button-group.scss +172 -0
- data/_sass/bootstrap/_buttons.scss +75 -100
- data/_sass/bootstrap/_card.scss +301 -0
- data/_sass/bootstrap/_carousel.scss +161 -195
- data/_sass/bootstrap/_close.scss +15 -16
- data/_sass/bootstrap/_code.scss +15 -36
- data/_sass/bootstrap/_custom-forms.scss +433 -0
- data/_sass/bootstrap/_dropdown.scss +166 -0
- data/_sass/bootstrap/_forms.scss +213 -497
- data/_sass/bootstrap/_functions.scss +86 -0
- data/_sass/bootstrap/_grid.scss +29 -61
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +173 -0
- data/_sass/bootstrap/_jumbotron.scss +9 -47
- data/_sass/bootstrap/_list-group.scss +64 -79
- data/_sass/bootstrap/_media.scss +3 -61
- data/_sass/bootstrap/_mixins.scss +19 -18
- data/_sass/bootstrap/_modal.scss +180 -0
- data/_sass/bootstrap/_nav.scss +118 -0
- data/_sass/bootstrap/_navbar.scss +192 -555
- data/_sass/bootstrap/_pagination.scss +59 -70
- data/_sass/bootstrap/_popover.scss +183 -0
- data/_sass/bootstrap/_print.scss +89 -49
- data/_sass/bootstrap/_progress.scss +34 -0
- data/_sass/bootstrap/_reboot.scss +483 -0
- data/_sass/bootstrap/_root.scss +19 -0
- data/_sass/bootstrap/_tables.scss +119 -166
- data/_sass/bootstrap/_tooltip.scss +93 -79
- data/_sass/bootstrap/_transitions.scss +22 -0
- data/_sass/bootstrap/_type.scss +66 -239
- data/_sass/bootstrap/_utilities.scss +15 -55
- data/_sass/bootstrap/_variables.scss +782 -727
- data/_sass/bootstrap/bootstrap-grid.scss +32 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +42 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +14 -5
- data/_sass/bootstrap/mixins/_badge.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +25 -8
- data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +84 -40
- data/_sass/bootstrap/mixins/_caret.scss +66 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +3 -18
- data/_sass/bootstrap/mixins/_float.scss +11 -0
- data/_sass/bootstrap/mixins/_forms.scss +125 -66
- data/_sass/bootstrap/mixins/_gradients.scss +17 -30
- data/_sass/bootstrap/mixins/_grid-framework.scss +52 -66
- data/_sass/bootstrap/mixins/_grid.scss +37 -107
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +18 -15
- data/_sass/bootstrap/mixins/_list-group.scss +10 -21
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +4 -4
- data/_sass/bootstrap/mixins/_pagination.scss +10 -12
- data/_sass/bootstrap/mixins/_reset-text.scss +7 -8
- data/_sass/bootstrap/mixins/_resize.scss +1 -1
- data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/mixins/_size.scss +1 -5
- data/_sass/bootstrap/mixins/_table-row.scss +16 -14
- data/_sass/bootstrap/mixins/_text-emphasis.scss +7 -5
- data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
- data/_sass/bootstrap/mixins/{_text-overflow.scss → _text-truncate.scss} +2 -2
- data/_sass/bootstrap/mixins/_transition.scss +13 -0
- data/_sass/bootstrap/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +59 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +38 -0
- data/_sass/bootstrap/{_responsive-embed.scss → utilities/_embed.scss} +26 -9
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +9 -0
- data/_sass/bootstrap/utilities/_position.scss +37 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +12 -0
- data/_sass/bootstrap/utilities/_spacing.scss +51 -0
- data/_sass/bootstrap/utilities/_text.scss +58 -0
- data/_sass/bootstrap/utilities/_visibility.scss +11 -0
- data/_sass/core.scss +15 -0
- data/_sass/core/blog.scss +253 -327
- data/_sass/core/bootstrap-multiselect.scss +1 -0
- data/_sass/core/breadcrumb.scss +16 -88
- data/_sass/core/carousel-header.scss +91 -0
- data/_sass/core/carousel-styles.scss +1 -0
- data/_sass/core/carousel.scss +188 -28
- data/_sass/core/cookies.scss +200 -0
- data/_sass/core/error.scss +190 -0
- data/_sass/core/featherlight.scss +158 -0
- data/_sass/core/flow.scss +94 -0
- data/_sass/core/fontello.scss +91 -0
- data/_sass/core/footer.scss +60 -132
- data/_sass/core/jumbotron.scss +105 -0
- data/_sass/core/navbar.scss +241 -0
- data/_sass/core/normalize.scss +358 -0
- data/_sass/core/syntax.scss +65 -62
- data/_sass/core/theme.scss +49 -440
- data/assets/css/main.scss +12 -18
- data/assets/fonts/fontello/fontello.eot +0 -0
- data/assets/fonts/fontello/fontello.svg +94 -0
- data/assets/fonts/fontello/fontello.ttf +0 -0
- data/assets/fonts/fontello/fontello.woff +0 -0
- data/assets/fonts/fontello/fontello.woff2 +0 -0
- data/assets/fonts/{lato-regular → lato}/LICENSE.txt +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.eot +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.svg +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.ttf +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.woff +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.woff2 +0 -0
- data/assets/images/{Linaro-Logo_standard.svg → Linaro-Logo.svg} +0 -0
- data/assets/images/Linaro-Sprinkle.png +0 -0
- data/assets/images/Linaro-logo-white.png +0 -0
- data/assets/images/{avatar-placeholder.png → avatar-placeholder.jpg} +0 -0
- data/assets/images/breadcrumb-image.jpg +0 -0
- data/assets/images/clipboard.svg +3 -0
- data/{_sass/core/forms.scss → assets/js/app/custom.js} +0 -0
- data/assets/js/app/main.js +384 -96
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/popper.min.js.map +1 -0
- data/assets/js/vendor/_popper.js +5 -0
- data/assets/js/vendor/bootstrap.js +6 -0
- data/assets/js/vendor/clipboard.min.js +7 -0
- data/assets/js/vendor/featherlight.js +641 -0
- data/assets/js/vendor/jquery.cookie.js +120 -0
- data/assets/js/vendor/jquery.ihavecookies.js +271 -0
- data/assets/js/vendor/jquery.js +10364 -0
- data/assets/js/vendor/lazysizes.js +698 -0
- data/assets/js/vendor/ls.unveilhooks.js +145 -0
- data/assets/js/vendor/owl.carousel.js +3907 -0
- data/assets/js/vendor/simple-jekyll-search.min.js +278 -0
- data/assets/json/posts.json +28 -0
- data/robots.txt +2 -2
- metadata +206 -274
- data/_data/authors.yml +0 -7
- data/_data/company.yml +0 -29
- data/_data/linaro.yml +0 -4
- data/_data/members_db.yaml +0 -115
- data/_data/news.yaml +0 -230
- data/_data/sub-nav-stacked.yml +0 -67
- data/_data/sub-nav.yml +0 -61
- data/_includes/_theme-includes/_blog/pagination.html +0 -39
- data/_includes/_theme-includes/_footer/footer.html +0 -85
- data/_includes/_theme-includes/_head/head.html +0 -35
- data/_includes/_theme-includes/_navigation/nav.html +0 -128
- data/_includes/_theme-includes/_navigation/stacked-nav.html +0 -20
- data/_includes/_theme-includes/_navigation/tabbed-nav.html +0 -35
- data/_includes/_theme-includes/_page-structure/breadcrumb.html +0 -101
- data/_includes/_theme-includes/_page-structure/home-hero-shape.html +0 -34
- data/_includes/_theme-includes/_page-structure/home-hero.html +0 -23
- data/_includes/_theme-includes/_page-structure/shape-divider.html +0 -12
- data/_includes/_theme-includes/_script-includes/css.html +0 -40
- data/_includes/_theme-includes/_script-includes/google-analytics/script.html +0 -10
- data/_includes/_theme-includes/_script-includes/gtm/gtm-noscript.html +0 -5
- data/_includes/_theme-includes/_script-includes/gtm/gtm-script.html +0 -9
- data/_includes/_theme-includes/_script-includes/javascript.html +0 -50
- data/_includes/_theme-includes/_third-party/disqus.html +0 -14
- data/_includes/_theme-includes/_third-party/mailchimp-homepage.html +0 -33
- data/_includes/_theme-includes/members.html +0 -63
- data/_includes/base.html +0 -14
- data/_includes/owl-carousel-homepage.html +0 -103
- data/_layouts/accessory-display-page.html +0 -88
- data/_layouts/blog-breadcrumbless.html +0 -49
- data/_layouts/blog.html +0 -56
- data/_layouts/contact.html +0 -10
- data/_layouts/default-empty.html +0 -11
- data/_layouts/default-no-sub-nav.html +0 -15
- data/_layouts/default-plain.html +0 -16
- data/_layouts/default-stacked-breadcrumb.html +0 -23
- data/_layouts/default-stacked.html +0 -22
- data/_layouts/empty.html +0 -10
- data/_layouts/fluid-no-sub-nav.html +0 -11
- data/_layouts/fluid.html +0 -15
- data/_layouts/home-shape.html +0 -18
- data/_layouts/home.html +0 -18
- data/_layouts/product-display-page.html +0 -262
- data/_layouts/project-display-page.html +0 -28
- data/_layouts/redirect.html +0 -11
- data/_sass/_bootstrap-compass.scss +0 -9
- data/_sass/_bootstrap-mincer.scss +0 -19
- data/_sass/_bootstrap-sprockets.scss +0 -9
- data/_sass/_bootstrap.scss +0 -56
- data/_sass/bootstrap/_alerts.scss +0 -73
- data/_sass/bootstrap/_badges.scss +0 -68
- data/_sass/bootstrap/_breadcrumbs.scss +0 -28
- data/_sass/bootstrap/_button-groups.scss +0 -244
- data/_sass/bootstrap/_component-animations.scss +0 -37
- data/_sass/bootstrap/_dropdowns.scss +0 -216
- data/_sass/bootstrap/_glyphicons.scss +0 -307
- data/_sass/bootstrap/_input-groups.scss +0 -171
- data/_sass/bootstrap/_labels.scss +0 -66
- data/_sass/bootstrap/_modals.scss +0 -150
- data/_sass/bootstrap/_navs.scss +0 -242
- data/_sass/bootstrap/_normalize.scss +0 -424
- data/_sass/bootstrap/_pager.scss +0 -54
- data/_sass/bootstrap/_panels.scss +0 -271
- data/_sass/bootstrap/_popovers.scss +0 -131
- data/_sass/bootstrap/_progress-bars.scss +0 -87
- data/_sass/bootstrap/_responsive-utilities.scss +0 -179
- data/_sass/bootstrap/_scaffolding.scss +0 -161
- data/_sass/bootstrap/_theme.scss +0 -291
- data/_sass/bootstrap/_thumbnails.scss +0 -38
- data/_sass/bootstrap/_wells.scss +0 -29
- data/_sass/bootstrap/mixins/_alerts.scss +0 -14
- data/_sass/bootstrap/mixins/_center-block.scss +0 -7
- data/_sass/bootstrap/mixins/_hide-text.scss +0 -21
- data/_sass/bootstrap/mixins/_labels.scss +0 -12
- data/_sass/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/_sass/bootstrap/mixins/_opacity.scss +0 -8
- data/_sass/bootstrap/mixins/_panels.scss +0 -24
- data/_sass/bootstrap/mixins/_progress-bar.scss +0 -10
- data/_sass/bootstrap/mixins/_reset-filter.scss +0 -8
- data/_sass/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/_sass/bootstrap/mixins/_tab-focus.scss +0 -9
- data/_sass/bootstrap/mixins/_vendor-prefixes.scss +0 -222
- data/_sass/core/animations.scss +0 -125
- data/_sass/core/cookieconsent.scss +0 -42
- data/_sass/core/custom.scss +0 -3
- data/_sass/core/fa.scss +0 -2336
- data/_sass/core/flipclock.scss +0 -435
- data/_sass/core/font-awesome.min.scss +0 -4
- data/_sass/core/fonts.scss +0 -7
- data/_sass/core/homepage.scss +0 -45
- data/_sass/core/lightbox.scss +0 -213
- data/_sass/core/nav.scss +0 -723
- data/_sass/core/old-search.scss +0 -239
- data/_sass/core/openhours.scss +0 -51
- data/_sass/core/products.scss +0 -221
- data/_sass/core/projects.scss +0 -32
- data/_sass/core/social-media-icons.scss +0 -71
- data/_sass/core/tables.scss +0 -125
- data/_sass/core/youtube.scss +0 -65
- data/_sass/custom.scss +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +0 -2671
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/fonts/fontello.eot +0 -0
- data/assets/fonts/fontello.svg +0 -44
- data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/images/96boards-Logo.svg +0 -1
- data/assets/images/Linaro-Logo_light.png +0 -0
- data/assets/images/Linaro-Sprinkle.svg +0 -13
- data/assets/images/background-image.jpg +0 -0
- data/assets/images/banner.jpg +0 -0
- data/assets/images/css3.png +0 -0
- data/assets/images/html5.png +0 -0
- data/assets/images/jekyll.svg +0 -1
- data/assets/images/js.jpeg +0 -0
- data/assets/images/placeholder.png +0 -0
- data/assets/js/app/search.js +0 -41
- data/assets/js/app/sticky.js +0 -76
- data/assets/js/app/tables.js +0 -8
- data/assets/js/vendor/bootstrap.min.js +0 -7
- data/assets/js/vendor/cognito-forms.js +0 -150
- data/assets/js/vendor/cookieconsent.min.js +0 -8
- data/assets/js/vendor/flipclock.min.js +0 -35
- data/assets/js/vendor/jquery.min.js +0 -4
- data/assets/js/vendor/lazysizes.min.js +0 -2
- data/assets/js/vendor/lightbox.min.js +0 -14
- data/assets/js/vendor/loadCSS.js +0 -79
- data/assets/js/vendor/mc-validate.js +0 -14
- data/assets/js/vendor/owl.carousel.min.js +0 -27
@@ -0,0 +1,278 @@
|
|
1
|
+
/*!
|
2
|
+
* Simple-Jekyll-Search v1.7.2 (https://github.com/christian-fei/Simple-Jekyll-Search)
|
3
|
+
* Copyright 2015-2018, Christian Fei
|
4
|
+
* Licensed under the MIT License.
|
5
|
+
*/
|
6
|
+
!(function() {
|
7
|
+
"use strict";
|
8
|
+
var f = {
|
9
|
+
load: function w(t, e) {
|
10
|
+
var n = (function r() {
|
11
|
+
return window.XMLHttpRequest
|
12
|
+
? new window.XMLHttpRequest()
|
13
|
+
: new ActiveXObject("Microsoft.XMLHTTP");
|
14
|
+
})();
|
15
|
+
n.open("GET", t, !0),
|
16
|
+
(n.onreadystatechange = (function i(e, n) {
|
17
|
+
return function() {
|
18
|
+
if (4 === e.readyState && 200 === e.status)
|
19
|
+
try {
|
20
|
+
n(null, JSON.parse(e.responseText));
|
21
|
+
} catch (t) {
|
22
|
+
n(t, null);
|
23
|
+
}
|
24
|
+
};
|
25
|
+
})(n, e)),
|
26
|
+
n.send();
|
27
|
+
}
|
28
|
+
};
|
29
|
+
(function y(t) {
|
30
|
+
if (
|
31
|
+
!(function e(t) {
|
32
|
+
return (
|
33
|
+
!!t && "undefined" != typeof t.required && t.required instanceof Array
|
34
|
+
);
|
35
|
+
})(t)
|
36
|
+
)
|
37
|
+
throw new Error("-- OptionsValidator: required options missing");
|
38
|
+
if (!(this instanceof y)) return new y(t);
|
39
|
+
var r = t.required;
|
40
|
+
(this.getRequiredOptions = function() {
|
41
|
+
return r;
|
42
|
+
}),
|
43
|
+
(this.validate = function(e) {
|
44
|
+
var n = [];
|
45
|
+
return (
|
46
|
+
r.forEach(function(t) {
|
47
|
+
"undefined" == typeof e[t] && n.push(t);
|
48
|
+
}),
|
49
|
+
n
|
50
|
+
);
|
51
|
+
});
|
52
|
+
});
|
53
|
+
var n = function g(t, e) {
|
54
|
+
var n = e.length,
|
55
|
+
r = t.length;
|
56
|
+
if (n < r) return !1;
|
57
|
+
if (r === n) return t === e;
|
58
|
+
t: for (var i = 0, o = 0; i < r; i++) {
|
59
|
+
for (var u = t.charCodeAt(i); o < n; )
|
60
|
+
if (e.charCodeAt(o++) === u) continue t;
|
61
|
+
return !1;
|
62
|
+
}
|
63
|
+
return !0;
|
64
|
+
},
|
65
|
+
e = new (function t() {
|
66
|
+
this.matches = function(t, e) {
|
67
|
+
return n(e.toLowerCase(), t.toLowerCase());
|
68
|
+
};
|
69
|
+
})();
|
70
|
+
var r = new (function O() {
|
71
|
+
this.matches = function(e, t) {
|
72
|
+
return (
|
73
|
+
!!e &&
|
74
|
+
((e = e.trim().toLowerCase()),
|
75
|
+
(t = t.trim().toLowerCase()).split(" ").filter(function(t) {
|
76
|
+
return 0 <= e.indexOf(t);
|
77
|
+
}).length === t.split(" ").length)
|
78
|
+
);
|
79
|
+
};
|
80
|
+
})();
|
81
|
+
var l = {
|
82
|
+
put: function z(t) {
|
83
|
+
if (c(t)) return s(t);
|
84
|
+
if (
|
85
|
+
(function e(t) {
|
86
|
+
return (
|
87
|
+
Boolean(t) && "[object Array]" === Object.prototype.toString.call(t)
|
88
|
+
);
|
89
|
+
})(t)
|
90
|
+
)
|
91
|
+
return (function i(t) {
|
92
|
+
var e = [];
|
93
|
+
a();
|
94
|
+
for (var n = 0, r = t.length; n < r; n++) c(t[n]) && e.push(s(t[n]));
|
95
|
+
return e;
|
96
|
+
})(t);
|
97
|
+
return undefined;
|
98
|
+
},
|
99
|
+
clear: a,
|
100
|
+
search: function S(t) {
|
101
|
+
return t
|
102
|
+
? (function a(t, e, n, r) {
|
103
|
+
for (var i = [], o = 0; o < t.length && i.length < r.limit; o++) {
|
104
|
+
var u = d(t[o], e, n, r);
|
105
|
+
u && i.push(u);
|
106
|
+
}
|
107
|
+
return i;
|
108
|
+
})(o, t, u.searchStrategy, u).sort(u.sort)
|
109
|
+
: [];
|
110
|
+
},
|
111
|
+
setOptions: function q(t) {
|
112
|
+
((u = t || {}).fuzzy = t.fuzzy || !1),
|
113
|
+
(u.limit = t.limit || 10),
|
114
|
+
(u.searchStrategy = t.fuzzy ? e : r),
|
115
|
+
(u.sort = t.sort || i);
|
116
|
+
}
|
117
|
+
};
|
118
|
+
function i() {
|
119
|
+
return 0;
|
120
|
+
}
|
121
|
+
var o = [],
|
122
|
+
u = {};
|
123
|
+
function a() {
|
124
|
+
return (o.length = 0), o;
|
125
|
+
}
|
126
|
+
function c(t) {
|
127
|
+
return (
|
128
|
+
Boolean(t) && "[object Object]" === Object.prototype.toString.call(t)
|
129
|
+
);
|
130
|
+
}
|
131
|
+
function s(t) {
|
132
|
+
return o.push(t), o;
|
133
|
+
}
|
134
|
+
function d(t, e, n, r) {
|
135
|
+
for (var i in t) if (!p(t[i], r.exclude) && n.matches(t[i], e)) return t;
|
136
|
+
}
|
137
|
+
function p(t, e) {
|
138
|
+
for (var n = !1, r = 0, i = (e = e || []).length; r < i; r++) {
|
139
|
+
var o = e[r];
|
140
|
+
!n && new RegExp(t).test(o) && (n = !0);
|
141
|
+
}
|
142
|
+
return n;
|
143
|
+
}
|
144
|
+
(u.fuzzy = !1),
|
145
|
+
(u.limit = 10),
|
146
|
+
(u.searchStrategy = u.fuzzy ? e : r),
|
147
|
+
(u.sort = i);
|
148
|
+
var h = {
|
149
|
+
compile: function j(r) {
|
150
|
+
return m.template.replace(m.pattern, function(t, e) {
|
151
|
+
var n = m.middleware(e, r[e], m.template);
|
152
|
+
return void 0 !== n ? n : r[e] || t;
|
153
|
+
});
|
154
|
+
},
|
155
|
+
setOptions: function C(t) {
|
156
|
+
(m.pattern = t.pattern || m.pattern),
|
157
|
+
(m.template = t.template || m.template),
|
158
|
+
"function" == typeof t.middleware && (m.middleware = t.middleware);
|
159
|
+
}
|
160
|
+
},
|
161
|
+
m = {};
|
162
|
+
(m.pattern = /\{(.*?)\}/g), (m.template = ""), (m.middleware = function() {});
|
163
|
+
var v = {
|
164
|
+
merge: function L(t, e) {
|
165
|
+
var n = {};
|
166
|
+
for (var r in t)
|
167
|
+
(n[r] = t[r]), "undefined" != typeof e[r] && (n[r] = e[r]);
|
168
|
+
return n;
|
169
|
+
},
|
170
|
+
isJSON: function M(t) {
|
171
|
+
try {
|
172
|
+
return !!(t instanceof Object && JSON.parse(JSON.stringify(t)));
|
173
|
+
} catch (e) {
|
174
|
+
return !1;
|
175
|
+
}
|
176
|
+
}
|
177
|
+
};
|
178
|
+
!(function(t) {
|
179
|
+
var o = {
|
180
|
+
searchInput: null,
|
181
|
+
resultsContainer: null,
|
182
|
+
json: [],
|
183
|
+
success: Function.prototype,
|
184
|
+
searchResultTemplate:
|
185
|
+
'<li><a href="{url}" title="{desc}">{title}</a></li>',
|
186
|
+
templateMiddleware: Function.prototype,
|
187
|
+
sortMiddleware: function() {
|
188
|
+
return 0;
|
189
|
+
},
|
190
|
+
noResultsText: "No results found",
|
191
|
+
limit: 10,
|
192
|
+
fuzzy: !1,
|
193
|
+
exclude: []
|
194
|
+
},
|
195
|
+
n = ["searchInput", "resultsContainer", "json"],
|
196
|
+
r = (function y(e) {
|
197
|
+
if (
|
198
|
+
!(function n(t) {
|
199
|
+
return (
|
200
|
+
!!t &&
|
201
|
+
"undefined" != typeof t.required &&
|
202
|
+
t.required instanceof Array
|
203
|
+
);
|
204
|
+
})(e)
|
205
|
+
)
|
206
|
+
throw new Error("-- OptionsValidator: required options missing");
|
207
|
+
if (!(this instanceof y)) return new y(e);
|
208
|
+
var r = e.required;
|
209
|
+
(this.getRequiredOptions = function() {
|
210
|
+
return r;
|
211
|
+
}),
|
212
|
+
(this.validate = function(e) {
|
213
|
+
var n = [];
|
214
|
+
return (
|
215
|
+
r.forEach(function(t) {
|
216
|
+
"undefined" == typeof e[t] && n.push(t);
|
217
|
+
}),
|
218
|
+
n
|
219
|
+
);
|
220
|
+
});
|
221
|
+
})({ required: n });
|
222
|
+
function i(t) {
|
223
|
+
o.success(t),
|
224
|
+
l.put(t),
|
225
|
+
(function e() {
|
226
|
+
o.searchInput.addEventListener("keyup", function(t) {
|
227
|
+
(function e(t) {
|
228
|
+
return -1 === [13, 16, 20, 37, 38, 39, 40, 91].indexOf(t);
|
229
|
+
})(t.which) && (u(), c(t.target.value));
|
230
|
+
});
|
231
|
+
})();
|
232
|
+
}
|
233
|
+
function u() {
|
234
|
+
o.resultsContainer.innerHTML = "";
|
235
|
+
}
|
236
|
+
function a(t) {
|
237
|
+
o.resultsContainer.innerHTML += t;
|
238
|
+
}
|
239
|
+
function c(t) {
|
240
|
+
(function e(t) {
|
241
|
+
return t && 0 < t.length;
|
242
|
+
})(t) &&
|
243
|
+
(u(),
|
244
|
+
(function i(t, e) {
|
245
|
+
var n = t.length;
|
246
|
+
if (0 === n) return a(o.noResultsText);
|
247
|
+
for (var r = 0; r < n; r++) (t[r].query = e), a(h.compile(t[r]));
|
248
|
+
})(l.search(t), t));
|
249
|
+
}
|
250
|
+
function s(t) {
|
251
|
+
throw new Error("SimpleJekyllSearch --- " + t);
|
252
|
+
}
|
253
|
+
t.SimpleJekyllSearch = function(t) {
|
254
|
+
return (
|
255
|
+
0 < r.validate(t).length &&
|
256
|
+
s("You must specify the following required options: " + n),
|
257
|
+
(o = v.merge(o, t)),
|
258
|
+
h.setOptions({
|
259
|
+
template: o.searchResultTemplate,
|
260
|
+
middleware: o.templateMiddleware
|
261
|
+
}),
|
262
|
+
l.setOptions({
|
263
|
+
fuzzy: o.fuzzy,
|
264
|
+
limit: o.limit,
|
265
|
+
sort: o.sortMiddleware
|
266
|
+
}),
|
267
|
+
v.isJSON(o.json)
|
268
|
+
? i(o.json)
|
269
|
+
: (function e(n) {
|
270
|
+
f.load(n, function(t, e) {
|
271
|
+
t && s("failed to get JSON (" + n + ")"), i(e);
|
272
|
+
});
|
273
|
+
})(o.json),
|
274
|
+
{ search: c }
|
275
|
+
);
|
276
|
+
};
|
277
|
+
})(window);
|
278
|
+
})();
|
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
layout: null
|
3
|
+
---
|
4
|
+
[
|
5
|
+
{% for post in site.posts %}
|
6
|
+
{
|
7
|
+
"title": "{{ post.title | escape }}",
|
8
|
+
"category": "{{ post.category }}",
|
9
|
+
"content": "{{ post.content | strip_html | strip_newlines | remove_chars | escape }}",
|
10
|
+
"image": "{% if post.image %}
|
11
|
+
{% assign image_path = post.image %}
|
12
|
+
{% capture image_alt %}{{post.title}} image {% endcapture %}
|
13
|
+
{% else %}
|
14
|
+
{% assign image_path = site.post_placeholder %}
|
15
|
+
{% capture image_alt %}{{post.title}} placeholder image {% endcapture %}
|
16
|
+
{% endif %}{% picture post_thumb_src_only {{image_path}} --alt {{image_alt}} %}",
|
17
|
+
"tags": "{{ post.tags | join: ', ' }}",
|
18
|
+
"url": "{{ site.baseurl }}{{ post.url }}",
|
19
|
+
"description": "{% if post.description %}
|
20
|
+
{{post.description}}
|
21
|
+
{% else %}
|
22
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
23
|
+
{% endif %}",
|
24
|
+
"date": "{{ post.date | date: '%A, %B %-d, %Y' }}"
|
25
|
+
} {% unless forloop.last %},
|
26
|
+
{% endunless %}
|
27
|
+
{% endfor %}
|
28
|
+
]
|
data/robots.txt
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linaro-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Kirkby
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,224 +16,146 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 4.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 4.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name: jekyll-
|
28
|
+
name: jekyll-include-cache
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '2.2'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '2.2'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: jekyll-sitemap
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '1.1'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.1'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: jekyll-readme-index
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
31
|
+
- - '='
|
60
32
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
33
|
+
version: 0.2.0
|
62
34
|
type: :runtime
|
63
35
|
prerelease: false
|
64
36
|
version_requirements: !ruby/object:Gem::Requirement
|
65
37
|
requirements:
|
66
|
-
- -
|
38
|
+
- - '='
|
67
39
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
40
|
+
version: 0.2.0
|
69
41
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
42
|
+
name: jekyll_picture_tag
|
71
43
|
requirement: !ruby/object:Gem::Requirement
|
72
44
|
requirements:
|
73
|
-
- -
|
45
|
+
- - '='
|
74
46
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
47
|
+
version: 1.9.0
|
76
48
|
type: :runtime
|
77
49
|
prerelease: false
|
78
50
|
version_requirements: !ruby/object:Gem::Requirement
|
79
51
|
requirements:
|
80
|
-
- -
|
52
|
+
- - '='
|
81
53
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
54
|
+
version: 1.9.0
|
83
55
|
- !ruby/object:Gem::Dependency
|
84
|
-
name: jekyll-
|
56
|
+
name: jekyll-sitemap
|
85
57
|
requirement: !ruby/object:Gem::Requirement
|
86
58
|
requirements:
|
87
|
-
- -
|
59
|
+
- - '='
|
88
60
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
61
|
+
version: 1.4.0
|
90
62
|
type: :runtime
|
91
63
|
prerelease: false
|
92
64
|
version_requirements: !ruby/object:Gem::Requirement
|
93
65
|
requirements:
|
94
|
-
- -
|
66
|
+
- - '='
|
95
67
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
68
|
+
version: 1.4.0
|
97
69
|
- !ruby/object:Gem::Dependency
|
98
70
|
name: jekyll-tidy
|
99
71
|
requirement: !ruby/object:Gem::Requirement
|
100
72
|
requirements:
|
101
|
-
- -
|
73
|
+
- - '='
|
102
74
|
- !ruby/object:Gem::Version
|
103
75
|
version: 0.2.2
|
104
76
|
type: :runtime
|
105
77
|
prerelease: false
|
106
78
|
version_requirements: !ruby/object:Gem::Requirement
|
107
79
|
requirements:
|
108
|
-
- -
|
80
|
+
- - '='
|
109
81
|
- !ruby/object:Gem::Version
|
110
82
|
version: 0.2.2
|
111
83
|
- !ruby/object:Gem::Dependency
|
112
|
-
name: jekyll-
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - "~>"
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '2.3'
|
118
|
-
type: :runtime
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - "~>"
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '2.3'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: jekyll-data
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - "~>"
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '1.0'
|
132
|
-
type: :runtime
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - "~>"
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '1.0'
|
139
|
-
- !ruby/object:Gem::Dependency
|
140
|
-
name: uglifier
|
84
|
+
name: jekyll-feed
|
141
85
|
requirement: !ruby/object:Gem::Requirement
|
142
86
|
requirements:
|
143
|
-
- -
|
87
|
+
- - '='
|
144
88
|
- !ruby/object:Gem::Version
|
145
|
-
version:
|
89
|
+
version: 0.13.0
|
146
90
|
type: :runtime
|
147
91
|
prerelease: false
|
148
92
|
version_requirements: !ruby/object:Gem::Requirement
|
149
93
|
requirements:
|
150
|
-
- -
|
94
|
+
- - '='
|
151
95
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
96
|
+
version: 0.13.0
|
153
97
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
98
|
+
name: japr
|
155
99
|
requirement: !ruby/object:Gem::Requirement
|
156
100
|
requirements:
|
157
|
-
- -
|
101
|
+
- - '='
|
158
102
|
- !ruby/object:Gem::Version
|
159
|
-
version:
|
103
|
+
version: 0.4.2
|
160
104
|
type: :runtime
|
161
105
|
prerelease: false
|
162
106
|
version_requirements: !ruby/object:Gem::Requirement
|
163
107
|
requirements:
|
164
|
-
- -
|
108
|
+
- - '='
|
165
109
|
- !ruby/object:Gem::Version
|
166
|
-
version:
|
110
|
+
version: 0.4.2
|
167
111
|
- !ruby/object:Gem::Dependency
|
168
|
-
name:
|
112
|
+
name: closure-compiler
|
169
113
|
requirement: !ruby/object:Gem::Requirement
|
170
114
|
requirements:
|
171
115
|
- - "~>"
|
172
116
|
- !ruby/object:Gem::Version
|
173
|
-
version: '1.
|
174
|
-
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - "~>"
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '1.8'
|
181
|
-
- !ruby/object:Gem::Dependency
|
182
|
-
name: mini_magick
|
183
|
-
requirement: !ruby/object:Gem::Requirement
|
184
|
-
requirements:
|
185
|
-
- - "~>"
|
117
|
+
version: '1.1'
|
118
|
+
- - ">="
|
186
119
|
- !ruby/object:Gem::Version
|
187
|
-
version:
|
120
|
+
version: 1.1.14
|
188
121
|
type: :runtime
|
189
122
|
prerelease: false
|
190
123
|
version_requirements: !ruby/object:Gem::Requirement
|
191
124
|
requirements:
|
192
125
|
- - "~>"
|
193
126
|
- !ruby/object:Gem::Version
|
194
|
-
version: '
|
195
|
-
-
|
196
|
-
name: jekyll-feed
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
198
|
-
requirements:
|
199
|
-
- - "~>"
|
200
|
-
- !ruby/object:Gem::Version
|
201
|
-
version: '0.6'
|
202
|
-
type: :runtime
|
203
|
-
prerelease: false
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
205
|
-
requirements:
|
206
|
-
- - "~>"
|
127
|
+
version: '1.1'
|
128
|
+
- - ">="
|
207
129
|
- !ruby/object:Gem::Version
|
208
|
-
version:
|
130
|
+
version: 1.1.14
|
209
131
|
- !ruby/object:Gem::Dependency
|
210
132
|
name: bundler
|
211
133
|
requirement: !ruby/object:Gem::Requirement
|
212
134
|
requirements:
|
213
|
-
- -
|
135
|
+
- - '='
|
214
136
|
- !ruby/object:Gem::Version
|
215
|
-
version:
|
137
|
+
version: 2.1.4
|
216
138
|
type: :development
|
217
139
|
prerelease: false
|
218
140
|
version_requirements: !ruby/object:Gem::Requirement
|
219
141
|
requirements:
|
220
|
-
- -
|
142
|
+
- - '='
|
221
143
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
144
|
+
version: 2.1.4
|
223
145
|
- !ruby/object:Gem::Dependency
|
224
146
|
name: rake
|
225
147
|
requirement: !ruby/object:Gem::Requirement
|
226
148
|
requirements:
|
227
|
-
- -
|
149
|
+
- - '='
|
228
150
|
- !ruby/object:Gem::Version
|
229
|
-
version:
|
151
|
+
version: 13.0.1
|
230
152
|
type: :development
|
231
153
|
prerelease: false
|
232
154
|
version_requirements: !ruby/object:Gem::Requirement
|
233
155
|
requirements:
|
234
|
-
- -
|
156
|
+
- - '='
|
235
157
|
- !ruby/object:Gem::Version
|
236
|
-
version:
|
158
|
+
version: 13.0.1
|
237
159
|
description:
|
238
160
|
email:
|
239
161
|
- kyle.kirkby@linaro.org
|
@@ -243,216 +165,227 @@ extra_rdoc_files: []
|
|
243
165
|
files:
|
244
166
|
- LICENSE.txt
|
245
167
|
- README.md
|
246
|
-
-
|
247
|
-
- _data/company.yml
|
168
|
+
- _config.yml
|
248
169
|
- _data/footer.yml
|
249
|
-
- _data/linaro.yml
|
250
|
-
- _data/members_db.yaml
|
251
170
|
- _data/nav.yml
|
252
|
-
- _data/
|
253
|
-
- _data/
|
254
|
-
-
|
255
|
-
- _includes/
|
256
|
-
- _includes/
|
257
|
-
- _includes/
|
258
|
-
- _includes/
|
259
|
-
- _includes/
|
260
|
-
- _includes/
|
261
|
-
- _includes/
|
262
|
-
- _includes/
|
263
|
-
- _includes/
|
264
|
-
- _includes/
|
265
|
-
- _includes/
|
266
|
-
- _includes/
|
267
|
-
- _includes/
|
268
|
-
- _includes/
|
269
|
-
- _includes/
|
270
|
-
- _includes/
|
271
|
-
- _includes/
|
272
|
-
- _includes/
|
273
|
-
- _includes/
|
171
|
+
- _data/picture.yml
|
172
|
+
- _data/universal_nav.yml
|
173
|
+
- _includes/blog/authors_posts.html
|
174
|
+
- _includes/blog/blog_filler_element.html
|
175
|
+
- _includes/blog/display_latest_posts.html
|
176
|
+
- _includes/blog/disqus_comments.html
|
177
|
+
- _includes/blog/latest_posts.html
|
178
|
+
- _includes/blog/pagination.html
|
179
|
+
- _includes/blog/post_search.html
|
180
|
+
- _includes/blog/post_series.html
|
181
|
+
- _includes/blog/post_sidebar.html
|
182
|
+
- _includes/blog/read_time.html
|
183
|
+
- _includes/blog/tags.html
|
184
|
+
- _includes/components/breadcrumb.html
|
185
|
+
- _includes/components/carousel_header.html
|
186
|
+
- _includes/components/cookie_manager.html
|
187
|
+
- _includes/components/css.html
|
188
|
+
- _includes/components/github_edit.html
|
189
|
+
- _includes/components/head.html
|
190
|
+
- _includes/components/http2.html
|
191
|
+
- _includes/components/javascript.html
|
192
|
+
- _includes/components/jumbotron.html
|
193
|
+
- _includes/components/linaro_404.html
|
194
|
+
- _includes/components/schema.html
|
195
|
+
- _includes/components/sidebar.html
|
196
|
+
- _includes/examples/custom_include.html
|
197
|
+
- _includes/examples/custom_include_row.html
|
198
|
+
- _includes/flow/blocks.html
|
199
|
+
- _includes/flow/button.html
|
200
|
+
- _includes/flow/buttons.html
|
201
|
+
- _includes/flow/call-to-action-banner.html
|
202
|
+
- _includes/flow/collapse.html
|
203
|
+
- _includes/flow/container_row.html
|
204
|
+
- _includes/flow/feature_block.html
|
205
|
+
- _includes/flow/flow_inner.html
|
206
|
+
- _includes/flow/full_width_row.html
|
207
|
+
- _includes/flow/image.html
|
208
|
+
- _includes/flow/members-section.html
|
209
|
+
- _includes/flow/slider.html
|
210
|
+
- _includes/flow/slider_row.html
|
211
|
+
- _includes/flow/tabbed_content.html
|
212
|
+
- _includes/flow/text.html
|
213
|
+
- _includes/flow/title.html
|
214
|
+
- _includes/footer/footer.html
|
274
215
|
- _includes/image.html
|
216
|
+
- _includes/js_bundles/app.html
|
217
|
+
- _includes/js_bundles/vendor.html
|
275
218
|
- _includes/media.html
|
276
|
-
- _includes/
|
219
|
+
- _includes/nav/brand.html
|
220
|
+
- _includes/nav/nav.html
|
221
|
+
- _includes/nav/universal_nav.html
|
222
|
+
- _includes/social_media_icons.html
|
223
|
+
- _includes/sticky-tab-bar.html
|
277
224
|
- _includes/youtube.html
|
278
|
-
- _layouts/
|
279
|
-
- _layouts/
|
280
|
-
- _layouts/blog-breadcrumbless.html
|
281
|
-
- _layouts/blog.html
|
282
|
-
- _layouts/contact.html
|
283
|
-
- _layouts/default-empty.html
|
284
|
-
- _layouts/default-no-sub-nav.html
|
285
|
-
- _layouts/default-plain.html
|
286
|
-
- _layouts/default-stacked-breadcrumb.html
|
287
|
-
- _layouts/default-stacked.html
|
225
|
+
- _layouts/author.html
|
226
|
+
- _layouts/base.html
|
288
227
|
- _layouts/default.html
|
289
|
-
- _layouts/
|
290
|
-
- _layouts/
|
291
|
-
- _layouts/fluid.html
|
292
|
-
- _layouts/home-shape.html
|
293
|
-
- _layouts/home.html
|
228
|
+
- _layouts/flow.html
|
229
|
+
- _layouts/page.html
|
294
230
|
- _layouts/post.html
|
295
|
-
-
|
296
|
-
-
|
297
|
-
-
|
298
|
-
- _sass/
|
299
|
-
- _sass/
|
300
|
-
- _sass/
|
301
|
-
- _sass/
|
302
|
-
- _sass/bootstrap/
|
303
|
-
- _sass/bootstrap/
|
304
|
-
- _sass/bootstrap/_breadcrumbs.scss
|
305
|
-
- _sass/bootstrap/_button-groups.scss
|
231
|
+
- _sass/app/blog.scss
|
232
|
+
- _sass/app/custom.scss
|
233
|
+
- _sass/app/overrides.scss
|
234
|
+
- _sass/app/search.scss
|
235
|
+
- _sass/blog.scss
|
236
|
+
- _sass/bootstrap/_alert.scss
|
237
|
+
- _sass/bootstrap/_badge.scss
|
238
|
+
- _sass/bootstrap/_breadcrumb.scss
|
239
|
+
- _sass/bootstrap/_button-group.scss
|
306
240
|
- _sass/bootstrap/_buttons.scss
|
241
|
+
- _sass/bootstrap/_card.scss
|
307
242
|
- _sass/bootstrap/_carousel.scss
|
308
243
|
- _sass/bootstrap/_close.scss
|
309
244
|
- _sass/bootstrap/_code.scss
|
310
|
-
- _sass/bootstrap/
|
311
|
-
- _sass/bootstrap/
|
245
|
+
- _sass/bootstrap/_custom-forms.scss
|
246
|
+
- _sass/bootstrap/_dropdown.scss
|
312
247
|
- _sass/bootstrap/_forms.scss
|
313
|
-
- _sass/bootstrap/
|
248
|
+
- _sass/bootstrap/_functions.scss
|
314
249
|
- _sass/bootstrap/_grid.scss
|
315
|
-
- _sass/bootstrap/
|
250
|
+
- _sass/bootstrap/_images.scss
|
251
|
+
- _sass/bootstrap/_input-group.scss
|
316
252
|
- _sass/bootstrap/_jumbotron.scss
|
317
|
-
- _sass/bootstrap/_labels.scss
|
318
253
|
- _sass/bootstrap/_list-group.scss
|
319
254
|
- _sass/bootstrap/_media.scss
|
320
255
|
- _sass/bootstrap/_mixins.scss
|
321
|
-
- _sass/bootstrap/
|
256
|
+
- _sass/bootstrap/_modal.scss
|
257
|
+
- _sass/bootstrap/_nav.scss
|
322
258
|
- _sass/bootstrap/_navbar.scss
|
323
|
-
- _sass/bootstrap/_navs.scss
|
324
|
-
- _sass/bootstrap/_normalize.scss
|
325
|
-
- _sass/bootstrap/_pager.scss
|
326
259
|
- _sass/bootstrap/_pagination.scss
|
327
|
-
- _sass/bootstrap/
|
328
|
-
- _sass/bootstrap/_popovers.scss
|
260
|
+
- _sass/bootstrap/_popover.scss
|
329
261
|
- _sass/bootstrap/_print.scss
|
330
|
-
- _sass/bootstrap/_progress
|
331
|
-
- _sass/bootstrap/
|
332
|
-
- _sass/bootstrap/
|
333
|
-
- _sass/bootstrap/_scaffolding.scss
|
262
|
+
- _sass/bootstrap/_progress.scss
|
263
|
+
- _sass/bootstrap/_reboot.scss
|
264
|
+
- _sass/bootstrap/_root.scss
|
334
265
|
- _sass/bootstrap/_tables.scss
|
335
|
-
- _sass/bootstrap/_theme.scss
|
336
|
-
- _sass/bootstrap/_thumbnails.scss
|
337
266
|
- _sass/bootstrap/_tooltip.scss
|
267
|
+
- _sass/bootstrap/_transitions.scss
|
338
268
|
- _sass/bootstrap/_type.scss
|
339
269
|
- _sass/bootstrap/_utilities.scss
|
340
270
|
- _sass/bootstrap/_variables.scss
|
341
|
-
- _sass/bootstrap/
|
342
|
-
- _sass/bootstrap/
|
271
|
+
- _sass/bootstrap/bootstrap-grid.scss
|
272
|
+
- _sass/bootstrap/bootstrap-reboot.scss
|
273
|
+
- _sass/bootstrap/bootstrap.scss
|
274
|
+
- _sass/bootstrap/mixins/_alert.scss
|
343
275
|
- _sass/bootstrap/mixins/_background-variant.scss
|
276
|
+
- _sass/bootstrap/mixins/_badge.scss
|
344
277
|
- _sass/bootstrap/mixins/_border-radius.scss
|
278
|
+
- _sass/bootstrap/mixins/_box-shadow.scss
|
279
|
+
- _sass/bootstrap/mixins/_breakpoints.scss
|
345
280
|
- _sass/bootstrap/mixins/_buttons.scss
|
346
|
-
- _sass/bootstrap/mixins/
|
281
|
+
- _sass/bootstrap/mixins/_caret.scss
|
347
282
|
- _sass/bootstrap/mixins/_clearfix.scss
|
283
|
+
- _sass/bootstrap/mixins/_float.scss
|
348
284
|
- _sass/bootstrap/mixins/_forms.scss
|
349
285
|
- _sass/bootstrap/mixins/_gradients.scss
|
350
286
|
- _sass/bootstrap/mixins/_grid-framework.scss
|
351
287
|
- _sass/bootstrap/mixins/_grid.scss
|
352
|
-
- _sass/bootstrap/mixins/
|
288
|
+
- _sass/bootstrap/mixins/_hover.scss
|
353
289
|
- _sass/bootstrap/mixins/_image.scss
|
354
|
-
- _sass/bootstrap/mixins/_labels.scss
|
355
290
|
- _sass/bootstrap/mixins/_list-group.scss
|
291
|
+
- _sass/bootstrap/mixins/_lists.scss
|
356
292
|
- _sass/bootstrap/mixins/_nav-divider.scss
|
357
|
-
- _sass/bootstrap/mixins/_nav-vertical-align.scss
|
358
|
-
- _sass/bootstrap/mixins/_opacity.scss
|
359
293
|
- _sass/bootstrap/mixins/_pagination.scss
|
360
|
-
- _sass/bootstrap/mixins/_panels.scss
|
361
|
-
- _sass/bootstrap/mixins/_progress-bar.scss
|
362
|
-
- _sass/bootstrap/mixins/_reset-filter.scss
|
363
294
|
- _sass/bootstrap/mixins/_reset-text.scss
|
364
295
|
- _sass/bootstrap/mixins/_resize.scss
|
365
|
-
- _sass/bootstrap/mixins/
|
296
|
+
- _sass/bootstrap/mixins/_screen-reader.scss
|
366
297
|
- _sass/bootstrap/mixins/_size.scss
|
367
|
-
- _sass/bootstrap/mixins/_tab-focus.scss
|
368
298
|
- _sass/bootstrap/mixins/_table-row.scss
|
369
299
|
- _sass/bootstrap/mixins/_text-emphasis.scss
|
370
|
-
- _sass/bootstrap/mixins/_text-
|
371
|
-
- _sass/bootstrap/mixins/
|
372
|
-
- _sass/
|
300
|
+
- _sass/bootstrap/mixins/_text-hide.scss
|
301
|
+
- _sass/bootstrap/mixins/_text-truncate.scss
|
302
|
+
- _sass/bootstrap/mixins/_transition.scss
|
303
|
+
- _sass/bootstrap/mixins/_visibility.scss
|
304
|
+
- _sass/bootstrap/utilities/_align.scss
|
305
|
+
- _sass/bootstrap/utilities/_background.scss
|
306
|
+
- _sass/bootstrap/utilities/_borders.scss
|
307
|
+
- _sass/bootstrap/utilities/_clearfix.scss
|
308
|
+
- _sass/bootstrap/utilities/_display.scss
|
309
|
+
- _sass/bootstrap/utilities/_embed.scss
|
310
|
+
- _sass/bootstrap/utilities/_flex.scss
|
311
|
+
- _sass/bootstrap/utilities/_float.scss
|
312
|
+
- _sass/bootstrap/utilities/_position.scss
|
313
|
+
- _sass/bootstrap/utilities/_screenreaders.scss
|
314
|
+
- _sass/bootstrap/utilities/_shadows.scss
|
315
|
+
- _sass/bootstrap/utilities/_sizing.scss
|
316
|
+
- _sass/bootstrap/utilities/_spacing.scss
|
317
|
+
- _sass/bootstrap/utilities/_text.scss
|
318
|
+
- _sass/bootstrap/utilities/_visibility.scss
|
319
|
+
- _sass/core.scss
|
373
320
|
- _sass/core/blog.scss
|
321
|
+
- _sass/core/bootstrap-multiselect.scss
|
374
322
|
- _sass/core/breadcrumb.scss
|
323
|
+
- _sass/core/carousel-header.scss
|
375
324
|
- _sass/core/carousel-styles.scss
|
376
325
|
- _sass/core/carousel.scss
|
377
|
-
- _sass/core/
|
378
|
-
- _sass/core/
|
379
|
-
- _sass/core/
|
380
|
-
- _sass/core/
|
381
|
-
- _sass/core/
|
382
|
-
- _sass/core/fonts.scss
|
326
|
+
- _sass/core/cookies.scss
|
327
|
+
- _sass/core/error.scss
|
328
|
+
- _sass/core/featherlight.scss
|
329
|
+
- _sass/core/flow.scss
|
330
|
+
- _sass/core/fontello.scss
|
383
331
|
- _sass/core/footer.scss
|
384
|
-
- _sass/core/
|
385
|
-
- _sass/core/
|
386
|
-
- _sass/core/
|
387
|
-
- _sass/core/nav.scss
|
388
|
-
- _sass/core/old-search.scss
|
389
|
-
- _sass/core/openhours.scss
|
332
|
+
- _sass/core/jumbotron.scss
|
333
|
+
- _sass/core/navbar.scss
|
334
|
+
- _sass/core/normalize.scss
|
390
335
|
- _sass/core/owl.carousel.min.scss
|
391
336
|
- _sass/core/owl.theme.default.min.scss
|
392
|
-
- _sass/core/products.scss
|
393
|
-
- _sass/core/projects.scss
|
394
|
-
- _sass/core/social-media-icons.scss
|
395
337
|
- _sass/core/syntax.scss
|
396
|
-
- _sass/core/tables.scss
|
397
338
|
- _sass/core/theme.scss
|
398
|
-
- _sass/core/youtube.scss
|
399
|
-
- _sass/custom.scss
|
400
339
|
- assets/css/main.scss
|
401
|
-
- assets/fonts/
|
402
|
-
- assets/fonts/
|
403
|
-
- assets/fonts/
|
404
|
-
- assets/fonts/
|
405
|
-
- assets/fonts/
|
406
|
-
- assets/fonts/
|
407
|
-
- assets/fonts/
|
408
|
-
- assets/fonts/
|
409
|
-
- assets/fonts/
|
410
|
-
- assets/fonts/
|
411
|
-
- assets/fonts/lato-regular
|
412
|
-
- assets/
|
413
|
-
- assets/
|
414
|
-
- assets/
|
415
|
-
- assets/
|
416
|
-
- assets/
|
417
|
-
- assets/images/
|
418
|
-
- assets/images/Linaro-Logo_light.png
|
419
|
-
- assets/images/Linaro-Logo_standard.svg
|
420
|
-
- assets/images/Linaro-Sprinkle.svg
|
421
|
-
- assets/images/avatar-placeholder.png
|
422
|
-
- assets/images/background-image.jpg
|
423
|
-
- assets/images/banner.jpg
|
340
|
+
- assets/fonts/fontello/fontello.eot
|
341
|
+
- assets/fonts/fontello/fontello.svg
|
342
|
+
- assets/fonts/fontello/fontello.ttf
|
343
|
+
- assets/fonts/fontello/fontello.woff
|
344
|
+
- assets/fonts/fontello/fontello.woff2
|
345
|
+
- assets/fonts/lato/LICENSE.txt
|
346
|
+
- assets/fonts/lato/Lato-regular.eot
|
347
|
+
- assets/fonts/lato/Lato-regular.svg
|
348
|
+
- assets/fonts/lato/Lato-regular.ttf
|
349
|
+
- assets/fonts/lato/Lato-regular.woff
|
350
|
+
- assets/fonts/lato/Lato-regular.woff2
|
351
|
+
- assets/images/Linaro-Logo.svg
|
352
|
+
- assets/images/Linaro-Sprinkle.png
|
353
|
+
- assets/images/Linaro-logo-white.png
|
354
|
+
- assets/images/avatar-placeholder.jpg
|
355
|
+
- assets/images/breadcrumb-image.jpg
|
356
|
+
- assets/images/clipboard.svg
|
424
357
|
- assets/images/close.png
|
425
|
-
- assets/images/css3.png
|
426
358
|
- assets/images/favicon.ico
|
427
359
|
- assets/images/favicon.png
|
428
|
-
- assets/images/html5.png
|
429
|
-
- assets/images/jekyll.svg
|
430
|
-
- assets/images/js.jpeg
|
431
360
|
- assets/images/loading.gif
|
432
361
|
- assets/images/next.png
|
433
362
|
- assets/images/owl.video.play.png
|
434
|
-
- assets/images/placeholder.png
|
435
363
|
- assets/images/prev.png
|
436
364
|
- assets/images/social-media-image.png
|
365
|
+
- assets/js/app/custom.js
|
437
366
|
- assets/js/app/main.js
|
438
|
-
- assets/js/
|
439
|
-
- assets/js/
|
440
|
-
- assets/js/
|
441
|
-
- assets/js/vendor/bootstrap.
|
442
|
-
- assets/js/vendor/
|
443
|
-
- assets/js/vendor/
|
444
|
-
- assets/js/vendor/
|
445
|
-
- assets/js/vendor/jquery.
|
446
|
-
- assets/js/vendor/
|
447
|
-
- assets/js/vendor/
|
448
|
-
- assets/js/vendor/
|
449
|
-
- assets/js/vendor/
|
450
|
-
- assets/js/vendor/
|
367
|
+
- assets/js/bootstrap.js.map
|
368
|
+
- assets/js/popper.min.js.map
|
369
|
+
- assets/js/vendor/_popper.js
|
370
|
+
- assets/js/vendor/bootstrap.js
|
371
|
+
- assets/js/vendor/clipboard.min.js
|
372
|
+
- assets/js/vendor/featherlight.js
|
373
|
+
- assets/js/vendor/jquery.cookie.js
|
374
|
+
- assets/js/vendor/jquery.ihavecookies.js
|
375
|
+
- assets/js/vendor/jquery.js
|
376
|
+
- assets/js/vendor/lazysizes.js
|
377
|
+
- assets/js/vendor/ls.unveilhooks.js
|
378
|
+
- assets/js/vendor/owl.carousel.js
|
379
|
+
- assets/js/vendor/simple-jekyll-search.min.js
|
380
|
+
- assets/json/posts.json
|
451
381
|
- robots.txt
|
452
|
-
homepage: https://github.com/
|
382
|
+
homepage: https://github.com/linaro-marketing/linaro-jekyll-theme
|
453
383
|
licenses:
|
454
384
|
- MIT
|
455
|
-
metadata:
|
385
|
+
metadata:
|
386
|
+
homepage_uri: https://github.com/linaro-marketing/linaro-jekyll-theme
|
387
|
+
source_code_uri: https://github.com/linaro-marketing/linaro-jekyll-theme/
|
388
|
+
bug_tracker_uri: https://github.com/linaro-marketing/linaro-jekyll-theme/issues
|
456
389
|
post_install_message:
|
457
390
|
rdoc_options: []
|
458
391
|
require_paths:
|
@@ -461,16 +394,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
461
394
|
requirements:
|
462
395
|
- - ">="
|
463
396
|
- !ruby/object:Gem::Version
|
464
|
-
version: 2.
|
397
|
+
version: '2.3'
|
465
398
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
466
399
|
requirements:
|
467
400
|
- - ">="
|
468
401
|
- !ruby/object:Gem::Version
|
469
402
|
version: '0'
|
470
403
|
requirements: []
|
471
|
-
|
472
|
-
rubygems_version: 2.6.14
|
404
|
+
rubygems_version: 3.0.8
|
473
405
|
signing_key:
|
474
406
|
specification_version: 4
|
475
|
-
summary:
|
407
|
+
summary: Linaro's bootstrap 4/jekyll 4 static website theme.
|
476
408
|
test_files: []
|