jumbo-jekyll-theme 5.6.9.4 → 5.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (317) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +202 -21
  3. data/README.md +10 -10
  4. data/_config.yml +146 -213
  5. data/_data/footer.yml +31 -33
  6. data/_data/nav.yml +73 -17
  7. data/_data/picture.yml +136 -0
  8. data/_data/settings.yml +97 -103
  9. data/_data/tags.yml +11 -11
  10. data/_data/universal_nav.yml +22 -0
  11. data/_includes/blog/authors_posts.html +37 -0
  12. data/_includes/blog/blog_filler_element.html +21 -0
  13. data/_includes/blog/display_blog_posts.html +126 -0
  14. data/_includes/{disqus-comments.html → blog/disqus_comments.html} +0 -0
  15. data/_includes/{latest-posts.html → blog/latest_posts.html} +0 -0
  16. data/_includes/blog/pagination.html +37 -0
  17. data/_includes/{post-series.html → blog/post_series.html} +0 -0
  18. data/_includes/blog/post_sidebar.html +81 -0
  19. data/_includes/{post-tags.html → blog/post_tags.html} +0 -0
  20. data/_includes/{read_time.html → blog/read_time.html} +0 -0
  21. data/_includes/components/breadcrumb.html +40 -0
  22. data/_includes/{carousel-header.html → components/carousel_header.html} +0 -0
  23. data/_includes/components/cookie_manager.html +80 -0
  24. data/_includes/components/css.html +8 -0
  25. data/_includes/{github-edit.html → components/github_edit.html} +0 -0
  26. data/_includes/components/head.html +60 -0
  27. data/_includes/components/http2.html +57 -0
  28. data/_includes/components/javascript.html +10 -0
  29. data/_includes/components/jumbotron.html +80 -0
  30. data/_includes/{linaro-404.html → components/linaro_404.html} +16 -19
  31. data/_includes/{schema.html → components/schema.html} +43 -43
  32. data/_includes/{sidebar.html → components/sidebar.html} +0 -0
  33. data/_includes/examples/custom_include.html +10 -0
  34. data/_includes/{custom_include_row.html → examples/custom_include_row.html} +562 -562
  35. data/_includes/flow/blocks.html +44 -0
  36. data/_includes/{core → flow}/button.html +5 -5
  37. data/_includes/flow/buttons.html +5 -0
  38. data/_includes/{core → flow}/call-to-action-banner.html +0 -0
  39. data/_includes/flow/container_row.html +11 -0
  40. data/_includes/flow/feature_block.html +41 -0
  41. data/_includes/flow/flow_inner.html +25 -0
  42. data/_includes/{core → flow}/full_width_row.html +5 -5
  43. data/_includes/{core → flow}/members-section.html +24 -32
  44. data/_includes/{core → flow}/slider.html +25 -33
  45. data/_includes/flow/slider_row.html +3 -0
  46. data/_includes/flow/tabbed_content.html +21 -0
  47. data/_includes/flow/text.html +3 -0
  48. data/_includes/flow/title.html +3 -0
  49. data/_includes/footer/footer.html +73 -0
  50. data/_includes/image.html +5 -6
  51. data/_includes/js_bundles/app.html +5 -0
  52. data/_includes/js_bundles/vendor.html +13 -0
  53. data/_includes/nav/brand.html +3 -0
  54. data/_includes/nav/nav.html +133 -0
  55. data/_includes/nav/universal_nav.html +36 -0
  56. data/_includes/{social-media-icons.html → social_media_icons.html} +0 -0
  57. data/_includes/youtube.html +74 -6
  58. data/_layouts/author.html +62 -6
  59. data/_layouts/base.html +6 -8
  60. data/_layouts/default.html +3 -3
  61. data/_layouts/error.html +25 -25
  62. data/_layouts/flow.html +33 -36
  63. data/_layouts/post-index.html +17 -16
  64. data/_layouts/post.html +55 -39
  65. data/_sass/app/blog.scss +0 -22
  66. data/_sass/app/overrides.scss +121 -66
  67. data/_sass/app/search.scss +51 -51
  68. data/_sass/blog.scss +1 -1
  69. data/_sass/bootstrap/_alert.scss +51 -0
  70. data/_sass/bootstrap/_badge.scss +47 -0
  71. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  72. data/_sass/bootstrap/_button-group.scss +172 -0
  73. data/_sass/bootstrap/_buttons.scss +75 -100
  74. data/_sass/bootstrap/_card.scss +301 -0
  75. data/_sass/bootstrap/_carousel.scss +161 -195
  76. data/_sass/bootstrap/_close.scss +15 -16
  77. data/_sass/bootstrap/_code.scss +15 -36
  78. data/_sass/bootstrap/_custom-forms.scss +433 -0
  79. data/_sass/bootstrap/_dropdown.scss +166 -0
  80. data/_sass/bootstrap/_forms.scss +213 -497
  81. data/_sass/bootstrap/_functions.scss +86 -0
  82. data/_sass/bootstrap/_grid.scss +29 -61
  83. data/_sass/bootstrap/_images.scss +42 -0
  84. data/_sass/bootstrap/_input-group.scss +173 -0
  85. data/_sass/bootstrap/_jumbotron.scss +9 -47
  86. data/_sass/bootstrap/_list-group.scss +64 -79
  87. data/_sass/bootstrap/_media.scss +3 -61
  88. data/_sass/bootstrap/_mixins.scss +19 -18
  89. data/_sass/bootstrap/_modal.scss +180 -0
  90. data/_sass/bootstrap/_nav.scss +118 -0
  91. data/_sass/bootstrap/_navbar.scss +192 -555
  92. data/_sass/bootstrap/_pagination.scss +59 -70
  93. data/_sass/bootstrap/_popover.scss +183 -0
  94. data/_sass/bootstrap/_print.scss +89 -49
  95. data/_sass/bootstrap/_progress.scss +34 -0
  96. data/_sass/bootstrap/_reboot.scss +483 -0
  97. data/_sass/bootstrap/_root.scss +19 -0
  98. data/_sass/bootstrap/_tables.scss +119 -166
  99. data/_sass/bootstrap/_tooltip.scss +93 -79
  100. data/_sass/bootstrap/_transitions.scss +22 -0
  101. data/_sass/bootstrap/_type.scss +66 -239
  102. data/_sass/bootstrap/_utilities.scss +15 -55
  103. data/_sass/bootstrap/_variables.scss +952 -932
  104. data/_sass/bootstrap/bootstrap-grid.scss +32 -0
  105. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  106. data/_sass/bootstrap/bootstrap.scss +42 -0
  107. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  108. data/_sass/bootstrap/mixins/_background-variant.scss +14 -5
  109. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  110. data/_sass/bootstrap/mixins/_border-radius.scss +25 -8
  111. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  112. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  113. data/_sass/bootstrap/mixins/_buttons.scss +84 -40
  114. data/_sass/bootstrap/mixins/_caret.scss +66 -0
  115. data/_sass/bootstrap/mixins/_clearfix.scss +3 -18
  116. data/_sass/bootstrap/mixins/_float.scss +11 -0
  117. data/_sass/bootstrap/mixins/_forms.scss +125 -66
  118. data/_sass/bootstrap/mixins/_gradients.scss +17 -30
  119. data/_sass/bootstrap/mixins/_grid-framework.scss +52 -66
  120. data/_sass/bootstrap/mixins/_grid.scss +37 -107
  121. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  122. data/_sass/bootstrap/mixins/_image.scss +18 -15
  123. data/_sass/bootstrap/mixins/_list-group.scss +10 -21
  124. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  125. data/_sass/bootstrap/mixins/_nav-divider.scss +4 -4
  126. data/_sass/bootstrap/mixins/_pagination.scss +10 -12
  127. data/_sass/bootstrap/mixins/_reset-text.scss +7 -8
  128. data/_sass/bootstrap/mixins/_resize.scss +1 -1
  129. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  130. data/_sass/bootstrap/mixins/_size.scss +1 -5
  131. data/_sass/bootstrap/mixins/_table-row.scss +16 -14
  132. data/_sass/bootstrap/mixins/_text-emphasis.scss +7 -5
  133. data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
  134. data/_sass/bootstrap/mixins/{_text-overflow.scss → _text-truncate.scss} +2 -2
  135. data/_sass/bootstrap/mixins/_transition.scss +13 -0
  136. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  137. data/_sass/bootstrap/utilities/_align.scss +8 -0
  138. data/_sass/bootstrap/utilities/_background.scss +19 -0
  139. data/_sass/bootstrap/utilities/_borders.scss +59 -0
  140. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  141. data/_sass/bootstrap/utilities/_display.scss +38 -0
  142. data/_sass/bootstrap/{_responsive-embed.scss → utilities/_embed.scss} +26 -9
  143. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  144. data/_sass/bootstrap/utilities/_float.scss +9 -0
  145. data/_sass/bootstrap/utilities/_position.scss +37 -0
  146. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  147. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  148. data/_sass/bootstrap/utilities/_sizing.scss +12 -0
  149. data/_sass/bootstrap/utilities/_spacing.scss +51 -0
  150. data/_sass/bootstrap/utilities/_text.scss +58 -0
  151. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  152. data/_sass/core.scss +15 -20
  153. data/_sass/core/blog.scss +126 -426
  154. data/_sass/core/breadcrumb.scss +16 -96
  155. data/_sass/core/carousel-header.scss +91 -91
  156. data/_sass/core/carousel.scss +7 -8
  157. data/_sass/core/cookies.scss +194 -0
  158. data/_sass/core/error.scss +190 -190
  159. data/_sass/core/flow.scss +71 -186
  160. data/_sass/core/fontello.scss +156 -0
  161. data/_sass/core/footer.scss +69 -142
  162. data/_sass/core/jumbotron.scss +90 -279
  163. data/_sass/core/navbar.scss +233 -0
  164. data/_sass/core/normalize.scss +357 -357
  165. data/_sass/core/theme.scss +40 -918
  166. data/assets/css/main-blog.scss +15 -14
  167. data/assets/css/main-error.scss +14 -13
  168. data/assets/css/main-search.scss +4 -3
  169. data/assets/css/main.scss +12 -11
  170. data/assets/fonts/fontello/fontello.eot +0 -0
  171. data/assets/fonts/fontello/fontello.svg +82 -0
  172. data/assets/fonts/fontello/fontello.ttf +0 -0
  173. data/assets/fonts/fontello/fontello.woff +0 -0
  174. data/assets/fonts/fontello/fontello.woff2 +0 -0
  175. data/assets/fonts/{lato-regular → lato}/LICENSE.txt +0 -0
  176. data/assets/fonts/{lato-regular → lato}/Lato-regular.eot +0 -0
  177. data/assets/fonts/{lato-regular → lato}/Lato-regular.svg +0 -0
  178. data/assets/fonts/{lato-regular → lato}/Lato-regular.ttf +0 -0
  179. data/assets/fonts/{lato-regular → lato}/Lato-regular.woff +0 -0
  180. data/assets/fonts/{lato-regular → lato}/Lato-regular.woff2 +0 -0
  181. data/assets/images/clipboard.svg +3 -0
  182. data/assets/js/app/main.js +298 -261
  183. data/assets/js/app/scroll-to-anchors.js +10 -9
  184. data/assets/js/app/sticky-tab-bar.js +67 -69
  185. data/assets/js/bootstrap.js.map +1 -0
  186. data/assets/js/popper.min.js.map +1 -0
  187. data/assets/js/vendor/_popper.js +5 -0
  188. data/assets/js/vendor/bootstrap.js +5 -2376
  189. data/assets/js/vendor/fess-ss.min.js +24 -24
  190. data/assets/js/vendor/jquery.cookie.js +120 -0
  191. data/assets/js/vendor/jquery.ihavecookies.js +263 -0
  192. data/assets/js/vendor/jquery.slim.js +8842 -0
  193. data/robots.txt +9 -9
  194. metadata +157 -377
  195. data/_data/example-carousel-data-source.yml +0 -36
  196. data/_data/members-section-example.yml +0 -0
  197. data/_data/universal-nav.yml +0 -7
  198. data/_includes/authors-posts.html +0 -18
  199. data/_includes/blog-filler-element.html +0 -24
  200. data/_includes/breadcrumb.html +0 -97
  201. data/_includes/core/blocks.html +0 -30
  202. data/_includes/core/buttons.html +0 -5
  203. data/_includes/core/container_row.html +0 -7
  204. data/_includes/core/feature_block.html +0 -43
  205. data/_includes/core/slider_row.html +0 -3
  206. data/_includes/core/text.html +0 -3
  207. data/_includes/core/title.html +0 -3
  208. data/_includes/core/youtube_video_embed.html +0 -11
  209. data/_includes/css.html +0 -9
  210. data/_includes/custom_include.html +0 -13
  211. data/_includes/display-blog-posts.html +0 -154
  212. data/_includes/flow_inner.html +0 -19
  213. data/_includes/footer.html +0 -68
  214. data/_includes/google-analytics.html +0 -16
  215. data/_includes/head.html +0 -19
  216. data/_includes/http2.html +0 -102
  217. data/_includes/javascript.html +0 -10
  218. data/_includes/jumbotron.html +0 -115
  219. data/_includes/linaro-svg.html +0 -1
  220. data/_includes/nav.html +0 -153
  221. data/_includes/pagination.html +0 -39
  222. data/_includes/post-sidebar.html +0 -182
  223. data/_includes/responsive-image.html +0 -6
  224. data/_includes/thumb-image.html +0 -31
  225. data/_includes/thumb.html +0 -2
  226. data/_includes/thumbnail_image.html +0 -10
  227. data/_includes/universal-nav.html +0 -30
  228. data/_layouts/jumbotron-container.html +0 -19
  229. data/_layouts/jumbotron.html +0 -12
  230. data/_layouts/redirect.html +0 -11
  231. data/_sass/_bootstrap-compass.scss +0 -9
  232. data/_sass/_bootstrap-mincer.scss +0 -19
  233. data/_sass/_bootstrap-sprockets.scss +0 -9
  234. data/_sass/_bootstrap.scss +0 -56
  235. data/_sass/app-package.scss +0 -11
  236. data/_sass/app/contact.scss +0 -3
  237. data/_sass/app/custom.scss +0 -1
  238. data/_sass/bootstrap/_alerts.scss +0 -73
  239. data/_sass/bootstrap/_badges.scss +0 -68
  240. data/_sass/bootstrap/_breadcrumbs.scss +0 -28
  241. data/_sass/bootstrap/_button-groups.scss +0 -244
  242. data/_sass/bootstrap/_component-animations.scss +0 -37
  243. data/_sass/bootstrap/_dropdowns.scss +0 -216
  244. data/_sass/bootstrap/_glyphicons.scss +0 -307
  245. data/_sass/bootstrap/_input-groups.scss +0 -171
  246. data/_sass/bootstrap/_labels.scss +0 -66
  247. data/_sass/bootstrap/_modals.scss +0 -150
  248. data/_sass/bootstrap/_navs.scss +0 -242
  249. data/_sass/bootstrap/_normalize.scss +0 -424
  250. data/_sass/bootstrap/_pager.scss +0 -54
  251. data/_sass/bootstrap/_panels.scss +0 -271
  252. data/_sass/bootstrap/_popovers.scss +0 -131
  253. data/_sass/bootstrap/_progress-bars.scss +0 -87
  254. data/_sass/bootstrap/_responsive-utilities.scss +0 -179
  255. data/_sass/bootstrap/_scaffolding.scss +0 -161
  256. data/_sass/bootstrap/_theme.scss +0 -291
  257. data/_sass/bootstrap/_thumbnails.scss +0 -38
  258. data/_sass/bootstrap/_wells.scss +0 -29
  259. data/_sass/bootstrap/mixins/_alerts.scss +0 -14
  260. data/_sass/bootstrap/mixins/_center-block.scss +0 -7
  261. data/_sass/bootstrap/mixins/_hide-text.scss +0 -21
  262. data/_sass/bootstrap/mixins/_labels.scss +0 -12
  263. data/_sass/bootstrap/mixins/_nav-vertical-align.scss +0 -9
  264. data/_sass/bootstrap/mixins/_opacity.scss +0 -8
  265. data/_sass/bootstrap/mixins/_panels.scss +0 -24
  266. data/_sass/bootstrap/mixins/_progress-bar.scss +0 -10
  267. data/_sass/bootstrap/mixins/_reset-filter.scss +0 -8
  268. data/_sass/bootstrap/mixins/_responsive-visibility.scss +0 -21
  269. data/_sass/bootstrap/mixins/_tab-focus.scss +0 -9
  270. data/_sass/bootstrap/mixins/_vendor-prefixes.scss +0 -222
  271. data/_sass/core/animations.scss +0 -125
  272. data/_sass/core/cookieconsent.scss +0 -39
  273. data/_sass/core/critical.scss +0 -0
  274. data/_sass/core/custom.scss +0 -3
  275. data/_sass/core/fa.scss +0 -2336
  276. data/_sass/core/flipclock.scss +0 -434
  277. data/_sass/core/fly.scss +0 -10
  278. data/_sass/core/font-awesome.min.scss +0 -4
  279. data/_sass/core/fonts.scss +0 -3
  280. data/_sass/core/forms.scss +0 -3
  281. data/_sass/core/homepage.scss +0 -19
  282. data/_sass/core/lightbox.scss +0 -212
  283. data/_sass/core/nav.scss +0 -1015
  284. data/_sass/core/social-media-icons.scss +0 -67
  285. data/_sass/core/tables.scss +0 -175
  286. data/_sass/core/triangle-divider.scss +0 -27
  287. data/_sass/core/universal-nav.scss +0 -167
  288. data/_sass/core/youtube-lazy.scss +0 -51
  289. data/_sass/core/youtube.scss +0 -65
  290. data/_sass/home.scss +0 -2
  291. data/assets/fonts/fontawesome-webfont.eot +0 -0
  292. data/assets/fonts/fontawesome-webfont.svg +0 -2671
  293. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  294. data/assets/fonts/fontawesome-webfont.woff +0 -0
  295. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  296. data/assets/fonts/fontello.eot +0 -0
  297. data/assets/fonts/fontello.svg +0 -44
  298. data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  299. data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  300. data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  301. data/assets/images/Linaro-Logo_light.png +0 -0
  302. data/assets/images/content/background-image1.jpg +0 -0
  303. data/assets/images/content/background-image2.png +0 -0
  304. data/assets/images/content/background-image3.jpg +0 -0
  305. data/assets/images/content/js-logo.png +0 -0
  306. data/assets/js/app/blog-comments.js +0 -50
  307. data/assets/js/app/facebook.js +0 -8
  308. data/assets/js/app/fly.js +0 -45
  309. data/assets/js/app/search.js +0 -29
  310. data/assets/js/app/youtube-lazy.js +0 -25
  311. data/assets/js/pacakge-search.js +0 -9
  312. data/assets/js/package-blog.js +0 -12
  313. data/assets/js/package-extended.js +0 -14
  314. data/assets/js/package-home.js +0 -14
  315. data/assets/js/package-main.js +0 -13
  316. data/assets/js/package-search.js +0 -8
  317. data/assets/js/vendor/cookieconsent.js +0 -1495
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47fac78ec6d843b3a5bca01a8c228a75d104f77ca238ce572f9b56b964b06317
4
- data.tar.gz: ff207afd75b3029c04a260a8ae34660b7112355e40d9a09828a06e7b6b9df202
3
+ metadata.gz: 217ac53361d9eae9ccc162bd78432be0b3eadf184a65bf857c93292c1f77b1ad
4
+ data.tar.gz: 189edc78863a2481cd1fc4d383c54ee0563e39ca1e70f63ab259b28d4556dc08
5
5
  SHA512:
6
- metadata.gz: c633eb2dbf511fa0b1cfe3de6fe7de96d96a621f63806fdc4c2e68c8f7b5f0afefc758fe754009e188683cf2b75bf522e5315ab17a8a937619b275b814c2280b
7
- data.tar.gz: ad685db90eb940fcafef31b68af2ea9be72944fd54d8e9d0a0b37ce9742af2d64f7d96deec594ae39105560b696d14358bb996ac79e92c9a468981d19fee0a22
6
+ metadata.gz: f79755df94292714d04b8285f91cc7121c2e96d80483235d368b61a64bed211c52dfe206eb053b5d1cdf2b39ee855604cbbec9ec640f15889dc8cbfb6f78b3eb
7
+ data.tar.gz: fce250c299c72749d816c990619e9b7d750f02789bc7fc4e93f0099e42e443b40dea75a91c15d7e48956acf15d800c2090c342a463733f326df4f3d35eaa3327
@@ -1,21 +1,202 @@
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.
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2018 Azavea Inc.
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md CHANGED
@@ -1,11 +1,11 @@
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
- ## Documentation
6
-
7
- Documentation for the theme now lives under the [GitHub Wiki](https://github.com/linaro-marketing/jumbo-jekyll-theme/wiki).
8
-
9
- ## Contributions
10
-
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
+ ## Documentation
6
+
7
+ Documentation for the theme now lives under the [GitHub Wiki](https://github.com/linaro-marketing/jumbo-jekyll-theme/wiki).
8
+
9
+ ## Contributions
10
+
11
11
  Contributions to the theme are welcome as there is always room for improvement! Please submit a PR with your features/improvements/fixes.
@@ -1,213 +1,146 @@
1
- # Default Title of Site
2
- title: jumbo-jekyll-theme (the advanced enterprise ready Jekyll theme)
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 an advanced enterprise ready Jekyll theme used across the Linaro static websites.
8
- # Destination of the Jekyll site upon build of site.
9
- destination: _site
10
- # Netflify CMS - Default repo branch
11
- branch: master
12
- # Default permalink for blog posts
13
- permalink: /blog/:title/
14
- # Jumbo Jekyll Theme
15
- theme: jumbo-jekyll-theme
16
- # Main Website Repo
17
- github_repo: https://github.com/linaro-marketing/jumbo-jekyll-theme
18
- # Syntax highlighter
19
- highlighter: rouge
20
- # Blog images/thumbs dir
21
- blog_images_dir: assets/images/content/
22
- # Markdown flavour used by Jekyll to parse markdown.
23
- markdown: kramdown
24
- kramdown:
25
- input: GFM
26
- syntax_highlighter: rouge # Syntax highlighter for Kramdown.
27
- # Email
28
- email: contact@linaro.org
29
- # Company Address
30
- address:
31
- - Harston Mill
32
- - Royston Rd, Harston
33
- - Cambridge, United Kingdom
34
- - CB22 7GG
35
- # Default character encoding
36
- encoding: utf-8
37
- # Jekyll configuration for running the site in "Safe" mode.
38
- safe: false
39
- # Files Jekyll will ignore when building the static site.
40
- exclude:
41
- - Gemfile
42
- - Gemfile.lock
43
- - .gitignore
44
- - .git
45
- - .asset-cache
46
- - _static-site
47
- - .sass-cache
48
- - _site
49
- - jumbo-jekyll-theme*.gem
50
- - jumbo-jekyll-theme*.gemspec
51
- # Sass Configuration for the site styles
52
- sass:
53
- style: compressed
54
- load_paths:
55
- - assets/css
56
- # Compress HTML using the jekyll-tidy plugin.
57
- jekyll_tidy:
58
- # Toggle compression of HTML
59
- compress_html: true
60
- # JS Path added to exclude to stop errors.
61
- exclude: ["assets/**/*.js", "robots.txt", "admin/config.yml"]
62
- # Permalink style to be used for paginating pages in pagination.html
63
- paginate_path: /blog/:num/
64
- paginate_path_news: /news/:num/
65
- paginate_path_authors: /authors/:num/
66
- # Jekyll Pagination V2 Configuration
67
- pagination:
68
- # Default pagination path for Jekyll Posts
69
- # For other permalinks set in the front matter of the post index page
70
- permalink: /:num/
71
- # Enabled or not?
72
- enabled: true
73
- # Home many posts to display by default
74
- per_page: 9
75
- # Number of pages to show either side of the current page i.e - 1, 2, {3}, 4, 5
76
- trail:
77
- before: 2
78
- after: 2
79
- # Reverse the order of paginated pages
80
- sort_reverse: true
81
- # Field to sort posts by when paginating
82
- sort_field: "date"
83
- # Jekyll pagination v2 autopages configuration.
84
- autopages:
85
- enabled: false
86
- # Jekyll_get plugin configuration. This will not be needed in all jekyll sites
87
- # only those that are displaying news from the news db or listing Linaro members.
88
- # jekyll_get:
89
- # data: members
90
- # json: 'https://github.com/Linaro/db'
91
- # Jekyll defaults - used to set default front matter values to collections and posts
92
- defaults:
93
- # Set a default Social Media Image
94
- - scope:
95
- path: ""
96
- values:
97
- image: /assets/images/social-media-image.png
98
- - scope:
99
- type: posts
100
- path: "_posts"
101
- values:
102
- layout: post
103
- is_post: true
104
- comments: true
105
- - scope:
106
- path: ""
107
- type: "authors"
108
- values:
109
- layout: author
110
- # Jekyll Assets setup
111
- assets:
112
- # Compress JS Assets - uses the uglifier
113
- compression: true
114
- compress:
115
- js: true
116
- gzip: true
117
- # Autoprefixer default settings
118
- autoprefixer:
119
- browsers: ["last 2 versions", "> 5%", "IE 9"]
120
- # These are the paths to look for assets
121
- sources:
122
- - assets/js/
123
- - assets/images/
124
- - assets/css/
125
- # Jekyll relative links plugin settings
126
- jekyll_relative_links:
127
- process_all_collections: true
128
- verbose: 1
129
- relative_links:
130
- enabled: true
131
- collections: false
132
- plugins:
133
- - jekyll-seo-tag
134
- - uglifier
135
- - jekyll-assets
136
- - jekyll-theme-assets-updated
137
- - jekyll-tidy
138
- - jekyll-redirect-from
139
- - jekyll-responsive-image
140
- - autoprefixer-rails
141
- - jekyll-paginate-v2
142
- collections:
143
- authors:
144
- output: true
145
- permalink: /author/:name/
146
- # Make sure that Liquid errors stop the build
147
- liquid:
148
- error_mode: strict
149
- readme_index:
150
- enabled: true
151
- remove_originals: false
152
- # Jeykyll Responsive Image Configuration
153
- responsive_image:
154
- cache: false
155
- # [Required]
156
- # Path to the image template.
157
- template: _includes/images/responsive-image.html
158
-
159
- # [Optional, Default: 85]
160
- # Quality to use when resizing images.
161
- default_quality: 90
162
-
163
- # [Optional, Default: []]
164
- # An array of resize configuration objects. Each object must contain at least
165
- # a `width` value.
166
- sizes:
167
- - width: 400 # [Required] How wide the resized image will be.
168
- quality: 70 # [Optional] Overrides default_quality for this size.
169
- - width: 800
170
- quality: 70
171
-
172
- # [Optional, Default: false]
173
- # Rotate resized images depending on their EXIF rotation attribute. Useful for
174
- # working with JPGs directly from digital cameras and smartphones
175
- auto_rotate: false
176
-
177
- # [Optional, Default: false]
178
- # Strip EXIF and other JPEG profiles. Helps to minimize JPEG size and win friends
179
- # at Google PageSpeed.
180
- strip: false
181
-
182
- # [Optional, Default: assets]
183
- # The base directory where assets are stored. This is used to determine the
184
- # `dirname` value in `output_path_format` below.
185
- base_path: assets
186
-
187
- # [Optional, Default: assets/resized/%{filename}-%{width}x%{height}.%{extension}]
188
- # The template used when generating filenames for resized images. Must be a
189
- # relative path.
190
- #
191
- # Parameters available are:
192
- # %{dirname} Directory of the file relative to `base_path` (assets/sub/dir/some-file.jpg => sub/dir)
193
- # %{basename} Basename of the file (assets/some-file.jpg => some-file.jpg)
194
- # %{filename} Basename without the extension (assets/some-file.jpg => some-file)
195
- # %{extension} Extension of the file (assets/some-file.jpg => jpg)
196
- # %{width} Width of the resized image
197
- # %{height} Height of the resized image
198
- #
199
- output_path_format: assets/resized/%{width}/%{basename}
200
-
201
- # [Optional, Default: true]
202
- # Whether or not to save the generated assets into the source folder.
203
- save_to_source: false
204
-
205
- # [Optional, Default: []]
206
- # By default, only images referenced by the responsive_image and responsive_image_block
207
- # tags are resized. Here you can set a list of paths or path globs to resize other
208
- # images. This is useful for resizing images which will be referenced from stylesheets.
209
- extra_images:
210
- - assets/foo/bar.png
211
- - assets/bgs/*.png
212
- - assets/avatars/*.{jpeg,jpg}
213
- include: ["_pages"]
1
+ title: jumbo-jekyll-theme (the advanced enterprise ready Jekyll theme)
2
+ url: http://jumbojekyll.co.uk
3
+ baseurl: ""
4
+ description: |-
5
+ The jumbo-jekyll-theme is an advanced enterprise ready Jekyll theme used across the Linaro static websites.
6
+ destination: _site
7
+ permalink: /blog/:title/
8
+ theme: jumbo-jekyll-theme
9
+ highlighter: rouge
10
+ markdown: kramdown
11
+ kramdown:
12
+ input: GFM
13
+ syntax_highlighter: rouge
14
+ encoding: utf-8
15
+ safe: false
16
+ exclude:
17
+ - Gemfile
18
+ - Gemfile.lock
19
+ - .asset_pipeline
20
+ - .gitignore
21
+ - .git
22
+ - .asset-cache
23
+ - _static-site
24
+ - .sass-cache
25
+ - _site
26
+ - jumbo-jekyll-theme*.gem
27
+ - jumbo-jekyll-theme*.gemspec
28
+ sass:
29
+ style: compressed
30
+ load_paths:
31
+ - assets/css
32
+ plugins:
33
+ - jekyll-seo-tag
34
+ - japr
35
+ - jekyll_picture_tag
36
+ - jekyll-tidy
37
+ - jekyll-paginate-v2
38
+ collections:
39
+ authors:
40
+ output: true
41
+ permalink: /author/:name/
42
+ liquid:
43
+ error_mode: strict
44
+ defaults:
45
+ - scope:
46
+ path: ""
47
+ values:
48
+ layout: flow
49
+ - scope:
50
+ type: posts
51
+ path: "_posts"
52
+ values:
53
+ layout: post
54
+ is_post: true
55
+ comments: true
56
+ - scope:
57
+ path: ""
58
+ type: "authors"
59
+ values:
60
+ layout: author
61
+ include: ["_pages"]
62
+ # ----------- THEME / WEBSITE CONFIG ---------------------
63
+ # Permalink style used for paginating pages
64
+ paginate_path: /blog/:num/
65
+ paginate_path_news: /news/:num/
66
+ paginate_path_authors: /authors/:num/
67
+ # Blog images/thumbs dir
68
+ blog_images_dir: assets/images/content/
69
+ # Email
70
+ email: contact@linaro.org
71
+ # Company Address
72
+ address:
73
+ - Harston Mill
74
+ - Royston Rd, Harston
75
+ - Cambridge, United Kingdom
76
+ - CB22 7GG
77
+ # Support for http2 preload features
78
+ http2_resources:
79
+ - rel: preload
80
+ as: font
81
+ type: font/woff2
82
+ href: /assets/fonts/lato/Lato-regular.woff2
83
+ google_analytics:
84
+ enabled: true
85
+ code: UAXXXXXX
86
+ # Set the site-wide default social media share image.
87
+ social_media_share_image: /assets/images/social-media-image.png
88
+ # Set the default favicon
89
+ favicon: /assets/images/favicon.png
90
+ # Site Name - your brand name
91
+ name: Jumbo Jekyll Theme
92
+ # The blog filler element
93
+ blog_filler_element: blog/blog_filler_element.html
94
+ # Placeholder avatar
95
+ avatar_placeholder: /assets/images/avatar-placeholder.jpg
96
+ # Blog Post Image Placholder
97
+ post_placeholder: /assets/images/test/background-image1.jpg
98
+ # ----------- JEKYLL PLUGINS ---------------------
99
+ # -------- jekyll-tidy --------
100
+ jekyll_tidy:
101
+ # Toggle compression of HTML
102
+ compress_html: true
103
+ # JS Path added to exclude to stop errors.
104
+ exclude: ["assets/**/*.js", "robots.txt", "admin/config.yml"]
105
+ # -------- jekyll-paginate-v2 --------
106
+ pagination:
107
+ # Default pagination path for Jekyll Posts
108
+ # For other permalinks set in the front matter of the post index page
109
+ permalink: /:num/
110
+ # Enabled or not?
111
+ enabled: true
112
+ # Home many posts to display by default
113
+ per_page: 9
114
+ # Number of pages to show either side of the current page i.e - 1, 2, {3}, 4, 5
115
+ trail:
116
+ before: 2
117
+ after: 2
118
+ # Reverse the order of paginated pages
119
+ sort_reverse: true
120
+ # Field to sort posts by when paginating
121
+ sort_field: "date"
122
+ autopages:
123
+ enabled: false
124
+ # -------- jekyll_relative_links --------
125
+ jekyll_relative_links:
126
+ process_all_collections: true
127
+ verbose: 1
128
+ relative_links:
129
+ enabled: true
130
+ collections: false
131
+ # -------- jekyll_relative_links --------
132
+ readme_index:
133
+ enabled: true
134
+ remove_originals: false
135
+ # -------- jekyll_picture_tag --------
136
+ picture:
137
+ nomarkdown: false
138
+ source: "assets/images"
139
+ output: "assets/images"
140
+ relative_url: true
141
+ # -------- japr --------
142
+ asset_pipeline:
143
+ bundle: true
144
+ compress: true
145
+ output_path: assets/js
146
+ gzip: false