jumbo-jekyll-theme 2.2.1.1 → 2.2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/authors.yml +7 -0
- data/_data/footer.yml +55 -0
- data/_data/nav.yml +77 -0
- data/_data/news.yaml +230 -0
- data/_data/settings.yml +148 -0
- data/_data/sidebar-nav.yml +23 -0
- data/_data/sticky-tab-bar.yml +29 -0
- data/_includes/author-pagination.html +36 -0
- data/_includes/authors-posts.html +49 -0
- data/_includes/breadcrumb.html +97 -0
- data/_includes/css.html +9 -0
- data/_includes/custom.html +1 -0
- data/_includes/display-blog-posts.html +67 -0
- data/_includes/disqus-comments.html +14 -0
- data/_includes/footer.html +70 -0
- data/_includes/github-edit.html +73 -0
- data/_includes/google-analytics-script.html +9 -0
- data/_includes/gtm-noscript.html +5 -0
- data/_includes/gtm-script.html +7 -0
- data/_includes/head.html +44 -0
- data/_includes/hero-banner.html +21 -0
- data/_includes/image.html +6 -0
- data/_includes/javascript.html +9 -0
- data/_includes/jumbotron.html +87 -0
- data/_includes/linaro-404.html +13 -0
- data/_includes/linaro-svg.html +1 -0
- data/_includes/media.html +11 -0
- data/_includes/members.html +63 -0
- data/_includes/nav.html +132 -0
- data/_includes/newsletter-script.html +30 -0
- data/_includes/owl-carousel-homepage.html +103 -0
- data/_includes/pagination-authors.html +36 -0
- data/_includes/pagination-news.html +36 -0
- data/_includes/pagination.html +36 -0
- data/_includes/post-comments.html +9 -0
- data/_includes/post-sidebar.html +74 -0
- data/_includes/post-tags.html +9 -0
- data/_includes/schema.html +50 -0
- data/_includes/shape-divider.html +12 -0
- data/_includes/shape.html +52 -0
- data/_includes/sidebar.html +55 -0
- data/_includes/sticky-tab-bar.html +63 -0
- data/_includes/thumbnail_image.html +10 -0
- data/_includes/universal-nav.html +28 -0
- data/_includes/youtube.html +7 -0
- data/_layouts/author-layout.html +13 -0
- data/_layouts/author.html +7 -0
- data/_layouts/container-breadcrumb-left-sidebar.html +10 -0
- data/_layouts/container-breadcrumb-right-sidebar.html +9 -0
- data/_layouts/container-breadcrumb-tabs.html +7 -0
- data/_layouts/container-breadcrumb.html +6 -0
- data/_layouts/container-left-sidebar.html +9 -0
- data/_layouts/container-right-sidebar.html +9 -0
- data/_layouts/container.html +9 -0
- data/_layouts/default.html +29 -0
- data/_layouts/full-width-breadcrumb.html +10 -0
- data/_layouts/full-width.html +9 -0
- data/_layouts/home.html +21 -0
- data/_layouts/post-index.html +19 -0
- data/_layouts/post-no-sidebar.html +0 -0
- data/_layouts/post-old.html +70 -0
- data/_layouts/post.html +240 -0
- data/_sass/_bootstrap-compass.scss +9 -0
- data/_sass/_bootstrap-mincer.scss +19 -0
- data/_sass/_bootstrap-sprockets.scss +9 -0
- data/_sass/_bootstrap.scss +56 -0
- data/_sass/app/blog.scss +58 -0
- data/_sass/app/contact.scss +3 -0
- data/_sass/app/custom.scss +1 -0
- data/_sass/app/fly.scss +10 -0
- data/_sass/app/home.scss +18 -0
- data/_sass/app/overrides.scss +36 -0
- data/_sass/app/search.scss +1 -0
- data/_sass/blog.scss +9 -0
- data/_sass/bootstrap/_alerts.scss +73 -0
- data/_sass/bootstrap/_badges.scss +68 -0
- data/_sass/bootstrap/_breadcrumbs.scss +28 -0
- data/_sass/bootstrap/_button-groups.scss +244 -0
- data/_sass/bootstrap/_buttons.scss +168 -0
- data/_sass/bootstrap/_carousel.scss +270 -0
- data/_sass/bootstrap/_close.scss +36 -0
- data/_sass/bootstrap/_code.scss +69 -0
- data/_sass/bootstrap/_component-animations.scss +37 -0
- data/_sass/bootstrap/_dropdowns.scss +216 -0
- data/_sass/bootstrap/_forms.scss +617 -0
- data/_sass/bootstrap/_glyphicons.scss +307 -0
- data/_sass/bootstrap/_grid.scss +84 -0
- data/_sass/bootstrap/_input-groups.scss +171 -0
- data/_sass/bootstrap/_jumbotron.scss +54 -0
- data/_sass/bootstrap/_labels.scss +66 -0
- data/_sass/bootstrap/_list-group.scss +130 -0
- data/_sass/bootstrap/_media.scss +66 -0
- data/_sass/bootstrap/_mixins.scss +40 -0
- data/_sass/bootstrap/_modals.scss +150 -0
- data/_sass/bootstrap/_navbar.scss +662 -0
- data/_sass/bootstrap/_navs.scss +242 -0
- data/_sass/bootstrap/_normalize.scss +424 -0
- data/_sass/bootstrap/_pager.scss +54 -0
- data/_sass/bootstrap/_pagination.scss +89 -0
- data/_sass/bootstrap/_panels.scss +271 -0
- data/_sass/bootstrap/_popovers.scss +131 -0
- data/_sass/bootstrap/_print.scss +101 -0
- data/_sass/bootstrap/_progress-bars.scss +87 -0
- data/_sass/bootstrap/_responsive-embed.scss +35 -0
- data/_sass/bootstrap/_responsive-utilities.scss +179 -0
- data/_sass/bootstrap/_scaffolding.scss +161 -0
- data/_sass/bootstrap/_tables.scss +234 -0
- data/_sass/bootstrap/_theme.scss +291 -0
- data/_sass/bootstrap/_thumbnails.scss +38 -0
- data/_sass/bootstrap/_tooltip.scss +101 -0
- data/_sass/bootstrap/_type.scss +298 -0
- data/_sass/bootstrap/_utilities.scss +55 -0
- data/_sass/bootstrap/_variables.scss +922 -0
- data/_sass/bootstrap/_wells.scss +29 -0
- data/_sass/bootstrap/mixins/_alerts.scss +14 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
- data/_sass/bootstrap/mixins/_buttons.scss +65 -0
- data/_sass/bootstrap/mixins/_center-block.scss +7 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
- data/_sass/bootstrap/mixins/_forms.scss +88 -0
- data/_sass/bootstrap/mixins/_gradients.scss +58 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +122 -0
- data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
- data/_sass/bootstrap/mixins/_image.scss +33 -0
- data/_sass/bootstrap/mixins/_labels.scss +12 -0
- data/_sass/bootstrap/mixins/_list-group.scss +32 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/_sass/bootstrap/mixins/_opacity.scss +8 -0
- data/_sass/bootstrap/mixins/_pagination.scss +24 -0
- data/_sass/bootstrap/mixins/_panels.scss +24 -0
- data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/_sass/bootstrap/mixins/_size.scss +10 -0
- data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
- data/_sass/bootstrap/mixins/_table-row.scss +28 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
- data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/_sass/core.scss +12 -0
- data/_sass/core/404.scss +189 -0
- data/_sass/core/animations.scss +125 -0
- data/_sass/core/blog.scss +441 -0
- data/_sass/core/breadcrumb.scss +97 -0
- data/_sass/core/carousel-styles.scss +3 -0
- data/_sass/core/carousel.scss +318 -0
- data/_sass/core/cookieconsent.scss +42 -0
- data/_sass/core/critical.scss +0 -0
- data/_sass/core/custom.scss +3 -0
- data/_sass/core/fa.scss +2336 -0
- data/_sass/core/flipclock.scss +434 -0
- data/_sass/core/font-awesome.min.scss +4 -0
- data/_sass/core/fonts.scss +3 -0
- data/_sass/core/footer.scss +169 -0
- data/_sass/core/forms.scss +3 -0
- data/_sass/core/homepage.scss +106 -0
- data/_sass/core/jumbotron.scss +51 -0
- data/_sass/core/lightbox.scss +212 -0
- data/_sass/core/nav.scss +1004 -0
- data/_sass/core/owl.carousel.min.scss +6 -0
- data/_sass/core/owl.theme.default.min.scss +6 -0
- data/_sass/core/social-media-icons.scss +67 -0
- data/_sass/core/syntax.scss +65 -0
- data/_sass/core/tables.scss +145 -0
- data/_sass/core/theme.scss +630 -0
- data/_sass/core/twitter-feed.scss +414 -0
- data/_sass/core/universal-nav.scss +154 -0
- data/_sass/core/youtube.scss +65 -0
- data/_sass/home.scss +6 -0
- data/assets/css/main-404.scss +18 -0
- data/assets/css/main-blog.scss +19 -0
- data/assets/css/main-contact.scss +23 -0
- data/assets/css/main-home.scss +22 -0
- data/assets/css/main-lightbox.scss +29 -0
- data/assets/css/main-search.scss +13 -0
- data/assets/css/main.scss +12 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- 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 +44 -0
- 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/fonts/lato-regular/LICENSE.txt +93 -0
- data/assets/fonts/lato-regular/Lato-regular.eot +0 -0
- data/assets/fonts/lato-regular/Lato-regular.svg +435 -0
- data/assets/fonts/lato-regular/Lato-regular.ttf +0 -0
- data/assets/fonts/lato-regular/Lato-regular.woff +0 -0
- data/assets/fonts/lato-regular/Lato-regular.woff2 +0 -0
- data/assets/images/Linaro-Logo.svg +1 -0
- data/assets/images/Linaro-Logo_light.png +0 -0
- data/assets/images/Linaro-Logo_standard.svg +1 -0
- data/assets/images/Linaro-Sprinkle.png +0 -0
- data/assets/images/avatar-placeholder.png +0 -0
- data/assets/images/background-image.jpg +0 -0
- data/assets/images/banner.jpg +0 -0
- data/assets/images/breadcrumb-image.jpg +0 -0
- data/assets/images/close.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/favicon.png +0 -0
- data/assets/images/loading.gif +0 -0
- data/assets/images/next.png +0 -0
- data/assets/images/owl.video.play.png +0 -0
- data/assets/images/placeholder.png +0 -0
- data/assets/images/prev.png +0 -0
- data/assets/images/social-media-image.png +0 -0
- data/assets/js/app/custom.js +0 -0
- data/assets/js/app/facebook.js +8 -0
- data/assets/js/app/fly.js +45 -0
- data/assets/js/app/home.js +46 -0
- data/assets/js/app/main.js +143 -0
- data/assets/js/app/scroll-to-anchors.js +10 -0
- data/assets/js/app/sticky-tab-bar.js +72 -0
- data/assets/js/app/tables.js +35 -0
- data/assets/js/package-blog.js +10 -0
- data/assets/js/package-extended.js +14 -0
- data/assets/js/package-home.js +12 -0
- data/assets/js/package-main.js +10 -0
- data/assets/js/package-search.js +8 -0
- data/assets/js/vendor/bootstrap.js +2377 -0
- data/assets/js/vendor/cognito.js +11 -0
- data/assets/js/vendor/cookieconsent.js +1504 -0
- data/assets/js/vendor/jquery.js +10364 -0
- data/assets/js/vendor/jquery.rss.js +333 -0
- data/assets/js/vendor/jquery.validate.js +1601 -0
- data/assets/js/vendor/lazysizes.js +698 -0
- data/assets/js/vendor/lightbox.js +523 -0
- data/assets/js/vendor/loadCSS.js +35 -0
- data/assets/js/vendor/ls.unveilhooks.js +145 -0
- data/assets/js/vendor/mc.js +255 -0
- data/assets/js/vendor/owl.carousel.js +3475 -0
- data/assets/js/vendor/picturefill.js +1471 -0
- data/assets/js/vendor/shuffle.js +2004 -0
- metadata +242 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca16efd4383ada8e171dd10878940fd6e7ef5dae5a1f0c65721beb8c60236045
|
|
4
|
+
data.tar.gz: 548de1c6b0a1e500487012c272b89a733e82c19af2683d66e3d7d5c7d3e7978f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5468d5c8ace13373444eec8d4184af221d60be3ce522d06d1bf9de1b25b60f1d5f80aed774710d85732f3758f5a04b27f64879d2163e78b65c645fc83135497e
|
|
7
|
+
data.tar.gz: 66068000e9093f40cd791b5f834ddb7547a4dc35e52eaae6574459883a267008d31f534c44556c5feb4080a15f8691147414beb257b7a8854d18d8918ded775f
|
data/_data/authors.yml
ADDED
data/_data/footer.yml
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Image to be used in the footer. Default is the Linaro Sprinkle
|
|
2
|
+
# image: Linaro-Logo.svg
|
|
3
|
+
|
|
4
|
+
# Optional Footer include which, when supplied, will prepend the included file
|
|
5
|
+
# to the footer.html include.
|
|
6
|
+
# include: members.html
|
|
7
|
+
|
|
8
|
+
# Columns to be added to the footer
|
|
9
|
+
columns:
|
|
10
|
+
- title: CSS
|
|
11
|
+
url: /
|
|
12
|
+
items:
|
|
13
|
+
- text: Bootstrap
|
|
14
|
+
url : /docs/css/
|
|
15
|
+
- title: Jekyll
|
|
16
|
+
url: /
|
|
17
|
+
items:
|
|
18
|
+
- text: Plugins
|
|
19
|
+
url : /docs/jekyll/plugins/
|
|
20
|
+
- text: Includes
|
|
21
|
+
url : /docs/jekyll/includes/
|
|
22
|
+
- text: Layouts
|
|
23
|
+
url : /docs/jekyll/layouts/
|
|
24
|
+
- title: JS
|
|
25
|
+
url: /
|
|
26
|
+
items:
|
|
27
|
+
- text: JQuery
|
|
28
|
+
url: /docs/js/jquery/
|
|
29
|
+
- text: Bootstrap
|
|
30
|
+
url: /docs/js/bootstrap/
|
|
31
|
+
- title: Blog
|
|
32
|
+
url: /
|
|
33
|
+
items:
|
|
34
|
+
- text: Using the Jumbo Jekyll Theme
|
|
35
|
+
url : /blog/getting-started/
|
|
36
|
+
|
|
37
|
+
- title: Collaborate
|
|
38
|
+
url: /
|
|
39
|
+
items:
|
|
40
|
+
- text: Fork on GitHub
|
|
41
|
+
url : https://github.com/linaro-website/jumbo-jekyll-theme
|
|
42
|
+
|
|
43
|
+
- title: Column 6
|
|
44
|
+
url: /
|
|
45
|
+
items:
|
|
46
|
+
- text: DragonBoard™ 410c
|
|
47
|
+
url : /
|
|
48
|
+
|
|
49
|
+
company-links:
|
|
50
|
+
- name: Legal
|
|
51
|
+
url: /legal/
|
|
52
|
+
- name: Contact
|
|
53
|
+
url: /contact/
|
|
54
|
+
- name: Press
|
|
55
|
+
url: /press/
|
data/_data/nav.yml
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Search Config
|
|
2
|
+
search:
|
|
3
|
+
enabled: true
|
|
4
|
+
label: Linaro
|
|
5
|
+
# universal-nav: true
|
|
6
|
+
# Nav Brand Config
|
|
7
|
+
brand:
|
|
8
|
+
text: Jumbo Jekyll Theme
|
|
9
|
+
image:
|
|
10
|
+
enabled: false
|
|
11
|
+
name: Linaro-Logo.svg
|
|
12
|
+
url: /
|
|
13
|
+
# Navigation pages
|
|
14
|
+
pages:
|
|
15
|
+
|
|
16
|
+
- title: Jekyll
|
|
17
|
+
options:
|
|
18
|
+
- text: Plugins
|
|
19
|
+
url: /jekyll/plugins/
|
|
20
|
+
options:
|
|
21
|
+
- text: Jekyll Assets
|
|
22
|
+
url: /jekyll/plugins/assets/
|
|
23
|
+
- text: Jekyll Assets
|
|
24
|
+
url: /jekyll/plugins/assets/
|
|
25
|
+
- text: Jekyll Assets
|
|
26
|
+
url: /jekyll/plugins/assets/
|
|
27
|
+
- text: Includes
|
|
28
|
+
url: /jekyll/includes/
|
|
29
|
+
- text: Layouts
|
|
30
|
+
url: /jekyll/layouts/
|
|
31
|
+
options:
|
|
32
|
+
- text: Default
|
|
33
|
+
url: /jekyll/layouts/default/
|
|
34
|
+
- text: Container
|
|
35
|
+
url: /jekyll/layouts/container/
|
|
36
|
+
- text: Container Breadcrumb
|
|
37
|
+
url: /jekyll/layouts/container-breadcrumb/
|
|
38
|
+
- text: Container Breadcrumb Left Sidebar
|
|
39
|
+
url: /jekyll/layouts/container-breadcrumb-left-sidebar/
|
|
40
|
+
- text: Container Breadcrumb Right Sidebar
|
|
41
|
+
url: /jekyll/layouts/container-breadcrumb-right-sidebar/
|
|
42
|
+
- text: Container Left Sidebar
|
|
43
|
+
url: /jekyll/layouts/container-left-sidebar/
|
|
44
|
+
- text: Container Right Sidebar
|
|
45
|
+
url: /jekyll/layouts/container-right-sidebar/
|
|
46
|
+
- text: Post
|
|
47
|
+
url: /jekyll/layouts/post/
|
|
48
|
+
- text: Featured Image Post
|
|
49
|
+
url: /jekyll/layouts/featured-image-post/
|
|
50
|
+
- text: Featured Image Post - No Sidebar
|
|
51
|
+
url: /jekyll/layouts/featured-image-post-no-sidebar/
|
|
52
|
+
|
|
53
|
+
- title: About
|
|
54
|
+
options:
|
|
55
|
+
- text: Overview
|
|
56
|
+
url: /about/
|
|
57
|
+
- text: Collaborate
|
|
58
|
+
url: /collaborate/
|
|
59
|
+
- text: Jekyll
|
|
60
|
+
|
|
61
|
+
- title: CSS
|
|
62
|
+
options:
|
|
63
|
+
- text: Bootstrap
|
|
64
|
+
url: /css/bootstrap/
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
- title: JS
|
|
68
|
+
options:
|
|
69
|
+
- text: JQuery
|
|
70
|
+
url: /js/jquery/
|
|
71
|
+
- text: Bootstrap
|
|
72
|
+
url: /js/bootstrap/
|
|
73
|
+
|
|
74
|
+
- title: Blog
|
|
75
|
+
url: /blog/
|
|
76
|
+
- title: Download
|
|
77
|
+
url: /download/
|
data/_data/news.yaml
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
entries:
|
|
2
|
+
- title: Linaro Announces First Development Board Compliant with 96Boards IoT Edition
|
|
3
|
+
Specification
|
|
4
|
+
link: http://www.linaro.org/news/linaro-announces-first-development-board-compliant-96boards-iot-edition-specification/
|
|
5
|
+
tag: news
|
|
6
|
+
|
|
7
|
+
- title: HopeRun joins Linaro 96Boards Steering Committee
|
|
8
|
+
link: http://www.linaro.org/news/hoperun-joins-linaro-96boards-steering-committee/
|
|
9
|
+
tag: news
|
|
10
|
+
|
|
11
|
+
- title: Linaro Announces First Development Board Compliant with 96Boards TV Platform
|
|
12
|
+
Specification
|
|
13
|
+
link: http://www.linaro.org/news/linaro-announces-first-development-board-compliant-96boards-tv-platform-specification/
|
|
14
|
+
tag: news
|
|
15
|
+
|
|
16
|
+
- title: ArcherMind Joins 96Boards and Launches Deca-Core ARMv8 Product
|
|
17
|
+
link: http://www.linaro.org/news/archermind-joins-96boards-launches-deci-core-armv8-product/
|
|
18
|
+
tag: news
|
|
19
|
+
|
|
20
|
+
- title: Thundersoft joins Linaro 96Boards as both Manufacturing Partner and Steering
|
|
21
|
+
Committee member
|
|
22
|
+
link: http://www.linaro.org/news/thundersoft-joins-linaro-96boards-manufacturing-partner-steering-committee-member/
|
|
23
|
+
tag: news
|
|
24
|
+
|
|
25
|
+
- title: Linaro announces LeMaker as a member of the Linaro Community Boards Group
|
|
26
|
+
link: https://www.linaro.org/news/linaro-announces-lemaker-as-a-member-of-the-linaro-community-boards-group/
|
|
27
|
+
tag: news
|
|
28
|
+
|
|
29
|
+
- title: DragonBoard 410c announced by Qualcomm
|
|
30
|
+
link: http://www.linaro.org/blog/dragonboard-410c/
|
|
31
|
+
tag: news
|
|
32
|
+
|
|
33
|
+
- title: Board based on HiSilicon Kirin 6220 processor
|
|
34
|
+
link: http://www.linaro.org/blog/dragonboard-410c/
|
|
35
|
+
tag: news
|
|
36
|
+
|
|
37
|
+
- title: Inside the 96Boards Specification
|
|
38
|
+
link: http://www.linaro.org/blog/inside-96boards-specification/
|
|
39
|
+
tag: news
|
|
40
|
+
|
|
41
|
+
- title: 96Boards and Open Source Hardware
|
|
42
|
+
link: http://www.linaro.org/blog/96boards-open-source-hardware/
|
|
43
|
+
tag: news
|
|
44
|
+
|
|
45
|
+
- title: Linaro announces 96Boards initiative to accelerate ARM software development
|
|
46
|
+
link: http://www.linaro.org/news/linaro-announces-96boards-initiative-accelerate-arm-software-development/
|
|
47
|
+
tag: news
|
|
48
|
+
|
|
49
|
+
- title: Linaro announces Actions Technology as a founding member of the Linaro
|
|
50
|
+
Community Boards Group
|
|
51
|
+
link: http://www.linaro.org/news/linaro-announces-actions-technology-founding-member-linaro-community-boards-group/
|
|
52
|
+
tag: news
|
|
53
|
+
|
|
54
|
+
- title: Linaro announces Marvell as a founding member of the Linaro Community Boards
|
|
55
|
+
Group
|
|
56
|
+
link: http://www.linaro.org/news/linaro-announces-marvell-founding-member-linaro-community-boards-group/
|
|
57
|
+
tag: news
|
|
58
|
+
|
|
59
|
+
- title: Here’s what your hardware needs for the AWS Greengrass IoT service
|
|
60
|
+
link: http://www.networkworld.com/article/3146248/cloud-computing/heres-what-your-hardware-needs-for-the-aws-greengrass-iot-service.html
|
|
61
|
+
date: 30 Nov 2016
|
|
62
|
+
tag: external-news
|
|
63
|
+
|
|
64
|
+
- title: AWS Greengrass brings Lambda to IoT devices
|
|
65
|
+
link: https://techcrunch.com/2016/11/30/aws-greengrass-brings-lambda-to-iot-devices/
|
|
66
|
+
date: 30 Nov 2016
|
|
67
|
+
tag: external-news
|
|
68
|
+
|
|
69
|
+
- title: Qualcomm Announces Intent to Support New Amazon Web Services Greengrass
|
|
70
|
+
Platform
|
|
71
|
+
link: https://www.qualcomm.com/news/releases/2016/11/30/qualcomm-announces-intent-support-new-amazon-web-services-greengrass
|
|
72
|
+
date: 30 Nov 2016
|
|
73
|
+
tag: external-news
|
|
74
|
+
|
|
75
|
+
- title: Qualcomm Snapdragon 600E and 410E Designed for Embedded Computing, Internet
|
|
76
|
+
of Things Applications Now Widely Available
|
|
77
|
+
link: https://www.qualcomm.com/news/releases/2016/09/28/qualcomm-snapdragon-600e-and-410e-designed-embedded-computing-internet
|
|
78
|
+
date: 29 Sep 2016
|
|
79
|
+
tag: external-news
|
|
80
|
+
|
|
81
|
+
- title: Make a Wi-Fi gadget with a $9.99 Orange Pi development board
|
|
82
|
+
link: http://www.computerworld.com/article/3124779/internet-of-things/make-a-wi-fi-gadget-with-a-999-orange-pi-development-board.html
|
|
83
|
+
date: 28 Sep 2016
|
|
84
|
+
tag: external-news
|
|
85
|
+
|
|
86
|
+
- title: 96Boards.org goes Cortex-M4 with IoT Edition and Carbon SBC
|
|
87
|
+
link: http://hackerboards.com/96boards-goes-cortex-m4-with-iot-edition-and-carbon-sbc/
|
|
88
|
+
date: 27 Sep 2016
|
|
89
|
+
tag: external-news
|
|
90
|
+
|
|
91
|
+
- title: MediaTek Launches Helio X20 Development Board For Advanced Product Creation
|
|
92
|
+
Across Markets
|
|
93
|
+
link: http://mediatek.com/en/news-events/mediatek-news/mediatek-launches-helio-x20-development-board-for-advanced-product-creation-across-markets/
|
|
94
|
+
date: 27 Jun 2016
|
|
95
|
+
tag: external-news
|
|
96
|
+
|
|
97
|
+
- title: And the Maker Month DragonBoard Contest Winner Is…
|
|
98
|
+
link: https://developer.qualcomm.com/blog/and-maker-month-dragonboard-contest-winner
|
|
99
|
+
date: 17 Jun 2016
|
|
100
|
+
tag: external-news
|
|
101
|
+
|
|
102
|
+
- title: Inspiring the Internet of Things Generation
|
|
103
|
+
link: http://www.huffingtonpost.com/raj-talluri/inspiring-the-internet-of_b_10331574.html
|
|
104
|
+
date: 8 Jun 2016
|
|
105
|
+
tag: external-news
|
|
106
|
+
|
|
107
|
+
- title: Linaro Releases the First (Alpha) Version of the 96Boards Reference Software
|
|
108
|
+
Platform
|
|
109
|
+
link: http://www.cnx-software.com/2015/11/09/linaro-releases-the-first-alpha-version-of-the-96boards-reference-software-platform/
|
|
110
|
+
date: 9 Nov 2015
|
|
111
|
+
tag: external-news
|
|
112
|
+
|
|
113
|
+
- title: Gumstix announces potential future support for 96Boards in Geppetto
|
|
114
|
+
link: http://www.marketwatch.com/story/geppettotm-offers-electronic-designers-rapid-path-to-commercial-production-2015-11-04
|
|
115
|
+
date: 4 Nov 2015
|
|
116
|
+
tag: external-news
|
|
117
|
+
|
|
118
|
+
- title: Arrow Electronics Demos AWS-Powered IoT Starter Kit at Annual Amazon Web
|
|
119
|
+
Services User Conference
|
|
120
|
+
link: http://www.marketwatch.com/story/arrow-electronics-demos-aws-powered-iot-starter-kit-at-annual-amazon-web-services-user-conference-2015-10-08
|
|
121
|
+
date: 8 Oct 2015
|
|
122
|
+
tag: external-news
|
|
123
|
+
|
|
124
|
+
- title: Arrow Electronics Introduces Open Source Board with New Freescale i.MX
|
|
125
|
+
7 Microprocessor
|
|
126
|
+
link: http://www.marketwatch.com/story/arrow-electronics-introduces-open-source-board-with-new-freescale-imx-7-microprocessor-2015-06-25
|
|
127
|
+
date: 25 June 2015
|
|
128
|
+
tag: external-news
|
|
129
|
+
|
|
130
|
+
- title: Qualcomm DragonBoard 410c 96Boards 64bit Quad-core ARM Cortex-A53 development
|
|
131
|
+
board [Video]
|
|
132
|
+
link: http://armdevices.net/2015/06/22/qualcomm-dragonboard-410c-96boards-64bit-quad-core-arm-cortex-a53-development-board/
|
|
133
|
+
date: 22 Jun 2015
|
|
134
|
+
tag: external-news
|
|
135
|
+
|
|
136
|
+
- title: DragonBoard 410c brings affordable prototyping to the Internet of Everything
|
|
137
|
+
link: https://www.qualcomm.com/news/snapdragon/2015/06/18/dragonboard-410c-brings-affordable-prototyping-internet-everything
|
|
138
|
+
date: 18 Jun 2015
|
|
139
|
+
tag: external-news
|
|
140
|
+
|
|
141
|
+
- title: Arrow Electronics Joins Linaro to Help Bring Innovative New Boards to Market
|
|
142
|
+
link: http://www.businesswire.com/news/home/20150428006206/en/Arrow-Electronics-Joins-Open-Source-Software-Pioneer-Linaro#.VXF1wVxVhBf
|
|
143
|
+
date: 28 April 2015
|
|
144
|
+
tag: external-news
|
|
145
|
+
|
|
146
|
+
- title: Avnet Electronics Marketing Now Accepting Pre-Orders for New HiKey Board
|
|
147
|
+
link: http://www.businesswire.com/news/home/20150402005102/en/Avnet-Electronics-Marketing-Accepting-Pre-Orders-HiKey-Board#.Vhd4oBNVhBd
|
|
148
|
+
date: 02 April 2015
|
|
149
|
+
tag: external-news
|
|
150
|
+
|
|
151
|
+
- title: "“Open” is as “Open” Does: Parsing an announcement"
|
|
152
|
+
link: http://www.linuxpromagazine.com/Online/Blogs/Paw-Prints-Writings-of-the-maddog/Open-is-as-Open-Does-Parsing-an-announcement
|
|
153
|
+
date: 23 Feb 2015
|
|
154
|
+
tag: external-news
|
|
155
|
+
|
|
156
|
+
- title: Linaro Launches 96Boards SBC Standard and First ARMv8 Board
|
|
157
|
+
link: http://www.linux.com/news/embedded-mobile/mobile-linux/810613-linaro-launches-96boards-sbc-standard-and-first-armv8-board
|
|
158
|
+
date: 19 Feb 2015
|
|
159
|
+
tag: external-news
|
|
160
|
+
|
|
161
|
+
- title: LAVA Lab to integrate HiKey from 96Boards.org
|
|
162
|
+
link: http://armdevices.net/2015/02/18/lava-lab-to-integrate-hikey-from-96boards-org/
|
|
163
|
+
date: 18 Feb 2015
|
|
164
|
+
tag: external-news
|
|
165
|
+
|
|
166
|
+
- title: Actions Technology invests in enabling Linaro’s open source development
|
|
167
|
+
community
|
|
168
|
+
link: http://www.actions-semi.com/en/newsview.aspx?cat=1&id=742
|
|
169
|
+
date: 17 Feb 2015
|
|
170
|
+
tag: external-news
|
|
171
|
+
|
|
172
|
+
- link: http://linuxgizmos.com/most-powerful-96boards-sbc-yet-offers-m2-expansion/
|
|
173
|
+
title: Eric Brown – LinuxGizmos
|
|
174
|
+
tag: hikey960
|
|
175
|
+
|
|
176
|
+
- link: http://www.techrepublic.com/article/raspberry-pi-challenger-huaweis-turbo-charged-board-runs-android-but-at-a-hefty-price/
|
|
177
|
+
title: Nick Heath – Tech Republic
|
|
178
|
+
tag: hikey960
|
|
179
|
+
|
|
180
|
+
- link: http://www.ubergizmo.com/2017/04/huawei-hikey-960-computer-board-for-android/
|
|
181
|
+
title: Adnan Farooqui – Ubergizmo
|
|
182
|
+
tag: hikey960
|
|
183
|
+
|
|
184
|
+
- link: https://www.phoronix.com/scan.php?page=news_item&px=96Boards-HiKey-960
|
|
185
|
+
title: Michael Larabel – Phoronix
|
|
186
|
+
tag: hikey960
|
|
187
|
+
|
|
188
|
+
- link: http://www.cnx-software.com/2017/04/26/96boards-compliant-hikey-960-arm-cortex-a73-development-board-is-now-available-for-239/
|
|
189
|
+
title: CNX
|
|
190
|
+
tag: hikey960
|
|
191
|
+
|
|
192
|
+
- link: https://www.ilsoftware.it/articoli.asp?tag=Huawei-e-Google-presentano-HiKey-960-molto-piu-performante-di-una-Raspberry_15417
|
|
193
|
+
title: Michele Nasi – ilSoftware.IT
|
|
194
|
+
tag: hikey960
|
|
195
|
+
|
|
196
|
+
- link: https://www.xataka.com/ordenadores/a-la-raspberry-pi-le-sale-un-competidor-potente-la-hikey-960-llega-con-un-kirin-960-y-3-gb-de-ram
|
|
197
|
+
title: Javier Pastor – Xataka
|
|
198
|
+
tag: hikey960
|
|
199
|
+
|
|
200
|
+
- link: https://www.adslzone.net/2017/04/26/huawei-hikey-960-un-potente-rival-para-raspberry-pi/
|
|
201
|
+
title: Claudio Valero – ADSLZone
|
|
202
|
+
tag: hikey960
|
|
203
|
+
|
|
204
|
+
- link: http://www.com-magazin.de/news/hardware/entwicklerboard-hikey-960-kommt-mate-9-chip-1218892.html
|
|
205
|
+
title: Stefan Bordel – Com! Professional
|
|
206
|
+
tag: hikey960
|
|
207
|
+
|
|
208
|
+
- link: https://liliputing.com/2017/04/hkey-960-240-android-dev-boardcomputer-kirin-960.html
|
|
209
|
+
title: Brad Linder – Liliputing
|
|
210
|
+
tag: hikey960
|
|
211
|
+
|
|
212
|
+
- link: http://newatlas.com/linaro-huawei-hikey-960-computer-board/49224/
|
|
213
|
+
title: Paul Ridden – New Atlas
|
|
214
|
+
tag: hikey960
|
|
215
|
+
|
|
216
|
+
- link: http://www.sciencetimes.com/articles/13576/20170426/android-7-1-new-superfast-computer-huawei-hikey-960-launching.htm
|
|
217
|
+
title: Soutrik Das – Science Times
|
|
218
|
+
tag: hikey960
|
|
219
|
+
|
|
220
|
+
- link: http://www.cnbeta.com/articles/tech/606691.htm
|
|
221
|
+
title: 威锋网 on – cnBeta.com
|
|
222
|
+
tag: hikey960
|
|
223
|
+
|
|
224
|
+
- link: http://www.it.com.cn/news/cyxw/yejie/2017042622/1362399.html
|
|
225
|
+
title: IT.com.cn
|
|
226
|
+
tag: hikey960
|
|
227
|
+
|
|
228
|
+
- link: http://www.webwire.com/ViewPressRel.asp?aId=208895
|
|
229
|
+
title: Webwire
|
|
230
|
+
tag: hikey960
|
data/_data/settings.yml
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
# Custom Favicon
|
|
2
|
+
favicon: favicon.png
|
|
3
|
+
|
|
4
|
+
# # Mailchimp settings
|
|
5
|
+
# mailchimp:
|
|
6
|
+
# enabled: true
|
|
7
|
+
# id: af6cf590b0
|
|
8
|
+
|
|
9
|
+
# Footer Newsletter toggle.
|
|
10
|
+
newsletter:
|
|
11
|
+
enabled: false
|
|
12
|
+
|
|
13
|
+
tags_enabled: true
|
|
14
|
+
|
|
15
|
+
# Footer Image default is linaro sprinkle
|
|
16
|
+
linaro-footer-image: Linaro-Sprinkle.png
|
|
17
|
+
|
|
18
|
+
# # Breadcrumb Settings
|
|
19
|
+
# breadcrumb:
|
|
20
|
+
# image: breadcrumb-image.jpg
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
#Content Repo for static site.
|
|
24
|
+
# Used for the edit on github include
|
|
25
|
+
|
|
26
|
+
# edit-on-github:
|
|
27
|
+
# enabled: true
|
|
28
|
+
# repo: https://www.github.com/Linaro/website
|
|
29
|
+
# docs: https://www.github.com/Linaro/website
|
|
30
|
+
|
|
31
|
+
# Settings for the home page
|
|
32
|
+
home:
|
|
33
|
+
#Content Background Image E.g. DeviceTree.org
|
|
34
|
+
# content-image: background-image.png
|
|
35
|
+
# If this is set then the navigation will be transparent.
|
|
36
|
+
transparent-nav: true
|
|
37
|
+
# If this is set to true then the shape divider will be displayed
|
|
38
|
+
shaped-divider: true
|
|
39
|
+
# Jumbotron settings for the home page
|
|
40
|
+
jumbotron:
|
|
41
|
+
# Include file to replace all the contents of the jumbotron with.
|
|
42
|
+
included_file: hero-banner.html
|
|
43
|
+
# Toggle the jumbotron
|
|
44
|
+
enabled: true
|
|
45
|
+
# Title for the home page jumbotron
|
|
46
|
+
title:
|
|
47
|
+
first-line:
|
|
48
|
+
text: Welcome to the
|
|
49
|
+
display: true
|
|
50
|
+
bold: false
|
|
51
|
+
second-line:
|
|
52
|
+
text: Jumbo Jekyll Theme
|
|
53
|
+
display: true
|
|
54
|
+
bold: true
|
|
55
|
+
# Text to be displayed in the home page jumbotron
|
|
56
|
+
sub-title:
|
|
57
|
+
first-line:
|
|
58
|
+
text: A theme for Linaro Static Jekyll sites.
|
|
59
|
+
display: true
|
|
60
|
+
bold: false
|
|
61
|
+
second-line:
|
|
62
|
+
text: Customize this content in the _data/settings.yml
|
|
63
|
+
display: false
|
|
64
|
+
bold: false
|
|
65
|
+
# Buttons to be displayed in the Jumbotron
|
|
66
|
+
buttons:
|
|
67
|
+
- text: Learn More
|
|
68
|
+
class: btn btn-primary btn-lg fade-in-three bottom-border-five
|
|
69
|
+
url: /about/
|
|
70
|
+
- text: Get Started
|
|
71
|
+
url:
|
|
72
|
+
class: btn btn-primary btn-lg fade-in-three bottom-border-five
|
|
73
|
+
# Background image for the home page located in assets/images
|
|
74
|
+
# background-image:
|
|
75
|
+
# # Darken is set to true by default - if you wish to remove the image overlay
|
|
76
|
+
# # then change this setting to false.
|
|
77
|
+
# darken: true
|
|
78
|
+
# # This is the name of the background-image located in /assets/images/
|
|
79
|
+
# name: background-image.jpg
|
|
80
|
+
# image: devicetree-icon-white.png
|
|
81
|
+
|
|
82
|
+
# Jekyll social media site settings. Github, LinkedIn, Google+, Facebook and Youtube
|
|
83
|
+
# github_username: Linaro
|
|
84
|
+
# linkedin_username: 1026961
|
|
85
|
+
# google_plus_username: +LinaroOnAir
|
|
86
|
+
# facebook_username: LinaroOrg
|
|
87
|
+
# youtube_username: linaroorg
|
|
88
|
+
# twitter_username: linaroorg
|
|
89
|
+
# slideshare_username: linaroorg
|
|
90
|
+
|
|
91
|
+
# Blog setup
|
|
92
|
+
blog:
|
|
93
|
+
# Show Thumbnails in the post index
|
|
94
|
+
show_thumbnails: true
|
|
95
|
+
# Toggle site wide comments display.
|
|
96
|
+
comments: true
|
|
97
|
+
# Post Side Bar Settings
|
|
98
|
+
sidebar:
|
|
99
|
+
# custom-include: blog-sidebar-include.html
|
|
100
|
+
display-on-posts: true
|
|
101
|
+
display-on-index: true
|
|
102
|
+
# Toggle whether or not thumbnails in the sidebar are displayed.
|
|
103
|
+
thumbnails:
|
|
104
|
+
display: true
|
|
105
|
+
# Display other posts contained in _posts
|
|
106
|
+
other-posts:
|
|
107
|
+
display: true
|
|
108
|
+
count: 4
|
|
109
|
+
# Display Related posts based on tags / categories
|
|
110
|
+
related-posts:
|
|
111
|
+
display: true
|
|
112
|
+
count: 5
|
|
113
|
+
# Display the most recent posts
|
|
114
|
+
most-recent-posts:
|
|
115
|
+
display: true
|
|
116
|
+
count: 5
|
|
117
|
+
|
|
118
|
+
# Google Anayltics Setup
|
|
119
|
+
# google:
|
|
120
|
+
# tag_manager: GTM-5DLPJQ
|
|
121
|
+
|
|
122
|
+
# Shema.org settings used in the schema.html include.
|
|
123
|
+
# schema:
|
|
124
|
+
# enabled: true
|
|
125
|
+
# organisation:
|
|
126
|
+
# name: Linaro
|
|
127
|
+
# url: https://www.linaro.org
|
|
128
|
+
# sameAs:
|
|
129
|
+
# - https://twitter.com/linaroorg
|
|
130
|
+
# - https://www.facebook.com/LinaroOrg
|
|
131
|
+
# - https://www.linkedin.com/company/1026961/
|
|
132
|
+
# - https://plus.google.com/+LinaroOnAir
|
|
133
|
+
# - https://github.com/Linaro
|
|
134
|
+
# - https://www.slideshare.net/linaroorg
|
|
135
|
+
# address:
|
|
136
|
+
# street: Harston Mill, Royston Rd
|
|
137
|
+
# town: Harston
|
|
138
|
+
# county: Cambridge
|
|
139
|
+
# post_code: CB22 7GG
|
|
140
|
+
# country_code: UK
|
|
141
|
+
|
|
142
|
+
# # Disqus Comments
|
|
143
|
+
# disqus:
|
|
144
|
+
# enabled: false
|
|
145
|
+
# shortname: Linaro
|
|
146
|
+
|
|
147
|
+
# Placeholder for Missing Images
|
|
148
|
+
placeholder: placeholder.jpg
|