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
@@ -1,14 +1,15 @@
1
- ---
2
- ---
3
- @charset "UTF-8";
4
- //Bootstrap Overrides
5
- @import "app/overrides";
6
- //Boostrap Includes
7
- @import '_bootstrap';
8
- // Linaro Jekyll Theme Includes
9
- @import 'core';
10
- // Additional Core Includes
11
- @import 'blog';
12
- // App Includes
13
- @import "app/custom";
14
- @import "app/blog";
1
+ ---
2
+ ---
3
+ @charset "UTF-8";
4
+ //Bootstrap Overrides
5
+ @import "bootstrap/functions";
6
+ @import "bootstrap/variables";
7
+ @import "bootstrap/mixins";
8
+
9
+ @import "app/overrides";
10
+ //Boostrap Includes
11
+ @import 'bootstrap/bootstrap';
12
+ // Linaro Jekyll Theme Includes
13
+ @import 'core';
14
+ // Additional Core Includes
15
+ @import 'blog';
@@ -1,13 +1,14 @@
1
- ---
2
- ---
3
- @charset "UTF-8";
4
- // App Overrides - Sass variables
5
- @import "app/overrides";
6
- //Boostrap Includes
7
- @import '_bootstrap';
8
- // Core Theme
9
- @import 'core';
10
- //Additional Core includes
11
- @import "core/error";
12
- // App Includes
13
- @import "app/custom";
1
+ ---
2
+ ---
3
+ @charset "UTF-8";
4
+ @import "bootstrap/functions";
5
+ @import "bootstrap/variables";
6
+ @import "bootstrap/mixins";
7
+ // App Overrides - Sass variables
8
+ @import "app/overrides";
9
+ //Boostrap Includes
10
+ @import 'bootstrap/bootstrap';
11
+ // Core Theme
12
+ @import 'core';
13
+ //Additional Core includes
14
+ @import "core/error";
@@ -1,13 +1,14 @@
1
1
  ---
2
2
  ---
3
3
  @charset "UTF-8";
4
+ @import "bootstrap/functions";
5
+ @import "bootstrap/variables";
6
+ @import "bootstrap/mixins";
4
7
  //Bootstrap Overrides
5
8
  @import "app/overrides";
6
9
  //Boostrap Includes
7
- @import 'bootstrap';
8
- @import 'bootstrap/variables';
10
+ @import 'bootstrap/bootstrap';
9
11
  // Linaro Jekyll Theme Includes
10
12
  @import "core";
11
13
  // App Includes
12
14
  @import "app/search";
13
- @import "app/custom";
@@ -1,11 +1,12 @@
1
- ---
2
- ---
3
- @charset "UTF-8";
4
- //Bootstrap Overrides
5
- @import "app/overrides";
6
- //Boostrap Includes
7
- @import '_bootstrap';
8
- // Linaro Jekyll Theme Includes
9
- @import "core";
10
- // App Includes
11
- @import "app/custom";
1
+ ---
2
+ ---
3
+ @charset "UTF-8";
4
+ //Bootstrap Overrides
5
+ @import "app/overrides";
6
+ @import "bootstrap/functions";
7
+ @import "bootstrap/variables";
8
+ @import "bootstrap/mixins";
9
+ //Boostrap Includes
10
+ @import 'bootstrap/bootstrap';
11
+ // Linaro Jekyll Theme Includes
12
+ @import "core";
@@ -0,0 +1,82 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Copyright (C) 2020 by original authors @ fontello.com</metadata>
5
+ <defs>
6
+ <font id="fontello" horiz-adv-x="1000" >
7
+ <font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
8
+ <missing-glyph horiz-adv-x="1000" />
9
+ <glyph glyph-name="search" unicode="&#xe800;" d="M643 386q0 103-73 176t-177 74-177-74-73-176 73-177 177-73 177 73 73 177z m286-465q0-29-22-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-125 84-84 125-31 153 31 152 84 126 125 84 153 31 153-31 125-84 84-126 31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
10
+
11
+ <glyph glyph-name="stop" unicode="&#xe801;" d="M857 743v-786q0-14-10-25t-26-11h-785q-15 0-25 11t-11 25v786q0 14 11 25t25 11h785q15 0 26-11t10-25z" horiz-adv-x="857.1" />
12
+
13
+ <glyph glyph-name="pause" unicode="&#xe802;" d="M857 743v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z m-500 0v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z" horiz-adv-x="857.1" />
14
+
15
+ <glyph glyph-name="fast-fw" unicode="&#xe803;" d="M25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-5 8-10v396q0 14 7 18t18-8l396-396q11-10 11-25t-11-25l-396-396q-11-11-18-8t-7 18v397q-3-6-8-11z" horiz-adv-x="928.6" />
16
+
17
+ <glyph glyph-name="fast-bw" unicode="&#xe804;" d="M904 771q10 11 17 8t8-18v-822q0-14-8-18t-17 8l-397 396q-5 5-7 11v-397q0-14-7-18t-18 8l-396 396q-11 11-11 25t11 25l396 396q11 11 18 8t7-18v-396q2 5 7 10z" horiz-adv-x="928.6" />
18
+
19
+ <glyph glyph-name="terminal" unicode="&#xe805;" d="M1360 849v-1000h-1360v1000h1360z m-838-600h318v77h-318v-77z m-362 77l317 135v96l-317 134v-99l209-84-209-83v-99z" horiz-adv-x="1360" />
20
+
21
+ <glyph glyph-name="basket" unicode="&#xe806;" d="M357-7q0-29-21-50t-50-22-50 22-22 50 22 50 50 21 50-21 21-50z m500 0q0-29-21-50t-50-22-50 22-22 50 22 50 50 21 50-21 21-50z m72 607v-286q0-13-10-23t-22-12l-583-68q7-34 7-40 0-8-13-35h513q15 0 26-11t10-25-10-25-26-11h-571q-14 0-25 11t-11 25q0 6 5 18t9 20 12 22 8 17l-98 459h-114q-15 0-25 10t-11 25 11 26 25 10h143q9 0 16-3t10-9 8-14 4-14 3-17 3-14h670q14 0 25-11t11-25z" horiz-adv-x="928.6" />
22
+
23
+ <glyph glyph-name="users" unicode="&#xe807;" d="M331 350q-90-3-148-71h-75q-45 0-77 22t-31 66q0 197 69 197 4 0 25-11t54-24 66-12q38 0 75 13-3-21-3-37 0-78 45-143z m598-356q0-66-41-105t-108-39h-488q-68 0-108 39t-41 105q0 30 2 58t8 61 14 61 24 54 35 45 48 30 62 11q6 0 24-12t41-26 59-27 76-12 75 12 60 27 41 26 24 12q34 0 62-11t47-30 35-45 24-54 15-61 8-61 2-58z m-572 713q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m393-214q0-89-63-152t-151-62-152 62-63 152 63 151 152 63 151-63 63-151z m321-126q0-43-31-66t-77-22h-75q-57 68-147 71 45 65 45 143 0 16-3 37 37-13 74-13 33 0 67 12t54 24 24 11q69 0 69-197z m-71 340q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z" horiz-adv-x="1071.4" />
24
+
25
+ <glyph glyph-name="user" unicode="&#xe808;" d="M714 69q0-60-35-104t-84-44h-476q-49 0-84 44t-35 104q0 48 5 90t17 85 33 73 52 50 76 19q73-72 174-72t175 72q42 0 75-19t52-50 33-73 18-85 4-90z m-143 495q0-88-62-151t-152-63-151 63-63 151 63 152 151 63 152-63 62-152z" horiz-adv-x="714.3" />
26
+
27
+ <glyph glyph-name="folder-open" unicode="&#xe809;" d="M1049 319q0-17-18-37l-187-221q-24-28-67-48t-81-20h-607q-19 0-33 7t-15 24q0 17 17 37l188 221q24 28 67 48t80 20h607q19 0 34-7t15-24z m-192 192v-90h-464q-53 0-110-26t-92-67l-188-221-2-3q0 2-1 7t0 7v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h303q52 0 88-37t37-88z" horiz-adv-x="1071.4" />
28
+
29
+ <glyph glyph-name="github-circled-alt2" unicode="&#xf056;" d="M0 350q0-130 63-235 63-109 171-171t235-63q127 0 235 63 109 63 171 171t62 235q0 129-62 235-63 109-171 171t-235 62q-130 0-235-63-109-63-171-171t-63-234z m78 0q0 78 31 151t84 125q53 53 125 84t151 30 150-30 126-84q53-53 83-125t31-151q0-84-34-160t-97-132-142-80v138q0 51-42 80 103 9 150 52t48 136q0 72-45 121 9 27 9 51 0 36-16 67-33 0-59-11t-63-37q-46 10-94 10-55 0-103-11-37 27-63 38t-61 11q-16-31-16-67 0-25 9-51-45-48-45-121 0-93 48-136t151-52q-27-19-38-54-24-8-50-8-19 0-34 8-4 3-8 5t-7 7-7 6-6 8-5 7-6 7-5 7q-23 30-55 30-17 0-17-7 0-3 9-10 15-13 16-14 12-10 13-12 14-18 22-39 27-61 93-61 11 0 42 5v-103q-80 25-142 80t-96 132-35 160z" horiz-adv-x="937.5" />
30
+
31
+ <glyph glyph-name="link-ext" unicode="&#xf08e;" d="M786 332v-178q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h393q7 0 12-5t5-13v-36q0-8-5-13t-12-5h-393q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v178q0 8 5 13t13 5h36q8 0 13-5t5-13z m214 482v-285q0-15-11-25t-25-11-25 11l-98 98-364-364q-5-6-13-6t-12 6l-64 64q-6 5-6 12t6 13l364 364-98 98q-11 11-11 25t11 25 25 11h285q15 0 25-11t11-25z" horiz-adv-x="1000" />
32
+
33
+ <glyph glyph-name="terminal-1" unicode="&#xf120;" d="M327 302l-261-261q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l261-260q5-5 5-13t-5-12z m602-256v-35q0-8-5-13t-13-5h-536q-8 0-13 5t-5 13v35q0 8 5 13t13 5h536q8 0 13-5t5-13z" horiz-adv-x="928.6" />
34
+
35
+ <glyph glyph-name="play-circled" unicode="&#xf144;" d="M429 779q116 0 215-58t156-156 57-215-57-215-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58z m214-460q18 10 18 31t-18 31l-304 178q-17 11-35 1-18-11-18-31v-358q0-20 18-31 9-4 17-4 10 0 18 5z" horiz-adv-x="857.1" />
36
+
37
+ <glyph glyph-name="link-ext-alt" unicode="&#xf14c;" d="M714 332v268q0 15-10 25t-25 11h-268q-24 0-33-22-10-23 8-39l80-80-298-298q-11-11-11-26t11-25l57-57q11-10 25-10t25 10l298 298 81-80q10-11 25-11 6 0 14 3 21 10 21 33z m143 286v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
38
+
39
+ <glyph glyph-name="youtube-squared" unicode="&#xf166;" d="M513 123v88q0 27-16 27-10 0-19-8v-125q9-9 19-9 16 0 16 27z m103 68h36v19q0 28-18 28t-18-28v-19z m-319 148v-39h-45v-236h-41v236h-44v39h130z m112-70v-205h-37v23q-22-25-43-25-18 0-23 15-3 10-3 30v162h36v-151q0-13 1-14 0-8 8-8 11 0 24 17v156h37z m141-62v-81q0-29-4-41-7-23-30-23-19 0-38 22v-20h-37v275h37v-89q18 22 38 22 23 0 30-24 4-11 4-41z m140-72v-5q0-16-1-24-2-12-9-22-15-22-44-22-29 0-46 21-11 15-11 48v72q0 33 11 48 16 21 45 21t43-21q12-16 12-48v-43h-74v-36q0-28 19-28 13 0 16 14 0 1 1 4t0 9v12h38z m-252 460v-87q0-28-18-28t-18 28v87q0 29 18 29t18-29z m298-398q0 99-11 145-6 25-24 41t-42 20q-76 8-230 8-154 0-230-8-24-3-42-20t-24-41q-11-48-11-145 0-98 11-145 5-24 24-41t42-19q76-9 230-9t230 9q24 2 42 19t23 41q12 47 12 145z m-422 363l50 166h-41l-29-109-29 109h-44q4-13 13-39l13-38q20-58 26-89v-112h41v112z m161-45v73q0 32-11 48-16 22-44 22-28 0-43-22-12-16-12-48v-73q0-32 12-48 15-22 43-22 28 0 44 22 11 15 11 48z m102-67h37v207h-37v-158q-13-17-24-17-8 0-9 8 0 2 0 15v152h-38v-164q0-20 4-30 6-16 24-16 20 0 43 26v-23z m280 170v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
40
+
41
+ <glyph glyph-name="youtube" unicode="&#xf167;" d="M542 156v-118q0-37-22-37-13 0-25 12v168q12 12 25 12 22 0 22-37z m189-1v-25h-51v25q0 38 25 38t26-38z m-540 122h60v52h-174v-52h59v-318h55v318z m161-318h50v276h-50v-211q-17-23-32-23-10 0-11 11-1 2-1 20v203h-50v-218q0-28 5-41 7-21 32-21 27 0 57 34v-30z m240 83v110q0 41-5 55-10 31-40 31-28 0-52-30v121h-50v-370h50v27q25-31 52-31 30 0 40 31 5 15 5 56z m188 6v7h-51q0-29-1-34-4-20-22-20-26 0-26 38v49h100v57q0 44-15 65-22 28-59 28-38 0-60-28-15-21-15-65v-96q0-44 16-65 22-29 60-29 40 0 60 30 10 15 12 30 1 5 1 33z m-339 509v117q0 39-24 39t-24-39v-117q0-39 24-39t24 39z m401-419q0-131-14-195-8-33-33-56t-57-25q-102-12-309-12t-310 12q-32 3-57 25t-32 56q-15 62-15 195 0 131 15 195 7 33 32 56t57 26q103 11 310 11t309-11q33-4 58-26t32-56q14-62 14-195z m-557 712h57l-67-223v-151h-56v151q-8 42-34 119-21 57-37 104h60l39-147z m207-186v-97q0-46-16-66-21-29-59-29-37 0-59 29-15 21-15 66v97q0 45 15 66 22 28 59 28 38 0 59-28 16-21 16-66z m187 91v-279h-51v31q-30-35-58-35-25 0-33 21-4 13-4 42v220h51v-205q0-19 0-20 2-12 12-12 15 0 32 24v213h51z" horiz-adv-x="857.1" />
42
+
43
+ <glyph glyph-name="youtube-play" unicode="&#xf16a;" d="M397 221l270 139-270 141v-280z m103 481q94 0 181-3t128-5l41-2q0 0 9-1t13-2 13-2 16-5 16-7 17-11 16-15q4-3 9-10t16-33 15-56q4-36 7-76t3-64v-98q1-81-10-162-4-30-14-55t-18-35l-8-9q-7-8-16-15t-17-10-16-7-16-5-13-2-13-2-9-1q-140-11-350-11-115 2-201 4t-111 4l-28 3-20 2q-20 3-30 5t-29 12-31 23q-4 3-9 10t-16 33-15 56q-4 36-7 76t-3 64v98q-1 81 10 162 4 31 14 55t18 35l8 9q8 9 16 15t17 11 16 7 16 5 13 2 13 2 9 1q140 10 350 10z" horiz-adv-x="1000" />
44
+
45
+ <glyph glyph-name="file-code" unicode="&#xf1c9;" d="M819 638q16-16 27-42t11-50v-642q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38v892q0 23 16 38t38 16h500q22 0 49-11t42-27z m-248 136v-210h210q-5 17-12 23l-175 175q-6 7-23 12z m215-853v572h-232q-23 0-38 16t-16 37v233h-429v-858h715z m-518 500q4 7 12 7t13-3l28-21q7-5 7-12t-3-13l-102-136 102-136q4-6 3-13t-7-12l-28-21q-6-4-13-4t-12 7l-126 168q-8 11 0 22z m447-167q8-11 0-22l-126-168q-4-6-11-7t-14 4l-28 21q-6 5-7 12t3 13l102 136-102 136q-4 6-3 13t7 12l28 21q6 4 14 3t11-7z m-346-258q-7 1-11 8t-3 13l77 464q1 7 7 11t14 3l35-5q7-2 11-8t3-13l-77-464q-1-7-7-11t-13-3z" horiz-adv-x="857.1" />
46
+
47
+ <glyph glyph-name="newspaper" unicode="&#xf1ea;" d="M571 564h-214v-214h214v214z m72-357v-71h-357v71h357z m0 429v-357h-357v357h357z m357-429v-71h-286v71h286z m0 143v-71h-286v71h286z m0 143v-72h-286v72h286z m0 143v-72h-286v72h286z m-857-536v536h-72v-536q0-14 11-25t25-11 25 11 11 25z m928 0v607h-857v-607q0-18-6-36h828q14 0 25 11t10 25z m72 679v-679q0-45-31-76t-76-31h-929q-44 0-76 31t-31 76v607h143v72h1000z" horiz-adv-x="1142.9" />
48
+
49
+ <glyph glyph-name="cart-plus" unicode="&#xf217;" d="M679 457q0 15-11 25t-25 11h-72v71q0 15-10 25t-25 11-25-11-11-25v-71h-71q-15 0-25-11t-11-25 11-25 25-11h71v-71q0-14 11-25t25-11 25 11 10 25v71h72q14 0 25 11t11 25z m-322-464q0-30-21-51t-50-21-51 21-21 51 21 50 51 21 50-21 21-50z m500 0q0-30-21-51t-50-21-51 21-21 51 21 50 51 21 50-21 21-50z m72 607v-286q0-13-9-23t-23-12l-583-68q1-4 3-12t3-15 1-13q0-8-13-35h513q15 0 26-11t10-25-10-25-26-11h-571q-14 0-25 11t-11 25q0 8 6 22t17 33 11 22l-98 459h-114q-15 0-25 10t-11 25 11 26 25 10h143q9 0 16-3t11-9 7-14 4-15 3-16 3-14h670q14 0 25-11t11-25z" horiz-adv-x="928.6" />
50
+
51
+ <glyph glyph-name="github" unicode="&#xf300;" d="M620 286q26 0 45-26t19-64-19-64-45-26q-28 0-47 26t-19 64 19 64 47 26z m226 234q74-80 74-194 0-74-17-133t-43-96-64-65-70-41-73-20-62-8-45-1q-6 0-36-1t-50-1-50 1-36 1q-24 0-45 1t-62 8-73 20-70 41-64 65-43 96-17 133q0 114 74 194-8 4-1 80t33 140q92-10 228-104 46 12 126 12 84 0 126-12 62 42 119 68t83 30l26 6q26-64 33-140t-1-80z m-384-514q166 0 251 40t85 164q0 72-54 120-28 26-65 32t-113 0-104-6l-4 0q-32 0-83 4t-80 5-63-7-56-28q-52-46-52-120 0-124 84-164t250-40l4 0z m-160 280q26 0 45-26t19-64-19-64-45-26q-28 0-47 26t-19 64 19 64 47 26z" horiz-adv-x="920" />
52
+
53
+ <glyph glyph-name="github-circled" unicode="&#xf301;" d="M480 354q16 0 42 2t41 2 32-4 29-14q26-26 26-60 0-64-43-84t-127-20-127 20-43 84q0 34 26 60 12 10 29 14t32 4 41-2 42-2z m-80-128q14 0 23 14t9 32q0 46-32 46t-32-46q0-18 9-32t23-14z m160 0q14 0 24 14t10 32q0 20-10 33t-24 13q-32 0-32-46 0-18 9-32t23-14z m-80 604q200 0 340-140t140-340q0-198-140-339t-340-141q-198 0-339 141t-141 339q0 200 141 340t339 140z m44-676q188 0 188 184 0 56-38 98 4 4 1 41t-17 71q-44-6-114-52-20 6-64 6-40 0-64-6-30 20-59 33t-41 17l-14 2q-14-34-17-71t1-41q-38-42-38-98 0-184 188-184l88 0z" horiz-adv-x="960" />
54
+
55
+ <glyph glyph-name="flickr" unicode="&#xf303;" d="M196 150q-80 0-138 59t-58 141q0 84 57 142t139 58 139-58 57-142q0-82-58-141t-138-59z m508 0q-80 0-138 59t-58 141q0 84 57 142t139 58 139-58 57-142q0-82-58-141t-138-59z" horiz-adv-x="900" />
56
+
57
+ <glyph glyph-name="flickr-circled" unicode="&#xf304;" d="M480 830q200 0 340-140t140-340q0-198-140-339t-340-141q-198 0-339 141t-141 339q0 200 141 340t339 140z m-128-580q40 0 70 30t30 70q0 42-30 72t-70 30-70-30-30-72q0-40 30-70t70-30z m256 0q42 0 71 30t29 70q0 42-29 72t-71 30q-40 0-69-30t-29-72q0-40 29-70t69-30z" horiz-adv-x="960" />
58
+
59
+ <glyph glyph-name="twitter" unicode="&#xf309;" d="M920 636q-36-54-94-98l0-24q0-130-60-250t-186-203-290-83q-160 0-290 84 14-2 46-2 132 0 234 80-62 2-110 38t-66 94q10-4 34-4 26 0 50 6-66 14-108 66t-42 120l0 2q36-20 84-24-84 58-84 158 0 48 26 94 154-188 390-196-6 18-6 42 0 78 55 133t135 55q82 0 136-58 60 12 120 44-20-66-82-104 56 8 108 30z" horiz-adv-x="920" />
60
+
61
+ <glyph glyph-name="twitter-circled" unicode="&#xf30a;" d="M480 830q200 0 340-140t140-340q0-198-140-339t-340-141q-198 0-339 141t-141 339q0 200 141 340t339 140z m196-392q30 22 46 48-32-12-54-14 30 18 42 52-30-16-60-22-28 28-70 28-40 0-67-28t-27-66q0-2 1-10t1-12q-120 6-194 100-14-24-14-48 0-50 44-78-26 0-44 12l0-2q0-34 21-60t55-32q-16-4-24-4-12 0-18 2 20-66 88-66-50-40-118-40l-22 0q68-42 144-42 122 0 196 83t74 187l0 12z" horiz-adv-x="960" />
62
+
63
+ <glyph glyph-name="facebook" unicode="&#xf30c;" d="M500 644l-142 0q-14 0-25-15t-11-37l0-102 178 0 0-148-178 0 0-442-170 0 0 442-152 0 0 148 152 0 0 86q0 94 59 159t147 65l142 0 0-156z" horiz-adv-x="500" />
64
+
65
+ <glyph glyph-name="facebook-circled" unicode="&#xf30d;" d="M480 830q200 0 340-140t140-340q0-198-140-339t-340-141-340 141-140 339q0 200 140 340t340 140z m114-330l0 78-72 0q-44 0-74-33t-30-81l0-44-76 0 0-74 76 0 0-222 86 0 0 222 90 0 0 74-90 0 0 52q0 28 18 28l72 0z" horiz-adv-x="960" />
66
+
67
+ <glyph glyph-name="facebook-squared" unicode="&#xf30e;" d="M752 770q44 0 76-31t32-75l0-646q0-44-32-76t-76-32l-162 0 0 310 114 0 0 134-114 0 0 70q0 30 28 30l86 0 0 152-96 0q-74 0-124-54t-50-132l0-66-104 0 0-134 104 0 0-310-326 0q-44 0-76 32t-32 76l0 646q0 44 32 75t76 31l644 0z" horiz-adv-x="860" />
68
+
69
+ <glyph glyph-name="pinterest" unicode="&#xf312;" d="M320 190q-26-130-58-211t-96-129q-6 74-7 120t11 110 22 104 26 99 24 99q-24 52-19 116t48 106 99 20q40-16 44-59t-13-95-32-103-4-90 63-49q68-14 121 38t74 131 11 163-54 128q-62 64-151 70t-163-33-120-117-32-170q4-22 22-52t21-47-17-67q-146 34-140 230 4 138 105 234t233 112q164 18 290-57t144-219q26-176-66-317t-252-129q-22 2-42 9t-30 13-31 21-31 21z" horiz-adv-x="778" />
70
+
71
+ <glyph glyph-name="pinterest-circled" unicode="&#xf313;" d="M480 830q200 0 340-140t140-340q0-198-140-339t-340-141-340 141-140 339q0 200 140 340t340 140z m32-592q82-8 128 64t34 162q-10 72-74 110t-146 28q-66-8-117-56t-53-118q-4-100 70-116 10 24 9 33t-10 24-11 27q-14 96 78 144t158-18q48-48 20-148t-98-86q-40 8-33 54t24 86-21 60q-42 18-65-33t1-89q-4-20-21-83t-18-87 1-98q52 38 78 172 46-30 66-32z" horiz-adv-x="960" />
72
+
73
+ <glyph glyph-name="linkedin" unicode="&#xf318;" d="M204 698q0-40-29-68t-75-28q-44 0-72 28t-28 68q0 42 28 69t74 27 73-27 29-69z m-198-790l0 618 192 0 0-618-192 0z m306 420q0 86-4 198l166 0 10-86 4 0q60 100 190 100 100 0 161-67t61-199l0-366-192 0 0 342q0 134-98 134-70 0-98-72-6-12-6-48l0-356-194 0 0 420z" horiz-adv-x="900" />
74
+
75
+ <glyph glyph-name="linkedin-circled" unicode="&#xf319;" d="M480 830q200 0 340-140t140-340q0-198-140-339t-340-141q-198 0-339 141t-141 339q0 200 141 340t339 140z m-118-678l0 312-96 0 0-312 96 0z m-48 352q52 0 52 48t-52 48q-22 0-37-14t-15-34q0-48 52-48z m404-352l0 184q0 66-31 101t-81 35q-66 0-96-50l-2 0-6 42-84 0q2-28 2-100l0-212 98 0 0 180q0 18 4 24 12 38 50 38 48 0 48-68l0-174 98 0z" horiz-adv-x="960" />
76
+
77
+ <glyph glyph-name="spotify-circled" unicode="&#xf328;" d="M480 830q198 0 339-140t141-340q0-120-56-224t-152-170q-108 186-338 192-176 6-296-114-118 138-118 316 0 200 140 340t340 140z m234-650q14 26-10 40-188 114-460 54-30-8-22-36 8-30 36-22 246 58 416-46 26-14 40 10z m58 136q18 34-12 50-110 68-256 85t-276-21q-34-10-24-46 10-34 46-26 112 34 244 19t228-73q32-20 50 12z m4 142q38-24 62 14 20 38-16 62-126 74-314 89t-306-27q-18-4-27-21t-3-33q6-18 22-27t34-3q102 36 271 23t277-77z m-364-454q130-4 186-118-60-16-118-16-126 0-234 62 66 74 166 72z" horiz-adv-x="960" />
78
+
79
+ <glyph glyph-name="instagram" unicode="&#xf32d;" d="M690 350q0 26-6 50l176 0 0-344q0-56-39-96t-95-40l-592 0q-56 0-95 40t-39 96l0 344 174 0q-4-32-4-50 0-106 76-183t184-77q106 0 183 77t77 183z m36 430q56 0 95-39t39-95l0-146-218 0q-78 110-212 110-138 0-212-110l-218 0 0 146q0 56 39 95t95 39l592 0z m64-166l0 72q0 24-24 24l-72 0q-24 0-24-24l0-72q0-8 7-16t17-8l72 0q24 0 24 24z m-200-264q0-66-47-113t-113-47-113 47-47 113q0 68 47 114t113 46 113-46 47-114z" horiz-adv-x="860" />
80
+ </font>
81
+ </defs>
82
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg height="1024" width="896" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M128 768h256v64H128v-64z m320-384H128v64h320v-64z m128 192V448L384 640l192 192V704h320V576H576z m-288-64H128v64h160v-64zM128 704h160v-64H128v64z m576 64h64v128c-1 18-7 33-19 45s-27 18-45 19H64c-35 0-64-29-64-64V192c0-35 29-64 64-64h192C256 57 313 0 384 0s128 57 128 128h192c35 0 64 29 64 64v320h-64V320H64v576h640V768zM128 256h512c0-35-29-64-64-64h-64c-35 0-64-29-64-64s-29-64-64-64-64 29-64 64-29 64-64 64h-64c-35 0-64 29-64 64z" />
3
+ </svg>
@@ -1,261 +1,298 @@
1
- // Hide all navigation sub menus on window click
2
- $(window).click(function() {
3
- $(".dropdown-submenu.sub-menu > .dropdown-menu.sub-menu").hide();
4
- });
5
- $(document).ready(function () {
6
- // Clipboard JS
7
- if($("div.highlight").length > 0){
8
- $('div.highlight').each(function (index) {
9
- var uniqueId = "highlight" + index;
10
- $(this).attr("id", uniqueId);
11
- var copyBtn = '<button id="copyBtn' + index + '" data-toggle="tooltip" data-placement="left" title="Copied to Clipboard" class="btn copyBtn" data-clipboard-target="#' + uniqueId + '">';
12
- copyBtn += '<img src="https://clipboardjs.com/assets/images/clippy.svg" width="13" alt="Copy to clipboard"></button>';
13
- $(this).append(copyBtn);
14
- (function () {
15
- new ClipboardJS('#copyBtn' + index);
16
- })();
17
-
18
- });
19
- }
20
- if ($("#jumbotron-slider").length > 0 ){
21
- $("#jumbotron-slider").owlCarousel({
22
- navigation: true,
23
- slideSpeed: 300,
24
- autoplayTimeout: 10000,
25
- paginationSpeed: 400,
26
- pagination: false,
27
- rewindSpeed: 500,
28
- rewind: true,
29
- autoplay: true,
30
- items: 1,
31
- lazyLoadEager: 0,
32
- loop: false,
33
- lazyLoad: true,
34
- dots: true
35
- });
36
- }
37
- if ($(".owl-carousel.slider-block").length > 0 ){
38
- $(".owl-carousel.slider-block").each(function(index){
39
-
40
- // Set Default values for the responsive items
41
- var xs_items = 1;
42
- var sm_items = 2;
43
- var xs_items = 3;
44
- var lg_items = 4;
45
- var seconds_per_slide = 5000;
46
- var dots = false;
47
- var nav = true;
48
-
49
- if(typeof $(this).data("xs-number") !== "undefined"){
50
- var xs_items = $(this).data("xs-number");
51
- }
52
- if(typeof $(this).data("sm-number") !== "undefined"){
53
- var sm_items = $(this).data("sm-number");
54
- }
55
- if(typeof $(this).data("md-number") !== "undefined"){
56
- var md_items = $(this).data("md-number");
57
- }
58
- if(typeof $(this).data("lg-number") !== "undefined"){
59
- var lg_items = $(this).data("lg-number");
60
- }
61
- if(typeof $(this).data("seconds-per-slide") !== "undefined"){
62
- var seconds_per_slide = $(this).data("seconds-per-slide") * 1000;
63
- }
64
- if(typeof $(this).data("dots") !== "undefined"){
65
- var dots = $(this).data("dots");
66
- }
67
- if(typeof $(this).data("nav") !== "undefined"){
68
- var nav = $(this).data("nav") * 1000;
69
- }
70
-
71
- $(this).owlCarousel({
72
- nav: nav,
73
- dots: dots,
74
- slideSpeed: 300,
75
- autoplayTimeout: seconds_per_slide,
76
- rewindSpeed: 500,
77
- rewind: true,
78
- autoplay: true,
79
- autoHeight: true,
80
- responsiveClass: true,
81
- lazyLoad: true,
82
- lazyLoadEager: 0,
83
- responsive: {
84
- // breakpoint from 0 up
85
- 0: {
86
- items: xs_items
87
- },
88
- // breakpoint from 480 up
89
- 1000: {
90
- items: sm_items
91
- },
92
- // breakpoint from 768 up
93
- 1200: {
94
- items: md_items
95
- },
96
- 1400: {
97
- items: lg_items
98
- }
99
- }
100
- });
101
- });
102
-
103
- }
104
-
105
- // Double Scroll Plugin
106
- if($(".double-scroll").length > 0){
107
- $(".double-scroll").doubleScroll({
108
- resetOnWindowResize: true,
109
- onlyIfScroll: true
110
- });
111
- }
112
- // Toggle the sub menu when clicked.
113
- $('.dropdown-submenu.sub-menu a').on("click", function (e) {
114
- if ($(this).hasClass("active")) {
115
- $(this).next('ul').hide();
116
- $(this).removeClass("active");
117
- }
118
- else {
119
- $(".dropdown-menu.sub-menu").hide();
120
- $(".dropdown-submenu.sub-menu a").removeClass("active");
121
- $(this).next('ul').show();
122
- $(this).addClass("active");
123
- }
124
- e.stopPropagation();
125
- });
126
- // Theme navbar setup
127
- var wrapper = $('#wrapper');
128
- var universalNav = false;
129
- var universalNavHeight = 0;
130
- if($("#universal-nav").length > 0){
131
- var universalNav = $('#universal-nav');
132
- var universalNavHeight = $("#universal-nav").height();
133
- }
134
- var stickyOffset = $('#main-navigation').offset().top;
135
- var wrapper = $('#wrapper');
136
-
137
- function navbar() {
138
- // Main Navigation Selector
139
- var sticky = $('#main-navigation');
140
- // Scroll value
141
- var scroll = $(window).scrollTop();
142
-
143
- if (scroll > stickyOffset) {
144
- sticky.removeClass('navbar-static');
145
- if(universalNav === false){
146
- wrapper.css('margin-top', "66px");
147
- }
148
- else{
149
- wrapper.css('margin-top', "104px");
150
- }
151
-
152
- if (universalNav) {
153
- universalNav.hide();
154
- }
155
-
156
- sticky.addClass('navbar-fixed-top');
157
- }
158
- else {
159
- sticky.removeClass('navbar-fixed-top');
160
- wrapper.css('margin-top', '0px');
161
-
162
- if (universalNav) {
163
- universalNav.slideDown(100);
164
- }
165
-
166
- sticky.addClass('navbar-static');
167
- }
168
- }
169
- navbar();
170
- $(window).scroll(function () {
171
- navbar();
172
- });
173
-
174
- // Initialise dropdowns
175
- $('.dropdown-toggle').dropdown();
176
- // Reset forms when bootstrap modal closes.
177
- $('.modal').on('hidden.bs.modal', function(){
178
- $(this).find('form')[0].reset();
179
- });
180
- // Stacked Navbar
181
- $('#stacked-nav-bar').on('hidden.bs.collapse', function() {
182
- $('.nav-pills').removeClass('nav-stacked');
183
- });
184
- // Scrolling sticking on IOS7 (Bug fix)
185
- if (navigator.userAgent.match(/.*CPU.*OS 7_\d/i)){$('html').addClass('ios7');}
186
- // Dropdown menu JS
187
- $('nav li.dropdown.main > ul.dropdown-menu [data-toggle=dropdown]').on('click', function(event) {
188
- event.preventDefault();
189
- event.stopPropagation();
190
- $(this).parent().addClass('open');
191
- var menu = $(this).parent().find("ul");
192
- var menupos = menu.offset();
193
- if ((menupos.left + menu.width()) + 30 > $(window).width()) {
194
- var newpos = - menu.width();
195
- } else {
196
- var newpos = $(this).parent().width();
197
- }
198
- menu.css({ left:newpos });
199
- });
200
- // Remove any zoom class added to body
201
- $('body').css('zoom', '');
202
- // Open External links in a new tab
203
- $('a').each(function() {
204
- var a = new RegExp('/' + window.location.host + '/');
205
- if (!a.test(this.href)) {
206
- if($(this).attr("target") != "_self"){
207
- $(this).attr("target","_blank");
208
- }
209
- }
210
- });
211
- // Enabled permalinks to specific Bootstrap tabs
212
- var hash = document.location.hash;
213
- if (hash) {
214
- $('.nav-tabs a[href="'+hash+'"]').tab('show');
215
- }
216
- // Change hash for page-reload
217
- $('.nav-tabs a').on('shown', function (e) {
218
- window.location.hash = e.target.hash.replace("#", "#" + prefix);
219
- });
220
- // Carousel image header - Lazy loading the carousel images
221
- var cHeight = 0;
222
- $('#header-carousel').on('slide.bs.carousel', function (e) {
223
- var $nextImage = null;
224
- $activeItem = $('.item.active', this);
225
- if (e.direction == 'left'){
226
- $nextImage = $activeItem.next('.item');
227
- } else {
228
- if ($activeItem.index() == 0){
229
- $nextImage = $('div:last', $activeItem.parent());
230
- } else {
231
- $nextImage = $activeItem.prev('.item');
232
- }
233
- }
234
- // prevents the slide decrease in height
235
- if (cHeight == 0) {
236
- cHeight = $(this).height();
237
- $activeItem.next('.item').height(cHeight);
238
- }
239
- // prevents the loaded image if it is already loaded
240
- var src = $nextImage.attr('data-src');
241
- if (typeof src !== "undefined" && src != "") {
242
- $nextImage.css('background-image', 'url(' + src + ')');
243
- $nextImage.data('data-src', '');
244
- }
245
- });
246
- // Cookie Consent Setup
247
- window.addEventListener("load", function(){
248
- window.cookieconsent.initialise({
249
- "palette": {
250
- "popup": {
251
- "background": "#000000",
252
- "text": "#fff"
253
- },
254
- "button": {
255
- "background": "transparent",
256
- "text": "#ffffff",
257
- "border": "#25cfb0"
258
- }
259
- }
260
- })});
261
- });
1
+ $(document).ready(function() {
2
+ // Clipboard JS
3
+ if ($("div.highlight").length > 0) {
4
+ $("div.highlight").each(function(index) {
5
+ var uniqueId = "highlight" + index;
6
+ $(this).attr("id", uniqueId);
7
+ var copyBtn =
8
+ '<button id="copyBtn' +
9
+ index +
10
+ '" data-toggle="tooltip" data-placement="bottom" title="Copy to Clipboard" class="btn copyBtn" data-clipboard-target="#' +
11
+ uniqueId +
12
+ '">';
13
+ copyBtn +=
14
+ '<img src="/assets/images/clipboard.svg" width="13" alt="Copy to clipboard"></button>';
15
+ $(this).append(copyBtn);
16
+ (function() {
17
+ new ClipboardJS("#copyBtn" + index);
18
+ })();
19
+ $("#copyBtn" + index).on("click", function() {
20
+ $(this)
21
+ .attr("title", "Copied!")
22
+ .tooltip("_fixTitle")
23
+ .tooltip("show")
24
+ .attr("title", "Copy to clipboard")
25
+ .tooltip("_fixTitle");
26
+ });
27
+ });
28
+ }
29
+ if ($("#jumbotron-slider").length > 0) {
30
+ $("#jumbotron-slider").owlCarousel({
31
+ navigation: true,
32
+ slideSpeed: 300,
33
+ autoplayTimeout: 10000,
34
+ paginationSpeed: 400,
35
+ pagination: false,
36
+ rewindSpeed: 500,
37
+ rewind: true,
38
+ autoplay: true,
39
+ items: 1,
40
+ lazyLoadEager: 0,
41
+ loop: false,
42
+ lazyLoad: true,
43
+ dots: true
44
+ });
45
+ }
46
+ if ($(".owl-carousel.slider_block").length > 0) {
47
+ $(".owl-carousel.slider_block").each(function(index) {
48
+ // Set Default values for the responsive items
49
+ var xs_items = 1;
50
+ var sm_items = 2;
51
+ var xs_items = 3;
52
+ var lg_items = 4;
53
+ var seconds_per_slide = 5000;
54
+ var dots = false;
55
+ var nav = true;
56
+
57
+ if (typeof $(this).data("xs-number") !== "undefined") {
58
+ var xs_items = $(this).data("xs-number");
59
+ }
60
+ if (typeof $(this).data("sm-number") !== "undefined") {
61
+ var sm_items = $(this).data("sm-number");
62
+ }
63
+ if (typeof $(this).data("md-number") !== "undefined") {
64
+ var md_items = $(this).data("md-number");
65
+ }
66
+ if (typeof $(this).data("lg-number") !== "undefined") {
67
+ var lg_items = $(this).data("lg-number");
68
+ }
69
+ if (typeof $(this).data("seconds-per-slide") !== "undefined") {
70
+ var seconds_per_slide = $(this).data("seconds-per-slide") * 1000;
71
+ }
72
+ if (typeof $(this).data("dots") !== "undefined") {
73
+ var dots = $(this).data("dots");
74
+ }
75
+ if (typeof $(this).data("nav") !== "undefined") {
76
+ var nav = $(this).data("nav") * 1000;
77
+ }
78
+
79
+ $(this).owlCarousel({
80
+ nav: nav,
81
+ dots: dots,
82
+ slideSpeed: 300,
83
+ autoplayTimeout: seconds_per_slide,
84
+ rewindSpeed: 500,
85
+ rewind: true,
86
+ autoplay: true,
87
+ autoHeight: true,
88
+ responsiveClass: true,
89
+ lazyLoad: true,
90
+ lazyLoadEager: 0,
91
+ responsive: {
92
+ // breakpoint from 0 up
93
+ 0: {
94
+ items: xs_items
95
+ },
96
+ // breakpoint from 480 up
97
+ 768: {
98
+ items: sm_items
99
+ },
100
+ // breakpoint from 768 up
101
+ 992: {
102
+ items: md_items
103
+ },
104
+ 1200: {
105
+ items: lg_items
106
+ }
107
+ }
108
+ });
109
+ });
110
+ }
111
+
112
+ // Double Scroll Plugin
113
+ if ($(".double-scroll").length > 0) {
114
+ $(".double-scroll").doubleScroll({
115
+ resetOnWindowResize: true,
116
+ onlyIfScroll: true
117
+ });
118
+ }
119
+ // Theme navbar setup
120
+ var wrapper = $("#wrapper");
121
+ var universalNav = false;
122
+ // Main Navigation Selector
123
+ var main_nav = $("#main-navigation");
124
+ var wrapper_margin_top = main_nav.height();
125
+ if ($("#universal_nav").length > 0) {
126
+ var universalNav = $("#universal_nav");
127
+ wrapper_margin_top += universalNav.height();
128
+ }
129
+ var stickyOffset = $("#main-navigation").offset().top;
130
+ var wrapper = $("#wrapper");
131
+
132
+ function navbar() {
133
+ // Scroll value
134
+ var scroll = $(window).scrollTop();
135
+
136
+ if (scroll > stickyOffset) {
137
+ if (universalNav) {
138
+ universalNav.hide();
139
+ }
140
+ wrapper.css("margin-top", wrapper_margin_top);
141
+ main_nav.addClass("fixed-top");
142
+ } else {
143
+ main_nav.removeClass("fixed-top");
144
+ wrapper.css("margin-top", "0px");
145
+
146
+ if (universalNav) {
147
+ universalNav.show();
148
+ }
149
+ }
150
+ }
151
+ navbar();
152
+ $(window).scroll(function() {
153
+ navbar();
154
+ });
155
+
156
+ // Multi-level dropdowns
157
+ $(".navbar .dropdown-menu > li:not(.dropdown-item)").on("click", function(e) {
158
+ e.stopPropagation();
159
+ });
160
+ $(".navbar .dropdown-item").on("click", function(e) {
161
+ var $el = $(this).children(".dropdown-toggle");
162
+ var $parent = $el.offsetParent(".dropdown-menu");
163
+ if (!$parent.parent().hasClass("navbar-nav")) {
164
+ if ($parent.hasClass("show")) {
165
+ $parent.removeClass("show");
166
+ $el.next().removeClass("show");
167
+ $el.next().css({ top: -999, left: -999 });
168
+ } else {
169
+ $parent
170
+ .parent()
171
+ .find(".show")
172
+ .removeClass("show");
173
+ $parent.addClass("show");
174
+ $el.next().addClass("show");
175
+ $el
176
+ .next()
177
+ .css({ top: $el[0].offsetTop, left: $parent.outerWidth() - 4 });
178
+ }
179
+ e.preventDefault();
180
+ e.stopPropagation();
181
+ }
182
+ });
183
+
184
+ // Reset forms when bootstrap modal closes.
185
+ $(".modal").on("hidden.bs.modal", function() {
186
+ $(this)
187
+ .find("form")[0]
188
+ .reset();
189
+ });
190
+ // Stacked Navbar
191
+ $("#stacked-nav-bar").on("hidden.bs.collapse", function() {
192
+ $(".nav-pills").removeClass("nav-stacked");
193
+ });
194
+ // Scrolling sticking on IOS7 (Bug fix)
195
+ if (navigator.userAgent.match(/.*CPU.*OS 7_\d/i)) {
196
+ $("html").addClass("ios7");
197
+ }
198
+ // Open External links in a new tab
199
+ $("a").each(function() {
200
+ var a = new RegExp("/" + window.location.host + "/");
201
+ if (!a.test(this.href)) {
202
+ if ($(this).attr("target") != "_self") {
203
+ $(this).attr("target", "_blank");
204
+ }
205
+ }
206
+ });
207
+ // Enabled permalinks to specific Bootstrap tabs
208
+ var hash = document.location.hash;
209
+ if (hash) {
210
+ $('.nav-tabs a[href="' + hash + '"]').tab("show");
211
+ }
212
+ // Change hash for page-reload
213
+ $(".nav-tabs a").on("shown", function(e) {
214
+ window.location.hash = e.target.hash.replace("#", "#" + prefix);
215
+ });
216
+
217
+ // Cookie Consent Setup
218
+ if ($("meta[name=analytics_code]")) {
219
+ // Options for the Cookie Dialog
220
+ var options = {
221
+ title: "Cookies & Privacy Policy",
222
+ link: "https://www.linaro.org/legal/#privacy",
223
+ moreInfoLabel: "View our Privacy Policy",
224
+ delay: 1000,
225
+ acceptBtnLabel: "Accept all cookies",
226
+ uncheckBoxes: false,
227
+ message:
228
+ "Cookies enable you to use this website to the full extent and to personalize your experience on our sites. They tell us which parts of our websites people have visited, help us measure the effectiveness of ads and web searches and give us insights into user behavior so we can improve our communications with you.",
229
+ cookieTypes: [
230
+ {
231
+ type: "Analytics",
232
+ value: "analytics",
233
+ description: "Cookies related to site visits, browser types, etc."
234
+ }
235
+ ],
236
+ onAccept: function() {
237
+ init_ga();
238
+ }
239
+ };
240
+ // Enabled Google Analytics if cookie to allow us to collect is set.
241
+ function init_ga() {
242
+ if ($.fn.ihavecookies.preference("analytics")) {
243
+ (function(i, s, o, g, r, a, m) {
244
+ i["GoogleAnalyticsObject"] = r;
245
+ (i[r] =
246
+ i[r] ||
247
+ function() {
248
+ (i[r].q = i[r].q || []).push(arguments);
249
+ }),
250
+ (i[r].l = 1 * new Date());
251
+ (a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
252
+ a.async = 1;
253
+ a.src = g;
254
+ m.parentNode.insertBefore(a, m);
255
+ })(
256
+ window,
257
+ document,
258
+ "script",
259
+ "https://www.google-analytics.com/analytics.js",
260
+ "ga"
261
+ );
262
+ ga("create", "UA-XXXXX-Y", "auto");
263
+ ga("send", "pageview");
264
+ console.log("Google Analytics started");
265
+ } else {
266
+ console.log("Google analytics not started... :(");
267
+ }
268
+ }
269
+ // Initialize
270
+ init_ga();
271
+
272
+ if ($(".cookie_manager").length > 0) {
273
+ var analytics_toggle = $("#analytics_toggle");
274
+ if ($.fn.ihavecookies.preference("analytics")) {
275
+ analytics_toggle.addClass("active");
276
+ }
277
+ analytics_toggle.on("click", function() {
278
+ $.removeCookie("_ga");
279
+ $.removeCookie("_ga", { path: "/" });
280
+ $.removeCookie("_gid");
281
+ $.removeCookie("_gid", { path: "/" });
282
+ $.removeCookie("_gat");
283
+ $.removeCookie("_gat", { path: "/" });
284
+ $.removeCookie("cookieControlPrefs");
285
+ $.removeCookie("cookieControlPrefs", { path: "/" });
286
+ $.removeCookie("cookieControl");
287
+ $.removeCookie("cookieControl", { path: "/" });
288
+ options["analyticsChecked"] = false;
289
+ options["acceptBtnLabel"] = "Updated Cookies";
290
+ $("body").ihavecookies(options);
291
+ });
292
+ }
293
+ $("body").ihavecookies(options);
294
+ }
295
+ $(function() {
296
+ $('[data-toggle="tooltip"]').tooltip();
297
+ });
298
+ });