About
53 | {{author.content | markdownify }} 54 |55 | {% endif %} 56 | 57 | {% include blog/authors_posts.html %} 58 |
├── _sass ├── app │ ├── blog.scss │ ├── custom.scss │ ├── search.scss │ └── overrides.scss ├── blog.scss ├── bootstrap │ ├── utilities │ │ ├── _clearfix.scss │ │ ├── _screenreaders.scss │ │ ├── _visibility.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _float.scss │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _position.scss │ │ ├── _embed.scss │ │ ├── _display.scss │ │ ├── _spacing.scss │ │ ├── _borders.scss │ │ ├── _text.scss │ │ └── _flex.scss │ ├── _media.scss │ ├── mixins │ │ ├── _box-shadow.scss │ │ ├── _clearfix.scss │ │ ├── _size.scss │ │ ├── _visibility.scss │ │ ├── _lists.scss │ │ ├── _text-truncate.scss │ │ ├── _resize.scss │ │ ├── _float.scss │ │ ├── _badge.scss │ │ ├── _alert.scss │ │ ├── _nav-divider.scss │ │ ├── _text-emphasis.scss │ │ ├── _transition.scss │ │ ├── _text-hide.scss │ │ ├── _list-group.scss │ │ ├── _pagination.scss │ │ ├── _background-variant.scss │ │ ├── _reset-text.scss │ │ ├── _table-row.scss │ │ ├── _border-radius.scss │ │ ├── _screen-reader.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _caret.scss │ │ ├── _grid.scss │ │ ├── _grid-framework.scss │ │ ├── _gradients.scss │ │ └── _buttons.scss │ ├── _transitions.scss │ ├── _jumbotron.scss │ ├── bootstrap-reboot.scss │ ├── _utilities.scss │ ├── _root.scss │ ├── bootstrap-grid.scss │ ├── _progress.scss │ ├── _close.scss │ ├── bootstrap.scss │ ├── _mixins.scss │ ├── _code.scss │ ├── _badge.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _alert.scss │ ├── _breadcrumb.scss │ ├── _pagination.scss │ ├── _nav.scss │ ├── _type.scss │ ├── _functions.scss │ ├── _tooltip.scss │ ├── _buttons.scss │ ├── _list-group.scss │ └── _print.scss ├── core │ ├── carousel-styles.scss │ ├── breadcrumb.scss │ ├── owl.theme.default.min.scss │ ├── theme.scss │ ├── bootstrap-multiselect.scss │ ├── footer.scss │ ├── carousel-header.scss │ ├── jumbotron.scss │ ├── flow.scss │ ├── owl.carousel.min.scss │ ├── syntax.scss │ └── fontello.scss └── core.scss ├── assets ├── js │ ├── app │ │ └── custom.js │ └── vendor │ │ ├── jquery.cookie.js │ │ └── ls.unveilhooks.js ├── images │ ├── close.png │ ├── next.png │ ├── prev.png │ ├── favicon.ico │ ├── favicon.png │ ├── loading.gif │ ├── Linaro-Sprinkle.png │ ├── owl.video.play.png │ ├── Linaro-logo-white.png │ ├── avatar-placeholder.jpg │ ├── breadcrumb-image.jpg │ ├── social-media-image.png │ └── clipboard.svg ├── fonts │ ├── fontello │ │ ├── fontello.eot │ │ ├── fontello.ttf │ │ ├── fontello.woff │ │ └── fontello.woff2 │ └── lato │ │ ├── Lato-regular.eot │ │ ├── Lato-regular.ttf │ │ ├── Lato-regular.woff │ │ └── Lato-regular.woff2 ├── css │ └── main.scss └── json │ └── posts.json ├── Gemfile ├── _layouts ├── default.html ├── base.html ├── flow.html ├── author.html └── post.html ├── _authors ├── john.md └── kyle.md ├── _includes ├── components │ ├── schema.html │ ├── css.html │ ├── javascript.html │ ├── carousel_header.html │ ├── linaro_404.html │ ├── breadcrumb.html │ ├── http2.html │ ├── head.html │ ├── sidebar.html │ ├── github_edit.html │ └── cookie_manager.html ├── flow │ ├── slider_row.html │ ├── text.html │ ├── buttons.html │ ├── button.html │ ├── title.html │ ├── call-to-action-banner.html │ ├── full_width_row.html │ ├── container_row.html │ ├── members-section.html │ ├── tabbed_content.html │ ├── collapse.html │ ├── flow_inner.html │ ├── slider.html │ └── feature_block.html ├── js_bundles │ ├── app.html │ └── vendor.html ├── nav │ ├── brand.html │ └── universal_nav.html ├── blog │ ├── latest_posts.html │ ├── read_time.html │ ├── post_search.html │ ├── blog_filler_element.html │ ├── post_series.html │ ├── disqus_comments.html │ ├── authors_posts.html │ ├── pagination.html │ └── post_sidebar.html ├── examples │ └── custom_include.html ├── image.html ├── media.html ├── social_media_icons.html ├── footer │ └── footer.html ├── youtube.html └── sticky-tab-bar.html ├── robots.txt ├── README.md ├── _pages ├── 404.md ├── privacy.md ├── cookies.md ├── blog.md ├── about.md └── video_header.md ├── _plugins ├── japr.rb └── simple_search_filter.rb ├── _posts └── 2020-03-23-a-bootstrap-4-and-jekyll-4-theme.md ├── _config-staging.yml ├── _config-production.yml ├── admin └── index.html ├── _data ├── universal_nav.yml ├── footer.yml └── nav.yml ├── .gitignore ├── CHANGELOG.md └── jumbo-jekyll-theme.gemspec /_sass/app/blog.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/app/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gemspec 3 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: flow 3 | --- 4 | {{content}} -------------------------------------------------------------------------------- /_authors/john.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: John Smith 3 | username: john.smith 4 | --- 5 | -------------------------------------------------------------------------------- /_sass/app/custom.scss: -------------------------------------------------------------------------------- 1 | /* Custom rules for your website can be defined here. */ 2 | -------------------------------------------------------------------------------- /_sass/blog.scss: -------------------------------------------------------------------------------- 1 | // Blog Theme includes 2 | @import "app/blog"; 3 | @import "core/syntax"; 4 | -------------------------------------------------------------------------------- /_sass/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /_includes/components/schema.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/close.png -------------------------------------------------------------------------------- /assets/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/next.png -------------------------------------------------------------------------------- /assets/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/prev.png -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/loading.gif -------------------------------------------------------------------------------- /assets/images/Linaro-Sprinkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/Linaro-Sprinkle.png -------------------------------------------------------------------------------- /assets/images/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/owl.video.play.png -------------------------------------------------------------------------------- /_includes/flow/slider_row.html: -------------------------------------------------------------------------------- 1 |
4 | -------------------------------------------------------------------------------- /_sass/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /assets/fonts/fontello/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/fontello/fontello.eot -------------------------------------------------------------------------------- /assets/fonts/fontello/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/fontello/fontello.ttf -------------------------------------------------------------------------------- /assets/fonts/fontello/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/fontello/fontello.woff -------------------------------------------------------------------------------- /assets/fonts/fontello/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/fontello/fontello.woff2 -------------------------------------------------------------------------------- /assets/fonts/lato/Lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/lato/Lato-regular.eot -------------------------------------------------------------------------------- /assets/fonts/lato/Lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/lato/Lato-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/lato/Lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/lato/Lato-regular.woff -------------------------------------------------------------------------------- /assets/fonts/lato/Lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/fonts/lato/Lato-regular.woff2 -------------------------------------------------------------------------------- /assets/images/Linaro-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/Linaro-logo-white.png -------------------------------------------------------------------------------- /assets/images/avatar-placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/avatar-placeholder.jpg -------------------------------------------------------------------------------- /assets/images/breadcrumb-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/breadcrumb-image.jpg -------------------------------------------------------------------------------- /assets/images/social-media-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linaro-marketing/jumbo-jekyll-theme/HEAD/assets/images/social-media-image.png -------------------------------------------------------------------------------- /_sass/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | box-shadow: $shadow; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /_sass/core/carousel-styles.scss: -------------------------------------------------------------------------------- 1 | @import "owl.carousel.min"; 2 | @import "owl.theme.default.min"; 3 | @import "carousel"; 4 | @import 'carousel-header'; -------------------------------------------------------------------------------- /_includes/js_bundles/app.html: -------------------------------------------------------------------------------- 1 | {% javascript_asset_tag app %} 2 | - assets/js/app/main.js 3 | - assets/js/app/custom.js 4 | {% endjavascript_asset_tag %} 5 | -------------------------------------------------------------------------------- /_sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /_sass/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | } 7 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {% if site.production %} 4 | User-agent: * 5 | Sitemap: {{site.url}}/sitemap.xml 6 | {% else %} 7 | User-agent: * 8 | Disallow: / 9 | {% endif %} 10 | -------------------------------------------------------------------------------- /_includes/nav/brand.html: -------------------------------------------------------------------------------- 1 | 2 |Some quick example text to build on the card title and make up the bulk of the card's 6 | content.
7 |14 | This article is Part {{ idx }} in a {{ count }}-Part Series. 15 |
16 |Sorry but we couldn't find this page!
15 |