linaro-jekyll-theme 1.0 → 4.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE.txt +1 -1
- data/README.md +19 -50
- data/_config.yml +192 -0
- data/_data/footer.yml +27 -107
- data/_data/nav.yml +72 -61
- data/_data/picture.yml +151 -0
- data/_data/universal_nav.yml +22 -0
- data/_includes/blog/authors_posts.html +37 -0
- data/_includes/blog/blog_filler_element.html +21 -0
- data/_includes/blog/display_latest_posts.html +119 -0
- data/_includes/blog/disqus_comments.html +24 -0
- data/_includes/blog/latest_posts.html +11 -0
- data/_includes/blog/pagination.html +37 -0
- data/_includes/blog/post_search.html +11 -0
- data/_includes/blog/post_series.html +28 -0
- data/_includes/blog/post_sidebar.html +74 -0
- data/_includes/blog/read_time.html +7 -0
- data/_includes/components/breadcrumb.html +37 -0
- data/_includes/components/carousel_header.html +15 -0
- data/_includes/components/cookie_manager.html +72 -0
- data/_includes/components/css.html +8 -0
- data/_includes/components/github_edit.html +34 -0
- data/_includes/components/head.html +65 -0
- data/_includes/components/http2.html +57 -0
- data/_includes/components/javascript.html +10 -0
- data/_includes/components/jumbotron.html +83 -0
- data/_includes/components/linaro_404.html +16 -0
- data/_includes/components/schema.html +1 -0
- data/_includes/components/sidebar.html +55 -0
- data/_includes/examples/custom_include.html +10 -0
- data/_includes/examples/custom_include_row.html +562 -0
- data/_includes/flow/blocks.html +73 -0
- data/_includes/flow/button.html +6 -0
- data/_includes/flow/buttons.html +5 -0
- data/_includes/flow/call-to-action-banner.html +8 -0
- data/_includes/flow/collapse.html +21 -0
- data/_includes/flow/container_row.html +11 -0
- data/_includes/flow/feature_block.html +41 -0
- data/_includes/flow/flow_inner.html +29 -0
- data/_includes/flow/full_width_row.html +5 -0
- data/_includes/flow/image.html +12 -0
- data/_includes/flow/members-section.html +24 -0
- data/_includes/flow/slider.html +25 -0
- data/_includes/flow/slider_row.html +3 -0
- data/_includes/flow/tabbed_content.html +21 -0
- data/_includes/flow/text.html +3 -0
- data/_includes/flow/title.html +3 -0
- data/_includes/footer/footer.html +29 -0
- data/_includes/image.html +15 -4
- data/_includes/js_bundles/app.html +4 -0
- data/_includes/js_bundles/vendor.html +13 -0
- data/_includes/media.html +4 -4
- data/_includes/nav/brand.html +3 -0
- data/_includes/nav/nav.html +133 -0
- data/_includes/nav/universal_nav.html +36 -0
- data/_includes/social_media_icons.html +24 -0
- data/_includes/sticky-tab-bar.html +61 -0
- data/_includes/youtube.html +74 -6
- data/_layouts/author.html +61 -0
- data/_layouts/base.html +14 -0
- data/_layouts/default.html +2 -18
- data/_layouts/flow.html +33 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +56 -133
- data/{_layouts/about.html → _sass/app/blog.scss} +0 -0
- data/_sass/app/custom.scss +1 -0
- data/_sass/app/overrides.scss +43 -0
- data/_sass/app/search.scss +51 -0
- data/_sass/blog.scss +3 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +47 -0
- data/_sass/bootstrap/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/_button-group.scss +172 -0
- data/_sass/bootstrap/_buttons.scss +75 -100
- data/_sass/bootstrap/_card.scss +301 -0
- data/_sass/bootstrap/_carousel.scss +161 -195
- data/_sass/bootstrap/_close.scss +15 -16
- data/_sass/bootstrap/_code.scss +15 -36
- data/_sass/bootstrap/_custom-forms.scss +433 -0
- data/_sass/bootstrap/_dropdown.scss +166 -0
- data/_sass/bootstrap/_forms.scss +213 -497
- data/_sass/bootstrap/_functions.scss +86 -0
- data/_sass/bootstrap/_grid.scss +29 -61
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +173 -0
- data/_sass/bootstrap/_jumbotron.scss +9 -47
- data/_sass/bootstrap/_list-group.scss +64 -79
- data/_sass/bootstrap/_media.scss +3 -61
- data/_sass/bootstrap/_mixins.scss +19 -18
- data/_sass/bootstrap/_modal.scss +180 -0
- data/_sass/bootstrap/_nav.scss +118 -0
- data/_sass/bootstrap/_navbar.scss +192 -555
- data/_sass/bootstrap/_pagination.scss +59 -70
- data/_sass/bootstrap/_popover.scss +183 -0
- data/_sass/bootstrap/_print.scss +89 -49
- data/_sass/bootstrap/_progress.scss +34 -0
- data/_sass/bootstrap/_reboot.scss +483 -0
- data/_sass/bootstrap/_root.scss +19 -0
- data/_sass/bootstrap/_tables.scss +119 -166
- data/_sass/bootstrap/_tooltip.scss +93 -79
- data/_sass/bootstrap/_transitions.scss +22 -0
- data/_sass/bootstrap/_type.scss +66 -239
- data/_sass/bootstrap/_utilities.scss +15 -55
- data/_sass/bootstrap/_variables.scss +782 -727
- data/_sass/bootstrap/bootstrap-grid.scss +32 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +42 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +14 -5
- data/_sass/bootstrap/mixins/_badge.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +25 -8
- data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +84 -40
- data/_sass/bootstrap/mixins/_caret.scss +66 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +3 -18
- data/_sass/bootstrap/mixins/_float.scss +11 -0
- data/_sass/bootstrap/mixins/_forms.scss +125 -66
- data/_sass/bootstrap/mixins/_gradients.scss +17 -30
- data/_sass/bootstrap/mixins/_grid-framework.scss +52 -66
- data/_sass/bootstrap/mixins/_grid.scss +37 -107
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +18 -15
- data/_sass/bootstrap/mixins/_list-group.scss +10 -21
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +4 -4
- data/_sass/bootstrap/mixins/_pagination.scss +10 -12
- data/_sass/bootstrap/mixins/_reset-text.scss +7 -8
- data/_sass/bootstrap/mixins/_resize.scss +1 -1
- data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/mixins/_size.scss +1 -5
- data/_sass/bootstrap/mixins/_table-row.scss +16 -14
- data/_sass/bootstrap/mixins/_text-emphasis.scss +7 -5
- data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
- data/_sass/bootstrap/mixins/{_text-overflow.scss → _text-truncate.scss} +2 -2
- data/_sass/bootstrap/mixins/_transition.scss +13 -0
- data/_sass/bootstrap/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +59 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +38 -0
- data/_sass/bootstrap/{_responsive-embed.scss → utilities/_embed.scss} +26 -9
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +9 -0
- data/_sass/bootstrap/utilities/_position.scss +37 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +12 -0
- data/_sass/bootstrap/utilities/_spacing.scss +51 -0
- data/_sass/bootstrap/utilities/_text.scss +58 -0
- data/_sass/bootstrap/utilities/_visibility.scss +11 -0
- data/_sass/core.scss +15 -0
- data/_sass/core/blog.scss +242 -327
- data/_sass/core/bootstrap-multiselect.scss +1 -0
- data/_sass/core/breadcrumb.scss +16 -88
- data/_sass/core/carousel-header.scss +91 -0
- data/_sass/core/carousel-styles.scss +1 -0
- data/_sass/core/carousel.scss +188 -28
- data/_sass/core/cookies.scss +200 -0
- data/_sass/core/error.scss +190 -0
- data/_sass/core/featherlight.scss +158 -0
- data/_sass/core/flow.scss +94 -0
- data/_sass/core/fontello.scss +91 -0
- data/_sass/core/footer.scss +60 -132
- data/_sass/core/jumbotron.scss +105 -0
- data/_sass/core/navbar.scss +241 -0
- data/_sass/core/normalize.scss +358 -0
- data/_sass/core/syntax.scss +65 -62
- data/_sass/core/theme.scss +49 -440
- data/assets/css/main.scss +12 -18
- data/assets/fonts/fontello/fontello.eot +0 -0
- data/assets/fonts/fontello/fontello.svg +94 -0
- data/assets/fonts/fontello/fontello.ttf +0 -0
- data/assets/fonts/fontello/fontello.woff +0 -0
- data/assets/fonts/fontello/fontello.woff2 +0 -0
- data/assets/fonts/{lato-regular → lato}/LICENSE.txt +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.eot +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.svg +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.ttf +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.woff +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.woff2 +0 -0
- data/assets/images/{Linaro-Logo_standard.svg → Linaro-Logo.svg} +0 -0
- data/assets/images/Linaro-Sprinkle.png +0 -0
- data/assets/images/Linaro-logo-white.png +0 -0
- data/assets/images/{avatar-placeholder.png → avatar-placeholder.jpg} +0 -0
- data/assets/images/breadcrumb-image.jpg +0 -0
- data/assets/images/clipboard.svg +3 -0
- data/{_sass/core/forms.scss → assets/js/app/custom.js} +0 -0
- data/assets/js/app/main.js +360 -96
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/popper.min.js.map +1 -0
- data/assets/js/vendor/_popper.js +5 -0
- data/assets/js/vendor/bootstrap.js +6 -0
- data/assets/js/vendor/clipboard.min.js +7 -0
- data/assets/js/vendor/featherlight.js +641 -0
- data/assets/js/vendor/jquery.cookie.js +120 -0
- data/assets/js/vendor/jquery.ihavecookies.js +271 -0
- data/assets/js/vendor/jquery.js +10364 -0
- data/assets/js/vendor/lazysizes.js +698 -0
- data/assets/js/vendor/ls.unveilhooks.js +145 -0
- data/assets/js/vendor/owl.carousel.js +3907 -0
- data/assets/js/vendor/simple-jekyll-search.min.js +278 -0
- data/assets/json/posts.json +28 -0
- data/robots.txt +2 -2
- metadata +206 -233
- data/_data/authors.yml +0 -7
- data/_data/company.yml +0 -29
- data/_data/linaro.yml +0 -4
- data/_data/members_db.yaml +0 -115
- data/_data/news.yaml +0 -230
- data/_data/sub-nav-stacked.yml +0 -67
- data/_data/sub-nav.yml +0 -61
- data/_includes/_theme-includes/_blog/pagination.html +0 -39
- data/_includes/_theme-includes/_footer/footer.html +0 -85
- data/_includes/_theme-includes/_head/head.html +0 -35
- data/_includes/_theme-includes/_navigation/nav.html +0 -128
- data/_includes/_theme-includes/_navigation/stacked-nav.html +0 -20
- data/_includes/_theme-includes/_navigation/tabbed-nav.html +0 -35
- data/_includes/_theme-includes/_page-structure/breadcrumb.html +0 -101
- data/_includes/_theme-includes/_page-structure/home-hero-shape.html +0 -34
- data/_includes/_theme-includes/_page-structure/home-hero.html +0 -23
- data/_includes/_theme-includes/_page-structure/shape-divider.html +0 -12
- data/_includes/_theme-includes/_script-includes/css.html +0 -40
- data/_includes/_theme-includes/_script-includes/google-analytics/script.html +0 -10
- data/_includes/_theme-includes/_script-includes/gtm/gtm-noscript.html +0 -5
- data/_includes/_theme-includes/_script-includes/gtm/gtm-script.html +0 -9
- data/_includes/_theme-includes/_script-includes/javascript.html +0 -50
- data/_includes/_theme-includes/_third-party/disqus.html +0 -14
- data/_includes/_theme-includes/_third-party/mailchimp-homepage.html +0 -33
- data/_includes/_theme-includes/members.html +0 -63
- data/_includes/base.html +0 -14
- data/_includes/owl-carousel-homepage.html +0 -103
- data/_layouts/accessory-display-page.html +0 -88
- data/_layouts/blog-breadcrumbless.html +0 -49
- data/_layouts/blog.html +0 -56
- data/_layouts/contact.html +0 -10
- data/_layouts/default-empty.html +0 -11
- data/_layouts/default-no-sub-nav.html +0 -15
- data/_layouts/default-plain.html +0 -16
- data/_layouts/default-stacked-breadcrumb.html +0 -23
- data/_layouts/default-stacked.html +0 -22
- data/_layouts/empty.html +0 -10
- data/_layouts/fluid-no-sub-nav.html +0 -11
- data/_layouts/fluid.html +0 -15
- data/_layouts/home-shape.html +0 -18
- data/_layouts/home.html +0 -18
- data/_layouts/product-display-page.html +0 -262
- data/_layouts/project-display-page.html +0 -28
- data/_layouts/redirect.html +0 -11
- data/_sass/_bootstrap-compass.scss +0 -9
- data/_sass/_bootstrap-mincer.scss +0 -19
- data/_sass/_bootstrap-sprockets.scss +0 -9
- data/_sass/_bootstrap.scss +0 -56
- data/_sass/bootstrap/_alerts.scss +0 -73
- data/_sass/bootstrap/_badges.scss +0 -68
- data/_sass/bootstrap/_breadcrumbs.scss +0 -28
- data/_sass/bootstrap/_button-groups.scss +0 -244
- data/_sass/bootstrap/_component-animations.scss +0 -37
- data/_sass/bootstrap/_dropdowns.scss +0 -216
- data/_sass/bootstrap/_glyphicons.scss +0 -307
- data/_sass/bootstrap/_input-groups.scss +0 -171
- data/_sass/bootstrap/_labels.scss +0 -66
- data/_sass/bootstrap/_modals.scss +0 -150
- data/_sass/bootstrap/_navs.scss +0 -242
- data/_sass/bootstrap/_normalize.scss +0 -424
- data/_sass/bootstrap/_pager.scss +0 -54
- data/_sass/bootstrap/_panels.scss +0 -271
- data/_sass/bootstrap/_popovers.scss +0 -131
- data/_sass/bootstrap/_progress-bars.scss +0 -87
- data/_sass/bootstrap/_responsive-utilities.scss +0 -179
- data/_sass/bootstrap/_scaffolding.scss +0 -161
- data/_sass/bootstrap/_theme.scss +0 -291
- data/_sass/bootstrap/_thumbnails.scss +0 -38
- data/_sass/bootstrap/_wells.scss +0 -29
- data/_sass/bootstrap/mixins/_alerts.scss +0 -14
- data/_sass/bootstrap/mixins/_center-block.scss +0 -7
- data/_sass/bootstrap/mixins/_hide-text.scss +0 -21
- data/_sass/bootstrap/mixins/_labels.scss +0 -12
- data/_sass/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/_sass/bootstrap/mixins/_opacity.scss +0 -8
- data/_sass/bootstrap/mixins/_panels.scss +0 -24
- data/_sass/bootstrap/mixins/_progress-bar.scss +0 -10
- data/_sass/bootstrap/mixins/_reset-filter.scss +0 -8
- data/_sass/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/_sass/bootstrap/mixins/_tab-focus.scss +0 -9
- data/_sass/bootstrap/mixins/_vendor-prefixes.scss +0 -222
- data/_sass/core/animations.scss +0 -125
- data/_sass/core/cookieconsent.scss +0 -42
- data/_sass/core/custom.scss +0 -3
- data/_sass/core/fa.scss +0 -2336
- data/_sass/core/flipclock.scss +0 -435
- data/_sass/core/font-awesome.min.scss +0 -4
- data/_sass/core/fonts.scss +0 -7
- data/_sass/core/homepage.scss +0 -45
- data/_sass/core/lightbox.scss +0 -213
- data/_sass/core/nav.scss +0 -723
- data/_sass/core/old-search.scss +0 -239
- data/_sass/core/openhours.scss +0 -51
- data/_sass/core/products.scss +0 -221
- data/_sass/core/projects.scss +0 -32
- data/_sass/core/social-media-icons.scss +0 -71
- data/_sass/core/tables.scss +0 -125
- data/_sass/core/youtube.scss +0 -65
- data/_sass/custom.scss +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +0 -2671
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/fonts/fontello.eot +0 -0
- data/assets/fonts/fontello.svg +0 -44
- data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/images/96boards-Logo.svg +0 -1
- data/assets/images/Linaro-Logo_light.png +0 -0
- data/assets/images/Linaro-Sprinkle.svg +0 -13
- data/assets/images/background-image.jpg +0 -0
- data/assets/images/banner.jpg +0 -0
- data/assets/images/css3.png +0 -0
- data/assets/images/html5.png +0 -0
- data/assets/images/jekyll.svg +0 -1
- data/assets/images/js.jpeg +0 -0
- data/assets/images/placeholder.png +0 -0
- data/assets/js/app/search.js +0 -41
- data/assets/js/app/sticky.js +0 -76
- data/assets/js/app/tables.js +0 -8
- data/assets/js/vendor/bootstrap.min.js +0 -7
- data/assets/js/vendor/cognito-forms.js +0 -150
- data/assets/js/vendor/cookieconsent.min.js +0 -8
- data/assets/js/vendor/flipclock.min.js +0 -35
- data/assets/js/vendor/jquery.min.js +0 -4
- data/assets/js/vendor/lazysizes.min.js +0 -2
- data/assets/js/vendor/lightbox.min.js +0 -14
- data/assets/js/vendor/loadCSS.js +0 -79
- data/assets/js/vendor/mc-validate.js +0 -14
- data/assets/js/vendor/owl.carousel.min.js +0 -27
data/assets/css/main.scss
CHANGED
@@ -1,20 +1,14 @@
|
|
1
1
|
---
|
2
2
|
---
|
3
|
-
@
|
4
|
-
|
5
|
-
@import
|
6
|
-
@import
|
7
|
-
|
8
|
-
@import "
|
9
|
-
|
10
|
-
@import
|
11
|
-
|
12
|
-
@import "core
|
13
|
-
|
14
|
-
@import "
|
15
|
-
@import "core/owl.theme.default.min";
|
16
|
-
@import "core/social-media-icons";
|
17
|
-
@import "core/breadcrumb";
|
18
|
-
@import "core/tables";
|
19
|
-
|
20
|
-
@import "core/animations";
|
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";
|
13
|
+
// Custom sass and css rules
|
14
|
+
@import "app/custom";
|
Binary file
|
@@ -0,0 +1,94 @@
|
|
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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="minus" unicode="" d="M786 439v-107q0-22-16-38t-38-15h-678q-23 0-38 15t-16 38v107q0 23 16 38t38 16h678q23 0 38-16t16-38z" horiz-adv-x="785.7" />
|
30
|
+
|
31
|
+
<glyph glyph-name="minus-circled" unicode="" d="M679 314v72q0 14-11 25t-25 10h-429q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h429q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
|
32
|
+
|
33
|
+
<glyph glyph-name="plus" unicode="" d="M786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q23 0 38-16t16-38z" horiz-adv-x="785.7" />
|
34
|
+
|
35
|
+
<glyph glyph-name="plus-circled" unicode="" d="M679 314v72q0 14-11 25t-25 10h-143v143q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-143h-143q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h143v-143q0-15 11-25t25-11h71q15 0 25 11t11 25v143h143q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
|
36
|
+
|
37
|
+
<glyph glyph-name="down-open" unicode="" d="M939 399l-414-413q-10-11-25-11t-25 11l-414 413q-11 11-11 26t11 25l93 92q10 11 25 11t25-11l296-296 296 296q11 11 25 11t26-11l92-92q11-11 11-25t-11-26z" horiz-adv-x="1000" />
|
38
|
+
|
39
|
+
<glyph glyph-name="up-open" unicode="" d="M939 107l-92-92q-11-10-26-10t-25 10l-296 297-296-297q-11-10-25-10t-25 10l-93 92q-11 11-11 26t11 25l414 414q11 10 25 10t25-10l414-414q11-11 11-25t-11-26z" horiz-adv-x="1000" />
|
40
|
+
|
41
|
+
<glyph glyph-name="github-circled-alt2" unicode="" 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" />
|
42
|
+
|
43
|
+
<glyph glyph-name="link-ext" unicode="" 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" />
|
44
|
+
|
45
|
+
<glyph glyph-name="terminal-1" unicode="" 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" />
|
46
|
+
|
47
|
+
<glyph glyph-name="play-circled" unicode="" 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" />
|
48
|
+
|
49
|
+
<glyph glyph-name="link-ext-alt" unicode="" 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" />
|
50
|
+
|
51
|
+
<glyph glyph-name="youtube-squared" unicode="" 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" />
|
52
|
+
|
53
|
+
<glyph glyph-name="youtube" unicode="" 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" />
|
54
|
+
|
55
|
+
<glyph glyph-name="youtube-play" unicode="" 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" />
|
56
|
+
|
57
|
+
<glyph glyph-name="file-code" unicode="" 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" />
|
58
|
+
|
59
|
+
<glyph glyph-name="newspaper" unicode="" 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" />
|
60
|
+
|
61
|
+
<glyph glyph-name="cart-plus" unicode="" 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" />
|
62
|
+
|
63
|
+
<glyph glyph-name="github" unicode="" 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" />
|
64
|
+
|
65
|
+
<glyph glyph-name="github-circled" unicode="" 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" />
|
66
|
+
|
67
|
+
<glyph glyph-name="flickr" unicode="" 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" />
|
68
|
+
|
69
|
+
<glyph glyph-name="flickr-circled" unicode="" 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" />
|
70
|
+
|
71
|
+
<glyph glyph-name="twitter" unicode="" 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" />
|
72
|
+
|
73
|
+
<glyph glyph-name="twitter-circled" unicode="" 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" />
|
74
|
+
|
75
|
+
<glyph glyph-name="facebook" unicode="" 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" />
|
76
|
+
|
77
|
+
<glyph glyph-name="facebook-circled" unicode="" 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" />
|
78
|
+
|
79
|
+
<glyph glyph-name="facebook-squared" unicode="" 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" />
|
80
|
+
|
81
|
+
<glyph glyph-name="pinterest" unicode="" 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" />
|
82
|
+
|
83
|
+
<glyph glyph-name="pinterest-circled" unicode="" 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" />
|
84
|
+
|
85
|
+
<glyph glyph-name="linkedin" unicode="" 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" />
|
86
|
+
|
87
|
+
<glyph glyph-name="linkedin-circled" unicode="" 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" />
|
88
|
+
|
89
|
+
<glyph glyph-name="spotify-circled" unicode="" 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" />
|
90
|
+
|
91
|
+
<glyph glyph-name="instagram" unicode="" 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" />
|
92
|
+
</font>
|
93
|
+
</defs>
|
94
|
+
</svg>
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
@@ -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>
|
File without changes
|
data/assets/js/app/main.js
CHANGED
@@ -1,109 +1,373 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
1
|
$(document).ready(function () {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
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
|
+
});
|
12
27
|
});
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
} else {
|
30
|
-
var newpos = $(this).parent().width();
|
31
|
-
}
|
32
|
-
menu.css({ left:newpos });
|
33
|
-
|
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,
|
34
44
|
});
|
35
|
-
|
36
|
-
|
37
|
-
|
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
|
+
});
|
38
109
|
});
|
110
|
+
}
|
39
111
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
var a = new RegExp('/' + window.location.host + '/');
|
46
|
-
if (!a.test(this.href)) {
|
47
|
-
$(this).attr("target","_blank");
|
48
|
-
}
|
112
|
+
// Double Scroll Plugin
|
113
|
+
if ($(".double-scroll").length > 0) {
|
114
|
+
$(".double-scroll").doubleScroll({
|
115
|
+
resetOnWindowResize: true,
|
116
|
+
onlyIfScroll: true,
|
49
117
|
});
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
$(
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
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 (
|
158
|
+
e
|
159
|
+
) {
|
160
|
+
e.stopPropagation();
|
161
|
+
});
|
162
|
+
$(".navbar .dropdown-item").on("click", function (e) {
|
163
|
+
var $el = $(this).children(".dropdown-toggle");
|
164
|
+
var $parent = $el.offsetParent(".dropdown-menu");
|
165
|
+
if (!$parent.parent().hasClass("navbar-nav")) {
|
166
|
+
if ($parent.hasClass("show")) {
|
167
|
+
$parent.removeClass("show");
|
168
|
+
$el.next().removeClass("show");
|
169
|
+
$el.next().css({ top: -999, left: -999 });
|
170
|
+
} else {
|
171
|
+
$parent.parent().find(".show").removeClass("show");
|
172
|
+
$parent.addClass("show");
|
173
|
+
$el.next().addClass("show");
|
174
|
+
$el
|
175
|
+
.next()
|
176
|
+
.css({ top: $el[0].offsetTop, left: $parent.outerWidth() - 4 });
|
177
|
+
}
|
178
|
+
e.preventDefault();
|
179
|
+
e.stopPropagation();
|
180
|
+
}
|
181
|
+
});
|
182
|
+
|
183
|
+
// Reset forms when bootstrap modal closes.
|
184
|
+
$(".modal").on("hidden.bs.modal", function () {
|
185
|
+
$(this).find("form")[0].reset();
|
186
|
+
});
|
187
|
+
// Stacked Navbar
|
188
|
+
$("#stacked-nav-bar").on("hidden.bs.collapse", function () {
|
189
|
+
$(".nav-pills").removeClass("nav-stacked");
|
190
|
+
});
|
191
|
+
// Scrolling sticking on IOS7 (Bug fix)
|
192
|
+
if (navigator.userAgent.match(/.*CPU.*OS 7_\d/i)) {
|
193
|
+
$("html").addClass("ios7");
|
194
|
+
}
|
195
|
+
// Open External links in a new tab
|
196
|
+
$("a").each(function () {
|
197
|
+
var a = new RegExp("/" + window.location.host + "/");
|
198
|
+
if (!a.test(this.href)) {
|
199
|
+
if ($(this).attr("target") != "_self") {
|
200
|
+
$(this).attr("target", "_blank");
|
201
|
+
}
|
202
|
+
}
|
203
|
+
});
|
204
|
+
|
205
|
+
if ($(".nav-tabs").length > 0) {
|
206
|
+
let url = location.href.replace(/\/$/, "");
|
207
|
+
|
208
|
+
if (location.hash) {
|
209
|
+
const hash = url.split("#");
|
210
|
+
$('.nav-tabs a[href="#' + hash[1] + '"]').tab("show");
|
211
|
+
url = location.href.replace(/\/#/, "#");
|
212
|
+
history.replaceState(null, null, url);
|
213
|
+
setTimeout(() => {
|
214
|
+
$(window).scrollTop(0);
|
215
|
+
}, 400);
|
73
216
|
}
|
74
|
-
// Show Search if form is not active // event.preventDefault() is important, this prevents the form from submitting
|
75
|
-
$(document).on('click', '.navbar-collapse form[role="search"]:not(.active) button[type="submit"]', function(event) {
|
76
|
-
event.preventDefault();
|
77
|
-
var $form = $(this).closest('form'),
|
78
|
-
$input = $form.find('input'),
|
79
|
-
$resetForm = $(this).closest('.navbar-collapse form[role="search"]:not(.active) button[type="reset"]')
|
80
|
-
|
81
|
-
|
82
|
-
$form.addClass('active');
|
83
|
-
$input.focus();
|
84
|
-
|
85
|
-
|
86
217
|
|
218
|
+
$('a[data-toggle="tab"]').on("click", function () {
|
219
|
+
let newUrl;
|
220
|
+
const hash = $(this).attr("href");
|
221
|
+
newUrl = url.split("#")[0] + hash;
|
222
|
+
history.replaceState(null, null, newUrl);
|
87
223
|
});
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
224
|
+
}
|
225
|
+
|
226
|
+
// COOKIES CONFIG
|
227
|
+
// Cookie Consent Setup
|
228
|
+
if ($("meta[name=analytics_code]")) {
|
229
|
+
var privacy_url = $("meta[name=privacy_url]").attr("content");
|
230
|
+
var cookies_popup_title = $("meta[name=cookies_popup_title]").attr(
|
231
|
+
"content"
|
232
|
+
);
|
233
|
+
var cookies_popup_description = $(
|
234
|
+
"meta[name=cookies_popup_description]"
|
235
|
+
).attr("content");
|
236
|
+
var ga_code = $("meta[name=analytics_code]").attr("content");
|
237
|
+
|
238
|
+
// Options for the Cookie Dialog
|
239
|
+
var options = {
|
240
|
+
title: cookies_popup_title,
|
241
|
+
link: privacy_url,
|
242
|
+
moreInfoLabel: "View our Privacy Policy",
|
243
|
+
cookieLink: "/cookies/",
|
244
|
+
cookieLabel: "Manage your cookies",
|
245
|
+
links: [
|
246
|
+
{ url: "/cookies/", text: "Cookies Policy" },
|
247
|
+
{ url: "/privacy", text: "Privacy Policy" },
|
248
|
+
],
|
249
|
+
delay: 1000,
|
250
|
+
acceptBtnLabel: "Accept All Cookies",
|
251
|
+
analyticsChecked: true,
|
252
|
+
message: cookies_popup_description,
|
253
|
+
cookieTypes: [
|
254
|
+
{
|
255
|
+
type: "Analytics",
|
256
|
+
value: "analytics",
|
257
|
+
checked: true,
|
258
|
+
description: "Cookies related to site visits, browser types, etc.",
|
259
|
+
},
|
260
|
+
],
|
261
|
+
onAccept: function () {
|
262
|
+
init_ga();
|
263
|
+
},
|
264
|
+
};
|
265
|
+
// Enabled Google Analytics if cookie to allow us to collect is set.
|
266
|
+
function init_ga() {
|
267
|
+
if ($.fn.ihavecookies.preference("analytics")) {
|
268
|
+
// (function (i, s, o, g, r, a, m) {
|
269
|
+
// i["GoogleAnalyticsObject"] = r;
|
270
|
+
// (i[r] =
|
271
|
+
// i[r] ||
|
272
|
+
// function () {
|
273
|
+
// (i[r].q = i[r].q || []).push(arguments);
|
274
|
+
// }),
|
275
|
+
// (i[r].l = 1 * new Date());
|
276
|
+
// (a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
277
|
+
// a.async = 1;
|
278
|
+
// a.src = g;
|
279
|
+
// m.parentNode.insertBefore(a, m);
|
280
|
+
// })(
|
281
|
+
// window,
|
282
|
+
// document,
|
283
|
+
// "script",
|
284
|
+
// "https://www.google-analytics.com/analytics.js",
|
285
|
+
// "ga"
|
286
|
+
// );
|
287
|
+
// ga("create", ga_code, "auto");
|
288
|
+
// ga("send", "pageview");
|
289
|
+
(function (w, d, s, l, i) {
|
290
|
+
w[l] = w[l] || [];
|
291
|
+
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
|
292
|
+
var f = d.getElementsByTagName(s)[0],
|
293
|
+
j = d.createElement(s),
|
294
|
+
dl = l != "dataLayer" ? "&l=" + l : "";
|
295
|
+
j.async = true;
|
296
|
+
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
|
297
|
+
f.parentNode.insertBefore(j, f);
|
298
|
+
})(window, document, "script", "dataLayer", ga_code);
|
299
|
+
console.log("Google Analytics started");
|
300
|
+
} else {
|
301
|
+
console.log("Google analytics not started... :(");
|
302
|
+
}
|
303
|
+
}
|
304
|
+
// Initialize
|
305
|
+
init_ga();
|
306
|
+
|
307
|
+
if ($(".cookie_manager").length > 0) {
|
308
|
+
var analytics_toggle = $("#analytics_toggle");
|
309
|
+
if ($.fn.ihavecookies.preference("analytics")) {
|
310
|
+
analytics_toggle.addClass("active");
|
311
|
+
options.cookieTypes = [
|
312
|
+
{
|
313
|
+
type: "Analytics",
|
314
|
+
value: "analytics",
|
315
|
+
checked: false,
|
316
|
+
description: "Cookies related to site visits, browser types, etc.",
|
317
|
+
},
|
318
|
+
];
|
319
|
+
}
|
320
|
+
analytics_toggle.on("click", function () {
|
321
|
+
$.removeCookie("_ga");
|
322
|
+
$.removeCookie("_ga", { path: "/" });
|
323
|
+
$.removeCookie("_gid");
|
324
|
+
$.removeCookie("_gid", { path: "/" });
|
325
|
+
$.removeCookie("_gat");
|
326
|
+
$.removeCookie("_gat", { path: "/" });
|
327
|
+
$.removeCookie("cookieControlPrefs");
|
328
|
+
$.removeCookie("cookieControlPrefs", { path: "/" });
|
329
|
+
$.removeCookie("cookieControl");
|
330
|
+
$.removeCookie("cookieControl", { path: "/" });
|
331
|
+
options["acceptBtnLabel"] = "Update Cookies";
|
332
|
+
$("body").ihavecookies(options, "reinit");
|
333
|
+
});
|
334
|
+
}
|
335
|
+
$("body").ihavecookies(options);
|
336
|
+
}
|
337
|
+
$(function () {
|
338
|
+
$('[data-toggle="tooltip"]').tooltip();
|
339
|
+
});
|
340
|
+
|
341
|
+
if ($("#post_search").length > 0) {
|
342
|
+
var file_path = $("#post_search").data("file-path");
|
343
|
+
|
344
|
+
$("#results-container").hide();
|
345
|
+
$("#search-input").keyup(function () {
|
346
|
+
if ($("#search-input").val().length == 0) {
|
347
|
+
$("#results-container").fadeOut("fast");
|
348
|
+
$(".close_search").hide();
|
349
|
+
} else {
|
350
|
+
$("#results-container").fadeIn("fast");
|
351
|
+
$(".close_search").show();
|
352
|
+
}
|
102
353
|
});
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
354
|
+
$(".close_search").click(function (e) {
|
355
|
+
e.preventDefault();
|
356
|
+
$("#search-input").val("");
|
357
|
+
$("#results-container").fadeOut("fast");
|
358
|
+
$(".close_search").hide();
|
107
359
|
});
|
108
360
|
|
361
|
+
console.log(file_path);
|
362
|
+
SimpleJekyllSearch({
|
363
|
+
searchInput: document.getElementById("search-input"),
|
364
|
+
resultsContainer: document.getElementById("results-container"),
|
365
|
+
searchResultTemplate:
|
366
|
+
'<li class="media flex-row"><picture><img class="lazyload mr-3 img-thumbnail suggested_post_thumb search_result_img" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="{image}"></picture><div class="media-body"><a href="{url}"><h5 class="mt-0 mb-1">{title}</h5><em class="suggested_post_date">{date}</em><p>{description}</p></a></div></li>',
|
367
|
+
json: file_path,
|
368
|
+
success: function (data) {
|
369
|
+
console.log(data);
|
370
|
+
},
|
371
|
+
});
|
372
|
+
}
|
109
373
|
});
|