jumbo-jekyll-theme 3.0.42 → 3.0.43

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +26 -0
  4. data/_config.yml +190 -0
  5. data/_data/authors.yml +7 -0
  6. data/_data/footer.yml +57 -0
  7. data/_data/nav.yml +75 -0
  8. data/_data/news.yaml +230 -0
  9. data/_data/settings.yml +93 -0
  10. data/_data/sidebar-nav.yml +23 -0
  11. data/_data/sticky-tab-bar.yml +29 -0
  12. data/_includes/author-pagination.html +36 -0
  13. data/_includes/authors-posts.html +49 -0
  14. data/_includes/breadcrumb.html +95 -0
  15. data/_includes/carousel-header.html +15 -0
  16. data/_includes/css.html +11 -0
  17. data/_includes/custom.html +1 -0
  18. data/_includes/display-blog-posts.html +67 -0
  19. data/_includes/disqus-comments.html +8 -0
  20. data/_includes/footer.html +68 -0
  21. data/_includes/github-edit.html +60 -0
  22. data/_includes/google-analytics-script.html +9 -0
  23. data/_includes/gtm-noscript.html +5 -0
  24. data/_includes/gtm-script.html +7 -0
  25. data/_includes/head.html +44 -0
  26. data/_includes/hero-banner.html +21 -0
  27. data/_includes/image.html +6 -0
  28. data/_includes/javascript.html +9 -0
  29. data/_includes/jumbotron.html +71 -0
  30. data/_includes/linaro-404.html +10 -0
  31. data/_includes/linaro-svg.html +1 -0
  32. data/_includes/media.html +11 -0
  33. data/_includes/members.html +63 -0
  34. data/_includes/nav.html +132 -0
  35. data/_includes/newsletter-script.html +30 -0
  36. data/_includes/owl-carousel-homepage.html +103 -0
  37. data/_includes/pagination-authors.html +36 -0
  38. data/_includes/pagination-news.html +36 -0
  39. data/_includes/pagination.html +36 -0
  40. data/_includes/post-sidebar.html +90 -0
  41. data/_includes/post-tags.html +9 -0
  42. data/_includes/read_time.html +2 -0
  43. data/_includes/responsive-image.html +6 -0
  44. data/_includes/schema.html +50 -0
  45. data/_includes/sidebar.html +55 -0
  46. data/_includes/sticky-tab-bar.html +61 -0
  47. data/_includes/thumb.html +2 -0
  48. data/_includes/thumbnail_image.html +10 -0
  49. data/_includes/universal-nav.html +28 -0
  50. data/_includes/youtube.html +7 -0
  51. data/_layouts/author-layout.html +13 -0
  52. data/_layouts/author.html +7 -0
  53. data/_layouts/container-breadcrumb-tabs.html +10 -0
  54. data/_layouts/container-breadcrumb.html +19 -0
  55. data/_layouts/container.html +8 -0
  56. data/_layouts/default.html +27 -0
  57. data/_layouts/error.html +23 -0
  58. data/_layouts/jumbotron-container.html +19 -0
  59. data/_layouts/jumbotron.html +12 -0
  60. data/_layouts/post-index.html +18 -0
  61. data/_layouts/post-old.html +70 -0
  62. data/_layouts/post.html +145 -0
  63. data/_layouts/redirect.html +11 -0
  64. data/_sass/_bootstrap-compass.scss +9 -0
  65. data/_sass/_bootstrap-mincer.scss +19 -0
  66. data/_sass/_bootstrap-sprockets.scss +9 -0
  67. data/_sass/_bootstrap.scss +56 -0
  68. data/_sass/app/blog.scss +59 -0
  69. data/_sass/app/contact.scss +3 -0
  70. data/_sass/app/custom.scss +1 -0
  71. data/_sass/app/overrides.scss +37 -0
  72. data/_sass/app/search.scss +1 -0
  73. data/_sass/blog.scss +9 -0
  74. data/_sass/bootstrap/_alerts.scss +73 -0
  75. data/_sass/bootstrap/_badges.scss +68 -0
  76. data/_sass/bootstrap/_breadcrumbs.scss +28 -0
  77. data/_sass/bootstrap/_button-groups.scss +244 -0
  78. data/_sass/bootstrap/_buttons.scss +168 -0
  79. data/_sass/bootstrap/_carousel.scss +270 -0
  80. data/_sass/bootstrap/_close.scss +36 -0
  81. data/_sass/bootstrap/_code.scss +69 -0
  82. data/_sass/bootstrap/_component-animations.scss +37 -0
  83. data/_sass/bootstrap/_dropdowns.scss +216 -0
  84. data/_sass/bootstrap/_forms.scss +617 -0
  85. data/_sass/bootstrap/_glyphicons.scss +307 -0
  86. data/_sass/bootstrap/_grid.scss +84 -0
  87. data/_sass/bootstrap/_input-groups.scss +171 -0
  88. data/_sass/bootstrap/_jumbotron.scss +54 -0
  89. data/_sass/bootstrap/_labels.scss +66 -0
  90. data/_sass/bootstrap/_list-group.scss +130 -0
  91. data/_sass/bootstrap/_media.scss +66 -0
  92. data/_sass/bootstrap/_mixins.scss +40 -0
  93. data/_sass/bootstrap/_modals.scss +150 -0
  94. data/_sass/bootstrap/_navbar.scss +662 -0
  95. data/_sass/bootstrap/_navs.scss +242 -0
  96. data/_sass/bootstrap/_normalize.scss +424 -0
  97. data/_sass/bootstrap/_pager.scss +54 -0
  98. data/_sass/bootstrap/_pagination.scss +89 -0
  99. data/_sass/bootstrap/_panels.scss +271 -0
  100. data/_sass/bootstrap/_popovers.scss +131 -0
  101. data/_sass/bootstrap/_print.scss +101 -0
  102. data/_sass/bootstrap/_progress-bars.scss +87 -0
  103. data/_sass/bootstrap/_responsive-embed.scss +35 -0
  104. data/_sass/bootstrap/_responsive-utilities.scss +179 -0
  105. data/_sass/bootstrap/_scaffolding.scss +161 -0
  106. data/_sass/bootstrap/_tables.scss +234 -0
  107. data/_sass/bootstrap/_theme.scss +291 -0
  108. data/_sass/bootstrap/_thumbnails.scss +38 -0
  109. data/_sass/bootstrap/_tooltip.scss +101 -0
  110. data/_sass/bootstrap/_type.scss +298 -0
  111. data/_sass/bootstrap/_utilities.scss +55 -0
  112. data/_sass/bootstrap/_variables.scss +932 -0
  113. data/_sass/bootstrap/_wells.scss +29 -0
  114. data/_sass/bootstrap/mixins/_alerts.scss +14 -0
  115. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  116. data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  117. data/_sass/bootstrap/mixins/_buttons.scss +65 -0
  118. data/_sass/bootstrap/mixins/_center-block.scss +7 -0
  119. data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  120. data/_sass/bootstrap/mixins/_forms.scss +88 -0
  121. data/_sass/bootstrap/mixins/_gradients.scss +58 -0
  122. data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  123. data/_sass/bootstrap/mixins/_grid.scss +122 -0
  124. data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  125. data/_sass/bootstrap/mixins/_image.scss +33 -0
  126. data/_sass/bootstrap/mixins/_labels.scss +12 -0
  127. data/_sass/bootstrap/mixins/_list-group.scss +32 -0
  128. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  129. data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  130. data/_sass/bootstrap/mixins/_opacity.scss +8 -0
  131. data/_sass/bootstrap/mixins/_pagination.scss +24 -0
  132. data/_sass/bootstrap/mixins/_panels.scss +24 -0
  133. data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  134. data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  135. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  136. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  137. data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  138. data/_sass/bootstrap/mixins/_size.scss +10 -0
  139. data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  140. data/_sass/bootstrap/mixins/_table-row.scss +28 -0
  141. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  142. data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  143. data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  144. data/_sass/core.scss +18 -0
  145. data/_sass/core/animations.scss +125 -0
  146. data/_sass/core/blog.scss +438 -0
  147. data/_sass/core/breadcrumb.scss +98 -0
  148. data/_sass/core/carousel-header.scss +91 -0
  149. data/_sass/core/carousel-styles.scss +4 -0
  150. data/_sass/core/carousel.scss +312 -0
  151. data/_sass/core/cookieconsent.scss +39 -0
  152. data/_sass/core/critical.scss +0 -0
  153. data/_sass/core/custom.scss +3 -0
  154. data/_sass/core/error.scss +186 -0
  155. data/_sass/core/fa.scss +2336 -0
  156. data/_sass/core/featherlight.scss +158 -0
  157. data/_sass/core/flipclock.scss +434 -0
  158. data/_sass/core/fly.scss +10 -0
  159. data/_sass/core/font-awesome.min.scss +4 -0
  160. data/_sass/core/fonts.scss +3 -0
  161. data/_sass/core/footer.scss +146 -0
  162. data/_sass/core/forms.scss +3 -0
  163. data/_sass/core/homepage.scss +19 -0
  164. data/_sass/core/jumbotron.scss +116 -0
  165. data/_sass/core/lightbox.scss +212 -0
  166. data/_sass/core/nav.scss +958 -0
  167. data/_sass/core/owl.carousel.min.scss +6 -0
  168. data/_sass/core/owl.theme.default.min.scss +6 -0
  169. data/_sass/core/social-media-icons.scss +67 -0
  170. data/_sass/core/syntax.scss +65 -0
  171. data/_sass/core/tables.scss +145 -0
  172. data/_sass/core/theme.scss +714 -0
  173. data/_sass/core/universal-nav.scss +161 -0
  174. data/_sass/core/youtube-lazy.scss +51 -0
  175. data/_sass/core/youtube.scss +65 -0
  176. data/_sass/home.scss +2 -0
  177. data/assets/css/main-blog.scss +19 -0
  178. data/assets/css/main-error.scss +14 -0
  179. data/assets/css/main-search.scss +13 -0
  180. data/assets/css/main.scss +12 -0
  181. data/assets/fonts/fontawesome-webfont.eot +0 -0
  182. data/assets/fonts/fontawesome-webfont.svg +2671 -0
  183. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  184. data/assets/fonts/fontawesome-webfont.woff +0 -0
  185. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  186. data/assets/fonts/fontello.eot +0 -0
  187. data/assets/fonts/fontello.svg +44 -0
  188. data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  189. data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  190. data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  191. data/assets/fonts/lato-regular/LICENSE.txt +93 -0
  192. data/assets/fonts/lato-regular/Lato-regular.eot +0 -0
  193. data/assets/fonts/lato-regular/Lato-regular.svg +435 -0
  194. data/assets/fonts/lato-regular/Lato-regular.ttf +0 -0
  195. data/assets/fonts/lato-regular/Lato-regular.woff +0 -0
  196. data/assets/fonts/lato-regular/Lato-regular.woff2 +0 -0
  197. data/assets/images/Linaro-Logo.svg +1 -0
  198. data/assets/images/Linaro-Logo_light.png +0 -0
  199. data/assets/images/Linaro-Logo_standard.svg +1 -0
  200. data/assets/images/Linaro-Sprinkle.png +0 -0
  201. data/assets/images/avatar-placeholder.png +0 -0
  202. data/assets/images/breadcrumb-image.jpg +0 -0
  203. data/assets/images/close.png +0 -0
  204. data/assets/images/content/background-image1.jpg +0 -0
  205. data/assets/images/content/background-image2.png +0 -0
  206. data/assets/images/content/background-image3.jpg +0 -0
  207. data/assets/images/favicon.ico +0 -0
  208. data/assets/images/favicon.png +0 -0
  209. data/assets/images/loading.gif +0 -0
  210. data/assets/images/next.png +0 -0
  211. data/assets/images/owl.video.play.png +0 -0
  212. data/assets/images/placeholder.png +0 -0
  213. data/assets/images/prev.png +0 -0
  214. data/assets/images/social-media-image.png +0 -0
  215. data/assets/js/app/blog-comments.js +50 -0
  216. data/assets/js/app/custom.js +0 -0
  217. data/assets/js/app/facebook.js +8 -0
  218. data/assets/js/app/fly.js +45 -0
  219. data/assets/js/app/home.js +46 -0
  220. data/assets/js/app/main.js +163 -0
  221. data/assets/js/app/scroll-to-anchors.js +10 -0
  222. data/assets/js/app/search.js +29 -0
  223. data/assets/js/app/sticky-tab-bar.js +71 -0
  224. data/assets/js/app/tables.js +35 -0
  225. data/assets/js/app/youtube-lazy.js +25 -0
  226. data/assets/js/package-blog.js +13 -0
  227. data/assets/js/package-extended.js +14 -0
  228. data/assets/js/package-home.js +12 -0
  229. data/assets/js/package-main.js +13 -0
  230. data/assets/js/package-search.js +8 -0
  231. data/assets/js/vendor/bootstrap.js +2377 -0
  232. data/assets/js/vendor/cognito.js +11 -0
  233. data/assets/js/vendor/cookieconsent.js +1495 -0
  234. data/assets/js/vendor/disqus-loader.js +87 -0
  235. data/assets/js/vendor/featherlight.js +641 -0
  236. data/assets/js/vendor/jquery.js +10364 -0
  237. data/assets/js/vendor/jquery.rss.js +333 -0
  238. data/assets/js/vendor/jquery.validate.js +1601 -0
  239. data/assets/js/vendor/lazysizes.js +698 -0
  240. data/assets/js/vendor/loadCSS.js +35 -0
  241. data/assets/js/vendor/ls.unveilhooks.js +145 -0
  242. data/assets/js/vendor/owl.carousel.js +3475 -0
  243. data/assets/js/vendor/picturefill.js +1471 -0
  244. data/assets/js/vendor/shuffle.js +2004 -0
  245. data/robots.txt +9 -0
  246. metadata +246 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f89c0615d4b697f5a397c621774b506b67a05ce2be227e22642d8130f161e937
4
- data.tar.gz: 226b96f2d0842bffc1bdd6f77912337d2057ae4a442beb9f3637f7ecf886b650
3
+ metadata.gz: d9b232057758e1326a0c949f9e9b773ba4e24ca2500eac0d03384bd0dbc5b37e
4
+ data.tar.gz: dd84f17f2f877292fa82447443abb83f84c92f1acb004d629e2ea6ff2608fcf0
5
5
  SHA512:
6
- metadata.gz: 047bf1946d4542ef98a327421670dbbff5cc73990b8da76278172769f718f123ef7398e1440f8b25f31ce145eec08ba2471ccf694cae05e0ba892cc14e556b0e
7
- data.tar.gz: 1bd941d2e98acea66c16c26fc304f7fbfffd1dd9f376948fe3bc0923f10a67b6b32e64e985cff4f255a15bbed859f84f55273b5e29a4b5829e264e67db0c423b
6
+ metadata.gz: 10968d916c88dd9b86a113d3dc65e5fa05d938a397b8718157fc21235a4ae41135a061c36c3ebdad99e96dd3e4d2ff6913ea933a5c45a820a96a5d5bda3a4adc
7
+ data.tar.gz: 8fcb7bdcd61a1ab2eb0d6b4e829c2a91bb42942ba75788a1f49d1a09576f2cf7a36a2dd6e6b855b58c763af20d14fd2fdba061f576bb79fa45db845765464334
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Kyle Kirkby
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,26 @@
1
+ # Jumbo Jekyll Theme
2
+
3
+ This is an open source Jekyll theme built for use on the Linaro Jekyll static websites. This project aims to unify the styles and components of Linaro static websites and make it easier to replicate and deploy a new static site.
4
+
5
+ ## Examples of sites using the theme
6
+
7
+ * [Linaro.org](https://www.linaro.org)
8
+ * [96boards.org](https://www.96boards.org)
9
+ * [Op-tee.org](https://www.op-tee.org)
10
+ * [OpenDataPlane.org](https://www.opendataplane.org)
11
+ * [DeviceTree.org](https://www.devicetree.org)
12
+
13
+ ## Features
14
+
15
+ Some of the features this theme offers:
16
+
17
+ * Lazy loading of content.
18
+ * Generated breadcrumb
19
+ * Easy navigation / footer management using YAML Data files.
20
+
21
+ # The Docs
22
+ The documentation for this theme is currently available through the Collaborate space. I will be adding to readthedocs/github in due course.
23
+
24
+ # Feature Requests / Bug Fixes
25
+
26
+ If anyone that uses the theme has any useful bug fixes / feature requests that may be of interest then please feel free to fork/submit a PR with your fixes/features.
@@ -0,0 +1,190 @@
1
+ # Default Title of Site
2
+ title: Jumbo Jekyll
3
+ # Description of the site used for default meta description
4
+ url: http://jumbojekyll.co.uk
5
+ baseurl: ""
6
+ description: |-
7
+ The Jumbo Jekyll Theme is used across all Linaro static sites.
8
+ # Destination of the Jekyll site upon build of site.
9
+ destination: _site
10
+ # Default permalink for blog posts
11
+ permalink: /blog/:title/
12
+ # Jumbo Jekyll Theme
13
+ theme: jumbo-jekyll-theme
14
+ # Syntax highlighter
15
+ highlighter: rouge
16
+ # Markdown flavour used by Jekyll to parse markdown.
17
+ markdown: kramdown
18
+ # Default character encoding
19
+ encoding: utf-8
20
+ # Jekyll configuration for running the site in "Safe" mode.
21
+ safe: false
22
+ # Files Jekyll will ignore when building the static site.
23
+ exclude:
24
+ - Gemfile
25
+ - Gemfile.lock
26
+ - .gitignore
27
+ - .git
28
+ - .asset-cache
29
+ - _static-site
30
+ - .sass-cache
31
+ - _site
32
+ # Sass Configuration for the site styles
33
+ sass:
34
+ style: compressed
35
+ load_paths:
36
+ - assets/css
37
+ # Compress HTML using the jekyll-tidy plugin.
38
+ jekyll_tidy:
39
+ # Toggle compression of HTML
40
+ compress_html: true
41
+ # JS Path added to exclude to stop errors.
42
+ exclude: ["assets/**/*.js"]
43
+ # Permalink style to be used for paginating pages in pagination.html
44
+ paginate_path: /blog/:num/
45
+ paginate_path_news: /news/:num/
46
+ paginate_path_authors: /authors/:num/
47
+ # Jekyll Pagination V2 Configuration
48
+ pagination:
49
+ # Default pagination path for Jekyll Posts
50
+ # For other permalinks set in the front matter of the post index page
51
+ permalink: /blog/:num/
52
+ # Enabled or not?
53
+ enabled: true
54
+ # Home many posts to display by default
55
+ per_page: 5
56
+ # Number of pages to show either side of the current page i.e - 1, 2, {3}, 4, 5
57
+ trail:
58
+ before: 2
59
+ after: 2
60
+ # Reverse the order of paginated pages
61
+ sort_reverse: true
62
+ # Field to sort posts by when paginating
63
+ sort_field: 'date'
64
+ # Jekyll pagination v2 autopages configuration.
65
+ autopages:
66
+ enabled: false
67
+ # Jekyll_get plugin configuration. This will not be needed in all jekyll sites
68
+ # only those that are displaying news from the news db or listing Linaro members.
69
+ # jekyll_get:
70
+ # data: members
71
+ # json: 'https://github.com/Linaro/db'
72
+ # Jekyll defaults - used to set default front matter values to collections and posts
73
+ defaults:
74
+ # Set a default Social Media Image
75
+ - scope:
76
+ path: ""
77
+ values:
78
+ image: /assets/images/social-media-image.png
79
+ - scope:
80
+ type: posts
81
+ path: "_posts"
82
+ values:
83
+ layout: post
84
+ comments: true
85
+ - scope:
86
+ path: ""
87
+ type: "authors"
88
+ values:
89
+ layout: author
90
+ # Jekyll Assets setup
91
+ assets:
92
+ # Compress JS Assets - uses the uglifier
93
+ compression: true
94
+ gzip: true
95
+ # Autoprefixer default settings
96
+ autoprefixer:
97
+ browsers: ["last 2 versions","> 5%","IE 9"]
98
+ # These are the paths to look for assets
99
+ sources:
100
+ - assets/js/
101
+ - assets/images/
102
+ - assets/css/
103
+ # Jekyll relative links plugin settings
104
+ jekyll_relative_links:
105
+ process_all_collections: true
106
+ verbose: 1
107
+ plugins:
108
+ - jekyll-seo-tag
109
+ - jekyll-sitemap
110
+ - bootstrap-sass
111
+ - uglifier
112
+ - jekyll-assets
113
+ - jekyll-theme-assets-updated
114
+ - jekyll-tidy
115
+ - jekyll-redirect-from
116
+ - jekyll-responsive-image
117
+ - autoprefixer-rails
118
+ - jekyll-paginate-v2
119
+ collections:
120
+ authors:
121
+ output: true
122
+ permalink: /author/:name/
123
+ # Make sure that Liquid errors stop the build
124
+ liquid:
125
+ error_mode: strict
126
+ readme_index:
127
+ enabled: true
128
+ remove_originals: false
129
+
130
+ # Jeykyll Responsive Image Configuration
131
+ responsive_image:
132
+ cache: false
133
+ # [Required]
134
+ # Path to the image template.
135
+ template: _includes/images/responsive-image.html
136
+
137
+ # [Optional, Default: 85]
138
+ # Quality to use when resizing images.
139
+ default_quality: 90
140
+
141
+ # [Optional, Default: []]
142
+ # An array of resize configuration objects. Each object must contain at least
143
+ # a `width` value.
144
+ sizes:
145
+ - width: 400 # [Required] How wide the resized image will be.
146
+ quality: 70 # [Optional] Overrides default_quality for this size.
147
+ - width: 800
148
+ quality: 70
149
+
150
+ # [Optional, Default: false]
151
+ # Rotate resized images depending on their EXIF rotation attribute. Useful for
152
+ # working with JPGs directly from digital cameras and smartphones
153
+ auto_rotate: false
154
+
155
+ # [Optional, Default: false]
156
+ # Strip EXIF and other JPEG profiles. Helps to minimize JPEG size and win friends
157
+ # at Google PageSpeed.
158
+ strip: false
159
+
160
+ # [Optional, Default: assets]
161
+ # The base directory where assets are stored. This is used to determine the
162
+ # `dirname` value in `output_path_format` below.
163
+ base_path: assets
164
+
165
+ # [Optional, Default: assets/resized/%{filename}-%{width}x%{height}.%{extension}]
166
+ # The template used when generating filenames for resized images. Must be a
167
+ # relative path.
168
+ #
169
+ # Parameters available are:
170
+ # %{dirname} Directory of the file relative to `base_path` (assets/sub/dir/some-file.jpg => sub/dir)
171
+ # %{basename} Basename of the file (assets/some-file.jpg => some-file.jpg)
172
+ # %{filename} Basename without the extension (assets/some-file.jpg => some-file)
173
+ # %{extension} Extension of the file (assets/some-file.jpg => jpg)
174
+ # %{width} Width of the resized image
175
+ # %{height} Height of the resized image
176
+ #
177
+ output_path_format: assets/resized/%{width}/%{basename}
178
+
179
+ # [Optional, Default: true]
180
+ # Whether or not to save the generated assets into the source folder.
181
+ save_to_source: false
182
+
183
+ # [Optional, Default: []]
184
+ # By default, only images referenced by the responsive_image and responsive_image_block
185
+ # tags are resized. Here you can set a list of paths or path globs to resize other
186
+ # images. This is useful for resizing images which will be referenced from stylesheets.
187
+ extra_images:
188
+ - assets/foo/bar.png
189
+ - assets/bgs/*.png
190
+ - assets/avatars/*.{jpeg,jpg}
@@ -0,0 +1,7 @@
1
+ # entries:
2
+ # - shortname: kylekirkby
3
+ # avatar: https://en.gravatar.com/userimage/54786027/fc975171b4e83cd1c19b20697a1d4329.jpeg
4
+ # first_name: Kyle
5
+ # second_name: Kirkby
6
+ # website: https://kylekirkby.co.uk
7
+ # github: https://github.com/kylekirkby
@@ -0,0 +1,57 @@
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
+ # footer-image: /assets/images/Linaro-Sprinkle.png
8
+ # footer-image-url: /
9
+ company-copyright-text: Jumbo Jekyll Theme
10
+ # Columns to be added to the footer
11
+ columns:
12
+ - title: CSS
13
+ url: /
14
+ items:
15
+ - text: Bootstrap
16
+ url : /docs/css/
17
+ - title: Jekyll
18
+ url: /
19
+ items:
20
+ - text: Plugins
21
+ url : /docs/jekyll/plugins/
22
+ - text: Includes
23
+ url : /docs/jekyll/includes/
24
+ - text: Layouts
25
+ url : /docs/jekyll/layouts/
26
+ - title: JS
27
+ url: /
28
+ items:
29
+ - text: JQuery
30
+ url: /docs/js/jquery/
31
+ - text: Bootstrap
32
+ url: /docs/js/bootstrap/
33
+ - title: Blog
34
+ url: /
35
+ items:
36
+ - text: Using the Jumbo Jekyll Theme
37
+ url : /blog/getting-started/
38
+
39
+ - title: Collaborate
40
+ url: /
41
+ items:
42
+ - text: Fork on GitHub
43
+ url : https://github.com/linaro-website/jumbo-jekyll-theme
44
+
45
+ - title: Column 6
46
+ url: /
47
+ items:
48
+ - text: DragonBoard™ 410c
49
+ url : /
50
+
51
+ company-links:
52
+ - name: Legal
53
+ url: /legal/
54
+ - name: Contact
55
+ url: /contact/
56
+ - name: Press
57
+ url: /press/
@@ -0,0 +1,75 @@
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
+ options:
20
+ - text: Jekyll Assets
21
+ url: /jekyll/plugins/assets/
22
+ - text: Jekyll Assets
23
+ url: /jekyll/plugins/assets/
24
+ - text: Jekyll Assets
25
+ url: /jekyll/plugins/assets/
26
+ - text: Includes
27
+ url: /jekyll/includes/
28
+ - text: Layouts
29
+ options:
30
+ - text: Default
31
+ url: /jekyll/layouts/default/
32
+ - text: Container
33
+ url: /jekyll/layouts/container/
34
+ - text: Container Breadcrumb
35
+ url: /jekyll/layouts/container-breadcrumb/
36
+ - text: Container Breadcrumb Left Sidebar
37
+ url: /jekyll/layouts/container-breadcrumb-left-sidebar/
38
+ - text: Container Breadcrumb Right Sidebar
39
+ url: /jekyll/layouts/container-breadcrumb-right-sidebar/
40
+ - text: Container Left Sidebar
41
+ url: /jekyll/layouts/container-left-sidebar/
42
+ - text: Container Right Sidebar
43
+ url: /jekyll/layouts/container-right-sidebar/
44
+ - text: Post
45
+ url: /jekyll/layouts/post/
46
+ - text: Featured Image Post
47
+ url: /jekyll/layouts/featured-image-post/
48
+ - text: Featured Image Post - No Sidebar
49
+ url: /jekyll/layouts/featured-image-post-no-sidebar/
50
+
51
+ - title: About
52
+ options:
53
+ - text: Overview
54
+ url: /about/
55
+ - text: Collaborate
56
+ url: /collaborate/
57
+ - text: Jekyll
58
+
59
+ - title: CSS
60
+ options:
61
+ - text: Bootstrap
62
+ url: /css/bootstrap/
63
+
64
+
65
+ - title: JS
66
+ options:
67
+ - text: JQuery
68
+ url: /js/jquery/
69
+ - text: Bootstrap
70
+ url: /js/bootstrap/
71
+
72
+ - title: Blog
73
+ url: /blog/
74
+ - title: Download
75
+ url: /download/
@@ -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