jumbo-jekyll-theme 5.6.9.4 → 5.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +202 -21
- data/README.md +10 -10
- data/_config.yml +146 -213
- data/_data/footer.yml +31 -33
- data/_data/nav.yml +73 -17
- data/_data/picture.yml +136 -0
- data/_data/settings.yml +97 -103
- data/_data/tags.yml +11 -11
- 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_blog_posts.html +126 -0
- data/_includes/{disqus-comments.html → blog/disqus_comments.html} +0 -0
- data/_includes/{latest-posts.html → blog/latest_posts.html} +0 -0
- data/_includes/blog/pagination.html +37 -0
- data/_includes/{post-series.html → blog/post_series.html} +0 -0
- data/_includes/blog/post_sidebar.html +81 -0
- data/_includes/{post-tags.html → blog/post_tags.html} +0 -0
- data/_includes/{read_time.html → blog/read_time.html} +0 -0
- data/_includes/components/breadcrumb.html +40 -0
- data/_includes/{carousel-header.html → components/carousel_header.html} +0 -0
- data/_includes/components/cookie_manager.html +80 -0
- data/_includes/components/css.html +8 -0
- data/_includes/{github-edit.html → components/github_edit.html} +0 -0
- data/_includes/components/head.html +60 -0
- data/_includes/components/http2.html +57 -0
- data/_includes/components/javascript.html +10 -0
- data/_includes/components/jumbotron.html +80 -0
- data/_includes/{linaro-404.html → components/linaro_404.html} +16 -19
- data/_includes/{schema.html → components/schema.html} +43 -43
- data/_includes/{sidebar.html → components/sidebar.html} +0 -0
- data/_includes/examples/custom_include.html +10 -0
- data/_includes/{custom_include_row.html → examples/custom_include_row.html} +562 -562
- data/_includes/flow/blocks.html +44 -0
- data/_includes/{core → flow}/button.html +5 -5
- data/_includes/flow/buttons.html +5 -0
- data/_includes/{core → flow}/call-to-action-banner.html +0 -0
- data/_includes/flow/container_row.html +11 -0
- data/_includes/flow/feature_block.html +41 -0
- data/_includes/flow/flow_inner.html +25 -0
- data/_includes/{core → flow}/full_width_row.html +5 -5
- data/_includes/{core → flow}/members-section.html +24 -32
- data/_includes/{core → flow}/slider.html +25 -33
- 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 +73 -0
- data/_includes/image.html +5 -6
- data/_includes/js_bundles/app.html +5 -0
- data/_includes/js_bundles/vendor.html +13 -0
- 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 → social_media_icons.html} +0 -0
- data/_includes/youtube.html +74 -6
- data/_layouts/author.html +62 -6
- data/_layouts/base.html +6 -8
- data/_layouts/default.html +3 -3
- data/_layouts/error.html +25 -25
- data/_layouts/flow.html +33 -36
- data/_layouts/post-index.html +17 -16
- data/_layouts/post.html +55 -39
- data/_sass/app/blog.scss +0 -22
- data/_sass/app/overrides.scss +121 -66
- data/_sass/app/search.scss +51 -51
- data/_sass/blog.scss +1 -1
- 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 +952 -932
- 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 -20
- data/_sass/core/blog.scss +126 -426
- data/_sass/core/breadcrumb.scss +16 -96
- data/_sass/core/carousel-header.scss +91 -91
- data/_sass/core/carousel.scss +7 -8
- data/_sass/core/cookies.scss +194 -0
- data/_sass/core/error.scss +190 -190
- data/_sass/core/flow.scss +71 -186
- data/_sass/core/fontello.scss +156 -0
- data/_sass/core/footer.scss +69 -142
- data/_sass/core/jumbotron.scss +90 -279
- data/_sass/core/navbar.scss +233 -0
- data/_sass/core/normalize.scss +357 -357
- data/_sass/core/theme.scss +40 -918
- data/assets/css/main-blog.scss +15 -14
- data/assets/css/main-error.scss +14 -13
- data/assets/css/main-search.scss +4 -3
- data/assets/css/main.scss +12 -11
- data/assets/fonts/fontello/fontello.eot +0 -0
- data/assets/fonts/fontello/fontello.svg +82 -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/clipboard.svg +3 -0
- data/assets/js/app/main.js +298 -261
- data/assets/js/app/scroll-to-anchors.js +10 -9
- data/assets/js/app/sticky-tab-bar.js +67 -69
- 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 +5 -2376
- data/assets/js/vendor/fess-ss.min.js +24 -24
- data/assets/js/vendor/jquery.cookie.js +120 -0
- data/assets/js/vendor/jquery.ihavecookies.js +263 -0
- data/assets/js/vendor/jquery.slim.js +8842 -0
- data/robots.txt +9 -9
- metadata +157 -377
- data/_data/example-carousel-data-source.yml +0 -36
- data/_data/members-section-example.yml +0 -0
- data/_data/universal-nav.yml +0 -7
- data/_includes/authors-posts.html +0 -18
- data/_includes/blog-filler-element.html +0 -24
- data/_includes/breadcrumb.html +0 -97
- data/_includes/core/blocks.html +0 -30
- data/_includes/core/buttons.html +0 -5
- data/_includes/core/container_row.html +0 -7
- data/_includes/core/feature_block.html +0 -43
- data/_includes/core/slider_row.html +0 -3
- data/_includes/core/text.html +0 -3
- data/_includes/core/title.html +0 -3
- data/_includes/core/youtube_video_embed.html +0 -11
- data/_includes/css.html +0 -9
- data/_includes/custom_include.html +0 -13
- data/_includes/display-blog-posts.html +0 -154
- data/_includes/flow_inner.html +0 -19
- data/_includes/footer.html +0 -68
- data/_includes/google-analytics.html +0 -16
- data/_includes/head.html +0 -19
- data/_includes/http2.html +0 -102
- data/_includes/javascript.html +0 -10
- data/_includes/jumbotron.html +0 -115
- data/_includes/linaro-svg.html +0 -1
- data/_includes/nav.html +0 -153
- data/_includes/pagination.html +0 -39
- data/_includes/post-sidebar.html +0 -182
- data/_includes/responsive-image.html +0 -6
- data/_includes/thumb-image.html +0 -31
- data/_includes/thumb.html +0 -2
- data/_includes/thumbnail_image.html +0 -10
- data/_includes/universal-nav.html +0 -30
- data/_layouts/jumbotron-container.html +0 -19
- data/_layouts/jumbotron.html +0 -12
- 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/app-package.scss +0 -11
- data/_sass/app/contact.scss +0 -3
- data/_sass/app/custom.scss +0 -1
- 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 -39
- data/_sass/core/critical.scss +0 -0
- data/_sass/core/custom.scss +0 -3
- data/_sass/core/fa.scss +0 -2336
- data/_sass/core/flipclock.scss +0 -434
- data/_sass/core/fly.scss +0 -10
- data/_sass/core/font-awesome.min.scss +0 -4
- data/_sass/core/fonts.scss +0 -3
- data/_sass/core/forms.scss +0 -3
- data/_sass/core/homepage.scss +0 -19
- data/_sass/core/lightbox.scss +0 -212
- data/_sass/core/nav.scss +0 -1015
- data/_sass/core/social-media-icons.scss +0 -67
- data/_sass/core/tables.scss +0 -175
- data/_sass/core/triangle-divider.scss +0 -27
- data/_sass/core/universal-nav.scss +0 -167
- data/_sass/core/youtube-lazy.scss +0 -51
- data/_sass/core/youtube.scss +0 -65
- data/_sass/home.scss +0 -2
- 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/Linaro-Logo_light.png +0 -0
- data/assets/images/content/background-image1.jpg +0 -0
- data/assets/images/content/background-image2.png +0 -0
- data/assets/images/content/background-image3.jpg +0 -0
- data/assets/images/content/js-logo.png +0 -0
- data/assets/js/app/blog-comments.js +0 -50
- data/assets/js/app/facebook.js +0 -8
- data/assets/js/app/fly.js +0 -45
- data/assets/js/app/search.js +0 -29
- data/assets/js/app/youtube-lazy.js +0 -25
- data/assets/js/pacakge-search.js +0 -9
- data/assets/js/package-blog.js +0 -12
- data/assets/js/package-extended.js +0 -14
- data/assets/js/package-home.js +0 -14
- data/assets/js/package-main.js +0 -13
- data/assets/js/package-search.js +0 -8
- data/assets/js/vendor/cookieconsent.js +0 -1495
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
- image: /assets/images/content/background-image1.jpg
|
|
2
|
-
alt: Background Image
|
|
3
|
-
title: Background Image 1
|
|
4
|
-
- image: /assets/images/content/background-image1.jpg
|
|
5
|
-
alt: Background Image
|
|
6
|
-
title: Background Image 1
|
|
7
|
-
- image: /assets/images/content/background-image1.jpg
|
|
8
|
-
alt: Background Image
|
|
9
|
-
title: Background Image 1
|
|
10
|
-
- image: /assets/images/content/background-image1.jpg
|
|
11
|
-
alt: Background Image
|
|
12
|
-
title: Background Image 1
|
|
13
|
-
- image: /assets/images/content/background-image1.jpg
|
|
14
|
-
alt: Background Image
|
|
15
|
-
title: Background Image 1
|
|
16
|
-
- image: /assets/images/content/background-image1.jpg
|
|
17
|
-
alt: Background Image
|
|
18
|
-
title: Background Image 1
|
|
19
|
-
- image: /assets/images/content/background-image1.jpg
|
|
20
|
-
alt: Background Image
|
|
21
|
-
title: Background Image 1
|
|
22
|
-
- image: /assets/images/content/background-image1.jpg
|
|
23
|
-
alt: Background Image
|
|
24
|
-
title: Background Image 1
|
|
25
|
-
- image: /assets/images/content/background-image1.jpg
|
|
26
|
-
alt: Background Image
|
|
27
|
-
title: Background Image 1
|
|
28
|
-
- image: /assets/images/content/background-image1.jpg
|
|
29
|
-
alt: Background Image
|
|
30
|
-
title: Background Image 1
|
|
31
|
-
- image: /assets/images/content/background-image1.jpg
|
|
32
|
-
alt: Background Image
|
|
33
|
-
title: Background Image 1
|
|
34
|
-
- image: /assets/images/content/background-image1.jpg
|
|
35
|
-
alt: Background Image
|
|
36
|
-
title: Background Image 1
|
|
File without changes
|
data/_data/universal-nav.yml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{% for post in site.posts %}
|
|
2
|
-
{% if post.author == page.username %}
|
|
3
|
-
<div class="row blog_post">
|
|
4
|
-
<div class="col-xs-12 post_title">
|
|
5
|
-
<a href="{{post.url}}"><h3>{{ post.title}}</h3></a>
|
|
6
|
-
<em>{{ post.date | date: "%A, %B %-d, %Y"}}</em><br />
|
|
7
|
-
<p class="post_excerpt">
|
|
8
|
-
{{ post.content | strip_html | truncatewords:30 }}
|
|
9
|
-
</p>
|
|
10
|
-
<p>
|
|
11
|
-
<a href="{{post.url}}">
|
|
12
|
-
<button class="btn blog-read-more-btn">Read More</button>
|
|
13
|
-
</a>
|
|
14
|
-
</p>
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
17
|
-
{% endif %}
|
|
18
|
-
{% endfor %}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<div class="col-sm-4 col-xs-12 blog-post-item-col no-padding">
|
|
2
|
-
<div class="blog-post-item">
|
|
3
|
-
<a href="/">
|
|
4
|
-
<div class="blog-post-item-content">
|
|
5
|
-
<ul class="list-group">
|
|
6
|
-
<li class="list-group-item">
|
|
7
|
-
<span class="badge">5</span>
|
|
8
|
-
Item 1
|
|
9
|
-
</li>
|
|
10
|
-
<li class="list-group-item">
|
|
11
|
-
<span class="badge">10</span>
|
|
12
|
-
Item 2
|
|
13
|
-
</li>
|
|
14
|
-
<li class="list-group-item">
|
|
15
|
-
<span class="badge">15</span>
|
|
16
|
-
Item 3
|
|
17
|
-
</li>
|
|
18
|
-
</ul>
|
|
19
|
-
|
|
20
|
-
</div>
|
|
21
|
-
</a>
|
|
22
|
-
</div>
|
|
23
|
-
|
|
24
|
-
</div>
|
data/_includes/breadcrumb.html
DELETED
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
<div class="row breadcrumb-container"
|
|
2
|
-
{% if site.data.settings.breadcrumb.image %}
|
|
3
|
-
style="background-image: url('{% asset_path '{{site.data.settings.breadcrumb.image}}' %}');
|
|
4
|
-
"
|
|
5
|
-
{% endif %}"> <!--- Row Start ---->
|
|
6
|
-
<div class="container breadcrumb-inner-container"><!--- Container Start ---->
|
|
7
|
-
<h1>
|
|
8
|
-
{% if page.title %}
|
|
9
|
-
{{ page.title }}
|
|
10
|
-
{% else %}
|
|
11
|
-
{{page.url | replace: "/", "" | replace: "-","" | capitalize }}
|
|
12
|
-
{% endif %}
|
|
13
|
-
</h1>
|
|
14
|
-
<ol itemscope itemtype="http://schema.org/BreadcrumbList" class="breadcrumb">
|
|
15
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
16
|
-
<a itemprop="item" href="/">
|
|
17
|
-
<span itemprop="name">{{site.title}}</span>
|
|
18
|
-
</a>
|
|
19
|
-
<meta itemprop="position" content="1" />
|
|
20
|
-
</li>
|
|
21
|
-
{% assign page-url = page.url | split: "/" %}
|
|
22
|
-
{% assign iterator = 2 %}
|
|
23
|
-
{% assign breadcrumb-path = "/" %}
|
|
24
|
-
{% for section in page-url %}
|
|
25
|
-
{% if forloop.last == false %}
|
|
26
|
-
{% if section == "" or section == "index.html" %}
|
|
27
|
-
{% continue %}
|
|
28
|
-
{% elsif section == "product" %}
|
|
29
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
|
30
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
31
|
-
<a itemprop="item" href="/products/">
|
|
32
|
-
<span itemprop="name">{{section | truncate: 20 | capitalize }}s</span>
|
|
33
|
-
</a>
|
|
34
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
35
|
-
</li>
|
|
36
|
-
{% elsif section contains ".md.html" %}
|
|
37
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}{% endcapture%}
|
|
38
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
39
|
-
<a itemprop="item" href="{{breadcrumb-path}}">
|
|
40
|
-
<span itemprop="name">{{section | replace: ".html", "" | truncate: 20 | capitalize }}</span>
|
|
41
|
-
</a>
|
|
42
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
43
|
-
</li>
|
|
44
|
-
{% elsif section == "ConsumerEdition" %}
|
|
45
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
|
46
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
47
|
-
<a itemprop="item" href="{{breadcrumb-path}}">
|
|
48
|
-
<span itemprop="name">Consumer Edition</span>
|
|
49
|
-
</a>
|
|
50
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
51
|
-
</li>
|
|
52
|
-
{% elsif section == "EnterpriseEdition" %}
|
|
53
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
|
54
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
55
|
-
<a itemprop="item" href="{{breadcrumb-path}}">
|
|
56
|
-
<span itemprop="name">Enterprise Edition</span>
|
|
57
|
-
</a>
|
|
58
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
59
|
-
</li>
|
|
60
|
-
{% elsif section == "IoTEdition" %}
|
|
61
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
|
62
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
63
|
-
<a itemprop="item" href="{{breadcrumb-path}}">
|
|
64
|
-
<span itemprop="name">IoT Edition</span>
|
|
65
|
-
</a>
|
|
66
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
67
|
-
</li>
|
|
68
|
-
{% elsif section == "MezzanineProducts" %}
|
|
69
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
|
70
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
71
|
-
<a itemprop="item" href="{{breadcrumb-path}}">
|
|
72
|
-
<span itemprop="name">Mezzanine Products</span>
|
|
73
|
-
</a>
|
|
74
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
75
|
-
</li>
|
|
76
|
-
{% else %}
|
|
77
|
-
{% capture breadcrumb-path %}{{breadcrumb-path}}{{section}}/{% endcapture%}
|
|
78
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
|
79
|
-
<a itemprop="item" href="{{breadcrumb-path}}">
|
|
80
|
-
<span itemprop="name">{{section | truncate: 20 | capitalize }}</span>
|
|
81
|
-
</a>
|
|
82
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
83
|
-
</li>
|
|
84
|
-
{% endif %}
|
|
85
|
-
{% else %}
|
|
86
|
-
{% if site.data.settings.breadcrumb.page-titles %}
|
|
87
|
-
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="active">
|
|
88
|
-
<span itemprop="name">{% if page.title %}{{page.title}}{% else %}{{ page.title }}{% endif %}</span>
|
|
89
|
-
<meta itemprop="position" content="{{iterator}}" />
|
|
90
|
-
</li>
|
|
91
|
-
{% endif %}
|
|
92
|
-
{% endif %}
|
|
93
|
-
{% assign iterator = iterator | plus: 1 %}
|
|
94
|
-
{% endfor %}
|
|
95
|
-
</ol>
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
data/_includes/core/blocks.html
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<div class="col-xs-12">
|
|
2
|
-
<div class="row equal">
|
|
3
|
-
{% for block in include.object.block_section_content.blocks %}
|
|
4
|
-
<div class="col-xs-12 col-sm-{{include.object.block_section_content.item_width}} block {% if include.object.style %}{{include.object.style}}{% endif %}">
|
|
5
|
-
{% if block.url %}<a href="{{block.url}}">{% endif %}
|
|
6
|
-
<div class="block-inner {% if block.background_image %}background_image_block{% endif %}" {% if block.background_image %}style="background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url({{block.background_image}});"{% endif %}>
|
|
7
|
-
{% if block.inner_image %}
|
|
8
|
-
{% if block.inner_image.icon %}
|
|
9
|
-
<i class="block_image_icon {{block.inner_image.icon_name}}"></i>
|
|
10
|
-
{% else %}
|
|
11
|
-
<img class="img-responsive lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
12
|
-
data-src="{{block.inner_image.path}}"
|
|
13
|
-
alt="{% if block.inner_image.alt %}{{block.inner_image.alt}}{% else %}Content block image{% endif %}"/>
|
|
14
|
-
{% endif %}
|
|
15
|
-
{% endif %}
|
|
16
|
-
{% if block.title %}
|
|
17
|
-
{% include core/title.html object=block.title %}
|
|
18
|
-
{% endif %}
|
|
19
|
-
{% if block.text_content %}
|
|
20
|
-
{% include core/text.html object=block %}
|
|
21
|
-
{% endif %}
|
|
22
|
-
{% if block.buttons %}
|
|
23
|
-
{% include core/buttons.html object=block.buttons %}
|
|
24
|
-
{% endif %}
|
|
25
|
-
</div>
|
|
26
|
-
{% if block.url %}</a>{% endif%}
|
|
27
|
-
</div>
|
|
28
|
-
{% endfor %}
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
data/_includes/core/buttons.html
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<div class="row {% if include.object.style %}{{include.object.style}}{% endif %}
|
|
2
|
-
{% if include.object.background_image %}background_image_row overlay{% endif %}"
|
|
3
|
-
{% if include.object.background_image %}style="background-image: url({{include.object.background_image}})"{% endif %}>
|
|
4
|
-
<div class="container">
|
|
5
|
-
{% include flow_inner.html sections=include.object.sections %}
|
|
6
|
-
</div>
|
|
7
|
-
</div>
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
<div class="col-xs-12 feature_block">
|
|
2
|
-
<div class="row">
|
|
3
|
-
<div class="col-xs-12 col-sm-7 block__image {% if include.object.position == "right" %}col-sm-push-5{% endif %}">
|
|
4
|
-
{% if include.object.type == "image" %}
|
|
5
|
-
{% assign image_path = include.object.image_content_path | remove_first: '/' %}
|
|
6
|
-
{% assign full_path = include.object.image_content_path %}
|
|
7
|
-
{% responsive_image_block %}
|
|
8
|
-
template: _includes/thumbnail_image.html
|
|
9
|
-
path: {{ image_path }}
|
|
10
|
-
fullpath: {{ full_path }}
|
|
11
|
-
{% if member.alt %}
|
|
12
|
-
title: {{ member.alt | slugify: "ascii"}}
|
|
13
|
-
alt: {{ member.alt | slugify: "ascii"}}
|
|
14
|
-
{% endif %}
|
|
15
|
-
{% endresponsive_image_block %}
|
|
16
|
-
{% elsif include.object.type == "slider" %}
|
|
17
|
-
{% include core/slider.html object=include.object.slider_content %}
|
|
18
|
-
{% elsif include.object.type == "youtube_video" %}
|
|
19
|
-
{% include core/youtube_video_embed.html object=include.object.video_content_url %}
|
|
20
|
-
{% else %}
|
|
21
|
-
<p>Please verify the feature_block content "type" is correct</p>
|
|
22
|
-
{% endif %}
|
|
23
|
-
</div>
|
|
24
|
-
<div class="col-xs-12 col-sm-5 block__text {% if include.object.position == "right" %}col-sm-pull-7{% endif %}">
|
|
25
|
-
{% if include.object.title %}
|
|
26
|
-
<h2>{{include.object.title}}</h2>
|
|
27
|
-
{% endif %}
|
|
28
|
-
{% if include.object.highlight-text %}
|
|
29
|
-
<div class="font-weight-bold">
|
|
30
|
-
{{include.object.highlight-text | markdownify }}
|
|
31
|
-
</div>
|
|
32
|
-
{% endif %}
|
|
33
|
-
{% if include.object.text == "page_content" %}
|
|
34
|
-
{{page.content | markdownify }}
|
|
35
|
-
{% else %}
|
|
36
|
-
{{include.object.text | markdownify}}
|
|
37
|
-
{% endif %}
|
|
38
|
-
{% if include.object.buttons %}
|
|
39
|
-
{% include core/buttons.html object=include.object.buttons %}
|
|
40
|
-
{% endif %}
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
data/_includes/core/text.html
DELETED
data/_includes/core/title.html
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{% if include.object contains "https://youtu.be/" %}
|
|
2
|
-
{% assign media_url = include.object | replace: 'https://youtu.be/','https://youtube.com/embed/'%}
|
|
3
|
-
{% elsif include.object contains "https://www.youtube.com/watch?v=" %}
|
|
4
|
-
{% assign media_url = include.object | replace: 'https://www.youtube.com/watch?v=','https://youtube.com/embed/'%}
|
|
5
|
-
{% else %}
|
|
6
|
-
{% assign media_url = include.object %}
|
|
7
|
-
{% endif %}
|
|
8
|
-
|
|
9
|
-
<div class="embed-responsive embed-responsive-16by9">
|
|
10
|
-
<iframe src='about:blank' allowFullScreen="allowFullScreen" frameBorder="0" class="lazyload embed-responsive-item" data-src="{{media_url}}"></iframe>
|
|
11
|
-
</div>
|
data/_includes/css.html
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
{% if include.pageCSS %}
|
|
2
|
-
{% capture css-package %}/assets/css/main-{{include.pageCSS}}.css{% endcapture %}
|
|
3
|
-
<link rel="stylesheet" href="{{ css-package | relative_url }}">
|
|
4
|
-
{% elsif include.layoutCSS %}
|
|
5
|
-
{% capture css-package %}/assets/css/main-{{include.layoutCSS}}.css{% endcapture %}
|
|
6
|
-
<link rel="stylesheet" href="{{ css-package | relative_url }}">
|
|
7
|
-
{% else %}
|
|
8
|
-
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
|
|
9
|
-
{% endif %}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<form action="" method="POST" role="form">
|
|
3
|
-
<legend>Form title</legend>
|
|
4
|
-
|
|
5
|
-
<div class="form-group">
|
|
6
|
-
<label for="">label</label>
|
|
7
|
-
<input type="text" class="form-control" id="" placeholder="Input field">
|
|
8
|
-
</div>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<button type="submit" class="btn btn-primary">Submit</button>
|
|
13
|
-
</form>
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
{% if paginator.total_posts > 0 %}
|
|
2
|
-
<div class="row blog-section">
|
|
3
|
-
{% for post in paginator.posts %}
|
|
4
|
-
{% assign timeframe = 604800 %}
|
|
5
|
-
{% assign post_in_seconds = post.date | date: "%s" | plus: 0 %}
|
|
6
|
-
{% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
|
|
7
|
-
|
|
8
|
-
{% if forloop.first and paginator.page == 1 %}
|
|
9
|
-
<style>
|
|
10
|
-
@media(min-width: 1000px){
|
|
11
|
-
.blog-post-item-col:nth-child(3n+2) > .blog-post-item {
|
|
12
|
-
margin-right:0px !important;
|
|
13
|
-
margin-left:0px !important;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
</style>
|
|
17
|
-
<div class="featured-post-row">
|
|
18
|
-
<div class="col-xs-12 col-sm-7 col-sm-push-5 latest-featured-post">
|
|
19
|
-
<a href="{{post.url}}">
|
|
20
|
-
{% assign image_path = "" %}
|
|
21
|
-
{% if post.image.thumb %}
|
|
22
|
-
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
23
|
-
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
24
|
-
{% elsif post.image.name %}
|
|
25
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
26
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
27
|
-
{% elsif post.image.path %}
|
|
28
|
-
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
|
29
|
-
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
|
30
|
-
{% elsif post.image == site.data.settings.social_share_image %}
|
|
31
|
-
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
|
32
|
-
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
|
33
|
-
{% elsif post.image %}
|
|
34
|
-
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
|
35
|
-
{% capture full_path %}{{post.image}}{% endcapture %}
|
|
36
|
-
{% else %}
|
|
37
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
38
|
-
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
|
39
|
-
{% endif %}
|
|
40
|
-
{% if image_path != "" %}
|
|
41
|
-
{% responsive_image_block %}
|
|
42
|
-
template: _includes/thumbnail_image.html
|
|
43
|
-
path: {{ image_path }}
|
|
44
|
-
fullpath: {{ full_path }}
|
|
45
|
-
{% if post.title %}
|
|
46
|
-
title: {{ post.title | slugify: "ascii"}}
|
|
47
|
-
alt: {{ post.title | slugify: "ascii"}}
|
|
48
|
-
{% endif %}
|
|
49
|
-
{% endresponsive_image_block %}
|
|
50
|
-
{% endif %}
|
|
51
|
-
</a>
|
|
52
|
-
</div>
|
|
53
|
-
<div class="col-xs-12 col-sm-5 col-sm-pull-7 latest-featured-post-content">
|
|
54
|
-
<a href="{{post.url}}">
|
|
55
|
-
<div class="post-info">
|
|
56
|
-
<span class="post-cat">{{post.categories | first | capitalize }}</span>
|
|
57
|
-
<h3>{{post.title}}</h3>
|
|
58
|
-
<p class="excerpt">
|
|
59
|
-
{% if post.description %}
|
|
60
|
-
{{post.description}}
|
|
61
|
-
{% else %}
|
|
62
|
-
{{ post.content | strip_html | truncatewords:30 }}
|
|
63
|
-
{% endif %}
|
|
64
|
-
</p>
|
|
65
|
-
<a href="{{post.url}}" class="btn btn-primary">
|
|
66
|
-
Read Post
|
|
67
|
-
</a>
|
|
68
|
-
</div>
|
|
69
|
-
</a>
|
|
70
|
-
</div>
|
|
71
|
-
</div>
|
|
72
|
-
{% else %}
|
|
73
|
-
|
|
74
|
-
{% comment %}
|
|
75
|
-
Blog Filler Element - This is needed due to the layout of the blog. If not included then there will be an empty col on the first blog page.
|
|
76
|
-
{% endcomment %}
|
|
77
|
-
{% if forloop.index == 4 and paginator.page == 1 %}
|
|
78
|
-
{% if site.data.settings.blog.filler-element %}
|
|
79
|
-
{% include {{site.data.settings.blog.filler-element}} %}
|
|
80
|
-
{% endif %}
|
|
81
|
-
{% endif %}
|
|
82
|
-
|
|
83
|
-
<div class="col-sm-4 col-xs-12 blog-post-item-col no-padding">
|
|
84
|
-
<div class="blog-post-item">
|
|
85
|
-
<a href="{{post.url}}">
|
|
86
|
-
<div class="blog-featured-image {% if post.image == site.data.settings.social_share_image %}using-placeholder{% endif %}">
|
|
87
|
-
|
|
88
|
-
{% assign image_path = "" %}
|
|
89
|
-
{% if post.image.thumb %}
|
|
90
|
-
{% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
91
|
-
{% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %}
|
|
92
|
-
{% elsif post.image.name %}
|
|
93
|
-
{% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
94
|
-
{% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %}
|
|
95
|
-
{% elsif post.image.path %}
|
|
96
|
-
{% capture image_path %}{{post.image.path | remove_first: "/" }}{% endcapture %}
|
|
97
|
-
{% capture full_path %}{{post.image.path}}{% endcapture %}
|
|
98
|
-
{% elsif post.image == site.data.settings.social_share_image %}
|
|
99
|
-
{% capture image_path %}{{site.data.settings.placeholder | remove_first: "/" }}{% endcapture %}
|
|
100
|
-
{% capture full_path %}{{site.data.settings.placeholder}}{% endcapture %}
|
|
101
|
-
{% assign using_placeholder = "true" %}
|
|
102
|
-
{% elsif post.image %}
|
|
103
|
-
{% capture image_path %}{{post.image | remove_first: "/" }}{% endcapture %}
|
|
104
|
-
{% capture full_path %}{{post.image}}{% endcapture %}
|
|
105
|
-
{% else %}
|
|
106
|
-
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
107
|
-
data-src="{{site.data.settings.placeholder}}" alt="{{post.title}}" class="center-block img-responsive lazyload"/>
|
|
108
|
-
{% endif %}
|
|
109
|
-
|
|
110
|
-
{% if image_path != "" %}
|
|
111
|
-
{% responsive_image_block %}
|
|
112
|
-
template: _includes/thumbnail_image.html
|
|
113
|
-
path: {{ image_path }}
|
|
114
|
-
fullpath: {{ full_path }}
|
|
115
|
-
{% if post.title %}
|
|
116
|
-
title: {{ post.title | slugify: "ascii"}}
|
|
117
|
-
alt: {{ post.title | slugify: "ascii"}}
|
|
118
|
-
{% endif %}
|
|
119
|
-
{% endresponsive_image_block %}
|
|
120
|
-
{% endif %}
|
|
121
|
-
<div class="read-article">
|
|
122
|
-
<i class="fa fa-eye"></i> Read Article
|
|
123
|
-
</div>
|
|
124
|
-
</div>
|
|
125
|
-
<div class="blog-post-item-content">
|
|
126
|
-
<div class="post-cat">{{post.categories | first | capitalize }}</div>
|
|
127
|
-
{% include read_time.html content=post.content %}
|
|
128
|
-
<h3>{{ post.title}}</h3>
|
|
129
|
-
<small>{{ post.date | date: "%A, %B %-d, %Y"}}</small>
|
|
130
|
-
<br />
|
|
131
|
-
<p class="post_excerpt">
|
|
132
|
-
{{ post.content | strip_html | truncatewords:30 }}
|
|
133
|
-
</p>
|
|
134
|
-
<div class="author-section">
|
|
135
|
-
{% assign author = site.authors | where: "username", post.author | first %}
|
|
136
|
-
{% assign author-url = author.url %}
|
|
137
|
-
<div class="blog-author-image lazyload" data-bg="{% if author.image_path %}{{author.image_path}}{% else %}{{site.data.settings.blog.avatar_placeholder}}{% endif %}"></div>
|
|
138
|
-
<small class="blog-author">
|
|
139
|
-
<em>{% if author.name %}{{author.name}}{% else %}{{post.author}}{% endif %}</em>
|
|
140
|
-
</small>
|
|
141
|
-
</div>
|
|
142
|
-
</div>
|
|
143
|
-
</a>
|
|
144
|
-
</div>
|
|
145
|
-
|
|
146
|
-
</div>
|
|
147
|
-
{% endif %}
|
|
148
|
-
{% endfor %}
|
|
149
|
-
</div>
|
|
150
|
-
{% else %}
|
|
151
|
-
<p>
|
|
152
|
-
No posts of this category were found!
|
|
153
|
-
</p>
|
|
154
|
-
{% endif %}
|