linaro-jekyll-theme 1.0 → 4.0.2
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 +119 -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/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 +65 -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 +56 -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 +242 -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 +360 -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 -233
- 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,24 @@
|
|
1
|
+
{% unless page.comments == false %}
|
2
|
+
<section class="disqus">
|
3
|
+
<div id="disqus_thread"></div>
|
4
|
+
<script type="text/javascript">
|
5
|
+
var disqus_config = function () {
|
6
|
+
this.page.url = "{{site.url}}{{page.url}}"; // Replace PAGE_URL with your page's canonical URL variable
|
7
|
+
this.page.identifier = "{{page.url}}"; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
8
|
+
this.callbacks.onNewComment = [function (comment) {
|
9
|
+
console.log(comment.id);
|
10
|
+
console.log(comment.text);
|
11
|
+
}];
|
12
|
+
};
|
13
|
+
var disqus_shortname = '{{ site.disqus.shortname }}';
|
14
|
+
var disqus_developer = 0; // developer mode is on
|
15
|
+
(function() {
|
16
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
17
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
18
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
19
|
+
})();
|
20
|
+
</script>
|
21
|
+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
22
|
+
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
23
|
+
</section>
|
24
|
+
{% endunless %}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{% assign posts = site.posts | sort: 'date' | reverse %}
|
2
|
+
{% for post in posts limit: 5 %}
|
3
|
+
<li class="list-group-item">
|
4
|
+
<a href="{{post.url}}">
|
5
|
+
{{post.title | truncate:40 }}
|
6
|
+
<small class="date">
|
7
|
+
<em>{{ post.date | date: '%B %d, %Y' }}</em>
|
8
|
+
</small>
|
9
|
+
</a>
|
10
|
+
</li>
|
11
|
+
{% endfor %}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
{% assign paginate_path = include.path %}
|
2
|
+
{% assign paginate_base_path = paginate_path | split: ":" %}
|
3
|
+
{% if paginator.total_pages > 1 %}
|
4
|
+
<nav aria-label="Page navigation example">
|
5
|
+
<ul class="pagination justify-content-center my-4 my-sm-4">
|
6
|
+
{% if paginator.previous_page %}
|
7
|
+
<li class="page-item"><a class="page-link" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a></li>
|
8
|
+
{% else %}
|
9
|
+
<li class="page-item disabled"><a class="page-link" href="#">« Prev</a></li>
|
10
|
+
{% endif %}
|
11
|
+
{% if paginator.page_trail %}
|
12
|
+
{% for trail in paginator.page_trail %}
|
13
|
+
<li {% if page.url == trail.path %}class="page-item active"{% endif %}>
|
14
|
+
<a class="page-link" href="{% if trail.num == 1 %}{{paginate_base_path[0]}}{% else %}
|
15
|
+
{{ paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', trail.num }}{% endif %}"
|
16
|
+
title="{{trail.title}}">{{ trail.num }}</a>
|
17
|
+
</li>
|
18
|
+
{% endfor %}
|
19
|
+
{% else %}
|
20
|
+
{% for page in (1..paginator.total_pages) %}
|
21
|
+
{% if page == paginator.page %}
|
22
|
+
<li class="page-item active"><a class="page-link" href="">{{ page }}</a></li>
|
23
|
+
{% elsif page == 1 %}
|
24
|
+
<li class="page-item"><a class="page-link" href="{{paginate_base_path[0]}}">{{ page }}</a></li>
|
25
|
+
{% else %}
|
26
|
+
<li class="page-item"><a class="page-link" href="{{ paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a></li>
|
27
|
+
{% endif %}
|
28
|
+
{% endfor %}
|
29
|
+
{% endif %}
|
30
|
+
{% if paginator.next_page %}
|
31
|
+
<li class="page-item"><a class="page-link" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next </a></li>
|
32
|
+
{% else %}
|
33
|
+
<li class="page-item disabled"><a class="page-link" href="#">Next »</a></li>
|
34
|
+
{% endif %}
|
35
|
+
</ul>
|
36
|
+
</nav>
|
37
|
+
{% endif %}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{% assign url = include.object.payload %}
|
2
|
+
<div class="col col-12 ">
|
3
|
+
<div id="post_search" data-file-path="{{url.data}}">
|
4
|
+
<input class="form-control form-control-lg" id="search-input" type="text"
|
5
|
+
placeholder="Search {{site.categories[url.category].size}} posts..." />
|
6
|
+
<a class="close_search" href="#">
|
7
|
+
X <span class="sr-only">Clear Search</span>
|
8
|
+
</a>
|
9
|
+
<ul class="list-unstyled p-3" id="results-container"></ul>
|
10
|
+
</div>
|
11
|
+
</div>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
{% if page.series %}
|
2
|
+
{% assign count = '0' %}
|
3
|
+
{% assign idx = '0' %}
|
4
|
+
{% for post in site.posts reversed %}
|
5
|
+
{% if post.series == page.series %}
|
6
|
+
{% capture count %}{{ count | plus: '1' }}{% endcapture %}
|
7
|
+
{% if post.url == page.url %}
|
8
|
+
{% capture idx %}{{count}}{% endcapture %}
|
9
|
+
{% endif %}
|
10
|
+
{% endif %}
|
11
|
+
{% endfor %}
|
12
|
+
<div class="panel post-series">
|
13
|
+
<p>
|
14
|
+
This article is <strong>Part {{ idx }}</strong> in a <strong>{{ count }}-Part</strong> Series.
|
15
|
+
</p>
|
16
|
+
<ul class="list-group">
|
17
|
+
{% assign count = '0' %}
|
18
|
+
{% for post in site.posts reversed %}
|
19
|
+
{% if post.series == page.series %}
|
20
|
+
{% capture count %}{{ count | plus: '1' }}{% endcapture %}
|
21
|
+
<li class="list-group-item {% if page.url == post.url %}active{% endif %}">Part {{ count }} -
|
22
|
+
<a href="{{post.url}}">{{post.title}}</a>
|
23
|
+
</li>
|
24
|
+
{% endif %}
|
25
|
+
{% endfor %}
|
26
|
+
</ul>
|
27
|
+
</div>
|
28
|
+
{% endif %}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
{% comment %}
|
2
|
+
Recent Posts Displayed here.
|
3
|
+
{% endcomment %}
|
4
|
+
<div class="col col-12 my-5 suggested_posts">
|
5
|
+
<h3>Recent Posts</h3>
|
6
|
+
<ul class="list-unstyled">
|
7
|
+
{% for post in site.posts limit: 3 %}
|
8
|
+
{% assign timeframe = 604800 %}
|
9
|
+
{% assign post_in_seconds = post.date | date: "%s" | plus: 0 %}
|
10
|
+
{% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
|
11
|
+
|
12
|
+
{% if post.image %}
|
13
|
+
{% assign image_path = post.image %}
|
14
|
+
{% capture image_alt %}{{post.title}} image {% endcapture %}
|
15
|
+
{% else %}
|
16
|
+
{% assign image_path = site.post_placeholder %}
|
17
|
+
{% capture image_alt %}Blog post placeholder image {% endcapture %}
|
18
|
+
{% endif %}
|
19
|
+
<li class="media flex-column flex-sm-row">
|
20
|
+
{% picture post_thumb {{image_path}} --alt {{image_alt}} %}
|
21
|
+
<div class="media-body">
|
22
|
+
<a href="{{post.url}}">
|
23
|
+
<h5 class="mt-0 mb-1">{{post.title}}</h5>
|
24
|
+
<em class="suggested_post_date">{{post.date | date: "%A, %B %-d, %Y" }}</em>
|
25
|
+
<p>
|
26
|
+
{% if post.description %}
|
27
|
+
{{post.description}}
|
28
|
+
{% else %}
|
29
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
30
|
+
{% endif %}
|
31
|
+
</p>
|
32
|
+
{% if post_in_seconds > recent_posts %}
|
33
|
+
<span class="new-post" title="Post added in the last week.">New</span>
|
34
|
+
{% endif %}
|
35
|
+
</a>
|
36
|
+
</div>
|
37
|
+
</li>
|
38
|
+
{% endfor %}
|
39
|
+
</ul>
|
40
|
+
</div>
|
41
|
+
{% comment %}
|
42
|
+
Other Posts
|
43
|
+
{% endcomment %}
|
44
|
+
<div class="col col-12 my-5 suggested_posts">
|
45
|
+
<h3>Other Posts</h3>
|
46
|
+
<ul class="list-unstyled">
|
47
|
+
{% assign posts = site.posts | sample:5 %}
|
48
|
+
{% for post in posts %}
|
49
|
+
{% if post.image %}
|
50
|
+
{% assign image_path = post.image %}
|
51
|
+
{% capture image_alt %}{{post.title}} image {% endcapture %}
|
52
|
+
{% else %}
|
53
|
+
{% assign image_path = site.post_placeholder %}
|
54
|
+
{% capture image_alt %}Blog post placeholder image {% endcapture %}
|
55
|
+
{% endif %}
|
56
|
+
<li class="media flex-column flex-sm-row">
|
57
|
+
{% picture post_thumb {{image_path}} --alt {{image_alt}} %}
|
58
|
+
<div class="media-body">
|
59
|
+
<a href="{{post.url}}">
|
60
|
+
<h5 class="mt-0 mb-1">{{post.title}}</h5>
|
61
|
+
<em class="suggested_post_date">{{post.date | date: "%A, %B %-d, %Y" }}</em>
|
62
|
+
<p>
|
63
|
+
{% if post.description %}
|
64
|
+
{{post.description}}
|
65
|
+
{% else %}
|
66
|
+
{{ post.content | strip_html | truncatewords:30 }}
|
67
|
+
{% endif %}
|
68
|
+
</p>
|
69
|
+
</a>
|
70
|
+
</div>
|
71
|
+
</li>
|
72
|
+
{% endfor %}
|
73
|
+
</ul>
|
74
|
+
</div>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
|
2
|
+
{% if include.content %}
|
3
|
+
{% assign words = include.content | number_of_words %}
|
4
|
+
{% else %}
|
5
|
+
{% assign words = content | number_of_words %}
|
6
|
+
{% endif %}
|
7
|
+
<span class="reading-time badge badge-light text-dark" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins read{% endif %} <i class="fa fa-clock-o" aria-hidden="true"></i></span>
|
@@ -0,0 +1,37 @@
|
|
1
|
+
{% assign page-url = page.url | split: "/" %}
|
2
|
+
{% assign iterator = 2 %}
|
3
|
+
{% assign breadcrumb-path = "/" %}
|
4
|
+
<nav aria-label="breadcrumb" id="breadcrumb">
|
5
|
+
<div class="container">
|
6
|
+
<h1>{{page.title}}</h1>
|
7
|
+
<ol class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList">
|
8
|
+
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"
|
9
|
+
class="breadcrumb-item">
|
10
|
+
<a itemprop="item" href="/">
|
11
|
+
<span itemprop="name">Home</span>
|
12
|
+
<meta itemprop="position" content="1" />
|
13
|
+
</a>
|
14
|
+
</li>
|
15
|
+
{% for section in page-url %}
|
16
|
+
{% if forloop.last == false %}
|
17
|
+
{% if section == "" or section == "index.html" %}
|
18
|
+
{% continue %}
|
19
|
+
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
20
|
+
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
21
|
+
<a itemprop="item" href="{{breadcrumb-path}}">
|
22
|
+
<span itemprop="name">{{section | truncate: 20 | capitalize }}</span>
|
23
|
+
</a>
|
24
|
+
<meta itemprop="position" content="{{iterator}}" />
|
25
|
+
</li>
|
26
|
+
{% endif %}
|
27
|
+
{% else %}
|
28
|
+
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="active">
|
29
|
+
<span itemprop="name">{{page.title}}</span>
|
30
|
+
<meta itemprop="position" content="{{iterator}}" />
|
31
|
+
</li>
|
32
|
+
{% endif %}
|
33
|
+
{% assign iterator = iterator | plus: 1 %}
|
34
|
+
{% endfor %}
|
35
|
+
</ol>
|
36
|
+
</div>
|
37
|
+
</nav>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
{% assign images = include.images %}
|
2
|
+
<!-- Carousel Header -->
|
3
|
+
<div class="row">
|
4
|
+
<div class="carousel slide carousel-fade" id="header-carousel" data-ride="carousel">
|
5
|
+
<div class="carousel-inner" role="listbox">
|
6
|
+
{% for image in images %}
|
7
|
+
<div data-src="{{image}}" style="{% if forloop.index == 1%}background: url('{{image}}');{% else %}{% endif %}background-size:cover; background-position:center center; background-repeat: no-repeat;"
|
8
|
+
class=" item {% if forloop.index == 1%}active{% else %}{% endif %}">
|
9
|
+
</div>
|
10
|
+
{% endfor %}
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
<!-- End Carousel Header -->
|
15
|
+
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<div class="col col-12 cookie_manager">
|
2
|
+
<div class="row justify-content-lg-center">
|
3
|
+
<div class="col col-12 col-sm-9">
|
4
|
+
<h3>Necessary Cookies</h3>
|
5
|
+
<p class="lead">
|
6
|
+
We cannot disable neccessary cookies as these are required to remember your preferences
|
7
|
+
for non-essential cookies.
|
8
|
+
</p>
|
9
|
+
<p>
|
10
|
+
List of Necessary Cookies:
|
11
|
+
</p>
|
12
|
+
<table class="table">
|
13
|
+
<thead>
|
14
|
+
<th>Cookie Name</th>
|
15
|
+
<th>Usage</th>
|
16
|
+
</thead>
|
17
|
+
<tbody>
|
18
|
+
{% for cookie in site.google_analytics.cookies.necessary %}
|
19
|
+
<tr>
|
20
|
+
<td>{{cookie.name}}</td>
|
21
|
+
<td>{{cookie.description | markdownify}}</td>
|
22
|
+
</tr>
|
23
|
+
{% endfor %}
|
24
|
+
</tbody>
|
25
|
+
</table>
|
26
|
+
</div>
|
27
|
+
<div class="col col-12 col-sm-3">
|
28
|
+
<div class="df-switch">
|
29
|
+
<button type="button" class="btn btn-lg btn-toggle active" disabled data-toggle="button" aria-pressed="false"
|
30
|
+
autocomplete="off">
|
31
|
+
<div class="inner-handle"></div>
|
32
|
+
<div class="handle"></div>
|
33
|
+
</button>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
<div class="row justify-content-lg-center">
|
38
|
+
<div class="col col-12 col-sm-9" order-sm-1">
|
39
|
+
<h3>Analytics Cookies</h3>
|
40
|
+
<p class="lead" id="analytics_cookies_desc">
|
41
|
+
<span class="disabled">Toggle this switch to enabled the collection of anonymous analytics data that helps us improve our site.</span>
|
42
|
+
<span class="enabled">Toggle this switch to disable the collection of anonymous analytics data that helps us improve our site.</span>
|
43
|
+
</p>
|
44
|
+
<p>
|
45
|
+
List of Analytics Cookies:
|
46
|
+
</p>
|
47
|
+
<table class="table">
|
48
|
+
<thead>
|
49
|
+
<th>Cookie Name</th>
|
50
|
+
<th>Usage</th>
|
51
|
+
</thead>
|
52
|
+
<tbody>
|
53
|
+
{% for cookie in site.google_analytics.cookies.marketing %}
|
54
|
+
<tr>
|
55
|
+
<td>{{cookie.name}}</td>
|
56
|
+
<td>{{cookie.description | markdownify}}</td>
|
57
|
+
</tr>
|
58
|
+
{% endfor %}
|
59
|
+
</tbody>
|
60
|
+
</table>
|
61
|
+
</div>
|
62
|
+
<div class="col col-12 col-sm-3">
|
63
|
+
<div class="df-switch">
|
64
|
+
<button id="analytics_toggle" type="button" class="btn btn-lg btn-toggle" data-toggle="button" aria-pressed="false"
|
65
|
+
autocomplete="off">
|
66
|
+
<div class="inner-handle"></div>
|
67
|
+
<div class="handle"></div>
|
68
|
+
</button>
|
69
|
+
</div>
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
</div>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
{% if page.css_bundle %}
|
2
|
+
{% capture css-package %}/assets/css/main-{{page.css_bundle}}.css{% endcapture %}
|
3
|
+
{% elsif layout.css_bundle %}
|
4
|
+
{% capture css-package %}/assets/css/main-{{layout.css_bundle}}.css{% endcapture %}
|
5
|
+
{% else %}
|
6
|
+
{% capture css-package %}/assets/css/main.css{% endcapture %}
|
7
|
+
{% endif %}
|
8
|
+
<link rel="stylesheet" href="{{ css-package | relative_url }}">
|
@@ -0,0 +1,34 @@
|
|
1
|
+
{% unless page.edit-on-github == "false" %}
|
2
|
+
{% if site.edit-on-github.enabled and site.edit-on-github.repo %}
|
3
|
+
{% assign page_base = include.pagePermalink | split:"/" %}
|
4
|
+
{% assign page-path = include.pagePath | replace: " ", "" %}
|
5
|
+
{% if page_base[1] == "documentation" and site.edit-on-github.docs %}
|
6
|
+
{% capture github-home %}{{site.edit-on-github.docs}}{% endcapture %}
|
7
|
+
{% capture github-docs %}{{site.edit-on-github.docs}}/tree/master/{% endcapture %}
|
8
|
+
{% capture report-issue-link %}
|
9
|
+
{{github-home}}/issues/new?title=Problem+with+{{page-path}}&body=Please+enter+some+details+about+the+bug/issue+so+we+can+promptly+resolve+it.+%0D%0AURL%3A++{{site.url}}{{page.url}}
|
10
|
+
{% endcapture %}
|
11
|
+
{% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
|
12
|
+
<div class="btn-group my-2 mt-1" role="group" aria-label="Basic example" id="github_controls">
|
13
|
+
<a type="button" aria-label="GitHub Home" title="GitHub Home" class="btn btn-secondary" href="{{github-home}}" id="github_home"><span class="sr-only">Go to GitHub Repo home</span><i class="icon-github-circled center-block"></i></a>
|
14
|
+
<a type="button" aria-label="Report an issue on GitHub for this page" title="Report an issue on GitHub for this page" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an Issue</a>
|
15
|
+
<a aria-label="Edit this page on GitHub" title="Edit this page on GitHub" href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary" id="edit_on_github">Edit on GitHub</a>
|
16
|
+
</div>
|
17
|
+
{% else %}
|
18
|
+
{% capture github-home %}{{site.edit-on-github.repo}}{% endcapture %}
|
19
|
+
{% capture github-docs %}{{site.edit-on-github.repo}}/tree/master/{% endcapture %}
|
20
|
+
{% capture report-issue-link %}
|
21
|
+
{{site.edit-on-github.repo}}/issues/new?title=Problem+with+{{page-path}}&body=Please+enter+some+details+about+the+bug/issue+so+we+can+promptly+resolve+it.+%0D%0AURL%3A++{{site.url}}{{page.url}}
|
22
|
+
{% endcapture %}
|
23
|
+
{% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
|
24
|
+
<div class="btn-group my-2 mt-1" role="group" aria-label="Basic example" id="github_controls">
|
25
|
+
<a type="button" aria-label="GitHub Home" title="GitHub Home" class="btn btn-secondary" href="{{github-home}}" id="github_home"> <span class="sr-only">Go to GitHub Repo home</span> <i
|
26
|
+
class="icon-github-circled center-block"></i></a>
|
27
|
+
<a type="button" aria-label="Report an issue on GitHub for this page" title="Report an issue on GitHub for this page" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an
|
28
|
+
Issue</a>
|
29
|
+
<a aria-label="Edit this page on GitHub" title="Edit this page on GitHub" href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary"
|
30
|
+
id="edit_on_github">Edit on GitHub</a>
|
31
|
+
</div>
|
32
|
+
{% endif %}
|
33
|
+
{% endif %}
|
34
|
+
{% endunless %}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
<head>
|
2
|
+
{% include components/http2.html %}
|
3
|
+
<meta charset="UTF-8">
|
4
|
+
<title>
|
5
|
+
{% if page.title %}
|
6
|
+
{{page.title}} - {{site.title}}
|
7
|
+
{% else %}
|
8
|
+
{{site.title}}
|
9
|
+
{% endif %}
|
10
|
+
</title>
|
11
|
+
{% include components/css.html %}
|
12
|
+
|
13
|
+
{% if page.description %}
|
14
|
+
{% assign description = page.description %}
|
15
|
+
{% else %}
|
16
|
+
{% assign description = site.description %}
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
|
20
|
+
{% if page.title %}
|
21
|
+
{% assign title = page.title %}
|
22
|
+
{% else %}
|
23
|
+
{% assign title = site.title %}
|
24
|
+
{% endif %}
|
25
|
+
|
26
|
+
{% if page.image %}
|
27
|
+
{% assign image = page.image | absolute_url %}
|
28
|
+
{% else %}
|
29
|
+
{% assign image = site.social_media_share_image | absolute_url %}
|
30
|
+
{% endif %}
|
31
|
+
|
32
|
+
<link rel="icon" href="{{site.favicon}}" type="image/png" />
|
33
|
+
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
34
|
+
<!-- Meta tags -->
|
35
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
36
|
+
<meta name="generator" content="Jekyll v4" />
|
37
|
+
<meta name="description" content="{{description}}" />
|
38
|
+
<!--Open Graph-->
|
39
|
+
<meta property="og:title" content="{{title}}" />
|
40
|
+
<meta property="og:locale" content="en_US" />
|
41
|
+
<meta property="og:description" content="{{description}}" />
|
42
|
+
<meta property="og:url" content="{{ page.url | absolute_url }}" />
|
43
|
+
<meta property="og:site_name" content="Linaro" />
|
44
|
+
<meta property="og:image" content="{{image}}" />
|
45
|
+
<!--Twitter Cards-->
|
46
|
+
<meta name="twitter:card" content="summary_large_image" />
|
47
|
+
<meta property="twitter:image" content="{{image}}" />
|
48
|
+
<meta property="twitter:title" content="{{title}}" />
|
49
|
+
{% if site.twitter_username %}
|
50
|
+
<meta name="twitter:site" content="@{{site.twitter_username}}" />
|
51
|
+
{% endif %}
|
52
|
+
{% if site.google_analytics.enabled %}
|
53
|
+
<meta name="analytics_code" content="{{site.google_analytics.code}}">
|
54
|
+
{% endif %}
|
55
|
+
{% if page.keywords %}
|
56
|
+
<meta name="keywords" content="{{page.keywords}}">
|
57
|
+
{% endif %}
|
58
|
+
{% include_cached components/schema.html %}
|
59
|
+
{% if page.url != "/" and site.breadcrumb_schema %}
|
60
|
+
<!--Breadcrumb Schema-->
|
61
|
+
{% capture breadcrumb_schema %}{"@context": "https://schema.org","@type": "BreadcrumbList","itemListElement":[{% assign crumbs = page.url | remove:'/index.html' | split: '/' %}{% assign breadcrumb_path = "/" %}{% for crumb in crumbs offset: 1 %}{% assign crumb_limit = forloop.index | plus: 1 %}{% capture breadcrumb_path %}{{breadcrumb_path}}{{crumb}}/{% endcapture%}{"@type": "ListItem","position": {{forloop.index}},"item":{"@id": "{{breadcrumb_path | absolute_url}}","name": "{% assign page_data = site.pages | where: "url", breadcrumb_path | first %}{{page_data.title}}"}}{% unless forloop.last %},{% endunless %}{% endfor %}]}{% endcapture %}
|
62
|
+
<script type="application/ld+json">{{breadcrumb_schema | strip_newlines | strip }}</script>
|
63
|
+
{% endif %}
|
64
|
+
{% if page.schema %}<script type="application/ld+json">{{page.schema | jsonify }}</script>{% endif %}
|
65
|
+
</head>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!-- Start HTTP/2 Preload of Resources-->
|
2
|
+
{% comment %}
|
3
|
+
Preload CSS Packages
|
4
|
+
{% endcomment %}
|
5
|
+
{% if page.css_bundle %}
|
6
|
+
{% capture css-package %}/assets/css/main-{{page.css_bundle}}.css{% endcapture %}
|
7
|
+
{% elsif layout.css_bundle %}
|
8
|
+
{% capture css-package %}/assets/css/main-{{layout.css_bundle}}.css{% endcapture %}
|
9
|
+
{% else %}
|
10
|
+
{% capture css-package %}/assets/css/main.css{% endcapture %}
|
11
|
+
{% endif %}
|
12
|
+
<link rel="preload" as="style" href="{{ css-package | relative_url }}">
|
13
|
+
|
14
|
+
{% comment %}
|
15
|
+
TODO Preload JS Packages
|
16
|
+
{% endcomment %}
|
17
|
+
{% comment %}
|
18
|
+
Site Wide Http2 resources
|
19
|
+
{% endcomment %}
|
20
|
+
{% if site.http2_resources %}
|
21
|
+
{% for resource in site.http2_resources %}
|
22
|
+
{% if resource.href_list %}
|
23
|
+
{% for href in resource.href_list %}
|
24
|
+
<link rel="{{resource.rel}}" {% if resource.as %}as="{{resource.as}}"{% endif %} href="{{href}}" {% if resource.type %}type="{{resource.type}}"
|
25
|
+
{% endif %} {% if resource.crossorigin %}crossorigin{% endif %}>
|
26
|
+
{% endfor %}
|
27
|
+
{% else %}
|
28
|
+
<link rel="{{resource.rel}}" {% if resource.as %}as="{{resource.as}}"{% endif %} href="{{resource.href}}" {% if resource.type %}type="{{resource.type}}"{% endif %}
|
29
|
+
{% if resource.crossorigin %}crossorigin{% endif %}>
|
30
|
+
{% endif %}
|
31
|
+
{% endfor %}
|
32
|
+
{% endif %}
|
33
|
+
{% comment %}
|
34
|
+
Jumbotron Background Image
|
35
|
+
{% endcomment %}
|
36
|
+
{% if page.jumbotron.background-image %}
|
37
|
+
{% for resource in page.http2_resources %}
|
38
|
+
<link rel="preload" as="image" href="{{page.jumbotron.background-image}}">
|
39
|
+
{% endfor %}
|
40
|
+
{% endif %}
|
41
|
+
{% comment %}
|
42
|
+
Jumbotron Video
|
43
|
+
{% endcomment %}
|
44
|
+
{% if page.jumbotron.video.poster %}
|
45
|
+
<link rel="preload" as="image" href="{{page.jumbotron.video.poster}}">
|
46
|
+
{% endif %}
|
47
|
+
{% if page.jumbotron.video.source.mp4 %}
|
48
|
+
<link rel="preload" as="video" href="{{page.jumbotron.video.source.mp4}}">
|
49
|
+
{% endif %}
|
50
|
+
{% comment %}
|
51
|
+
Blog Images
|
52
|
+
{% endcomment %}
|
53
|
+
{% if page.image.featured %}
|
54
|
+
{% if page.image.path %}
|
55
|
+
<link rel="preload" as="image" href="{{page.image.path}}">
|
56
|
+
{% endif %}
|
57
|
+
{% endif %}
|