j1-template 2020.0.8 → 2020.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/themes/j1/blocks/ads/ad.html +64 -0
- data/_includes/themes/j1/blocks/footer/boxes/links_box.proc +1 -1
- data/_includes/themes/j1/layouts/content_generator_blog_archive.html +3 -2
- data/_includes/themes/j1/layouts/content_generator_collection.html +3 -2
- data/_includes/themes/j1/layouts/content_generator_page.html +3 -2
- data/_includes/themes/j1/layouts/content_generator_post.html +12 -12
- data/_includes/themes/j1/layouts/layout_metadata_generator.html +134 -4
- data/_includes/themes/j1/modules/connectors/ad/custom-provider.html +6 -9
- data/_includes/themes/j1/modules/connectors/ad/google-adsense.html +9 -6
- data/_includes/themes/j1/modules/connectors/ads +3 -6
- data/_includes/themes/j1/modules/navigator/generator.html +6 -7
- data/_includes/themes/j1/modules/navigator/procedures/topsearch.proc +10 -5
- data/_includes/themes/j1/procedures/layouts/module_writer.proc +1 -1
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +7 -7
- data/_layouts/default.html +18 -13
- data/assets/data/authclient.html +18 -8
- data/assets/data/banner.html +23 -23
- data/assets/data/carousel.json +30 -21
- data/assets/data/cookie_consent.html +79 -51
- data/assets/data/footer.html +14 -5
- data/assets/data/galleries.json +90 -81
- data/assets/data/gallery_customizer.html +19 -10
- data/assets/data/mdi_icons.json +55 -1
- data/assets/data/menu.html +14 -7
- data/assets/data/mmenu.html +47 -94
- data/assets/data/mmenu_sidebar.html +40 -44
- data/assets/data/mmenu_toc.html +19 -3
- data/assets/data/panel.html +30 -23
- data/assets/data/quicklinks.html +13 -3
- data/assets/data/{search.yml → search.json} +44 -14
- data/assets/data/ssm.html +20 -9
- data/assets/data/themes.json +17 -6
- data/assets/data/twa_v1.json +7034 -6978
- data/assets/themes/j1/adapter/js/algolia.js +34 -17
- data/assets/themes/j1/adapter/js/attic.js +66 -46
- data/assets/themes/j1/adapter/js/carousel.js +43 -22
- data/assets/themes/j1/adapter/js/clipboard.js +230 -0
- data/assets/themes/j1/adapter/js/cookie_consent.js +21 -4
- data/assets/themes/j1/adapter/js/framer.js +18 -3
- data/assets/themes/j1/adapter/js/gallery_customizer.js +27 -10
- data/assets/themes/j1/adapter/js/j1.js +342 -757
- data/assets/themes/j1/adapter/js/{justified_gallery.js → jf_gallery.js} +64 -38
- data/assets/themes/j1/adapter/js/lightbox.js +20 -3
- data/assets/themes/j1/adapter/js/logger.js +23 -6
- data/assets/themes/j1/adapter/js/mdb.js +167 -0
- data/assets/themes/j1/adapter/js/mmenu.js +33 -30
- data/assets/themes/j1/adapter/js/navigator.js +126 -140
- data/assets/themes/j1/adapter/js/searcher.js +22 -4
- data/assets/themes/j1/adapter/js/ssm.js +84 -63
- data/assets/themes/j1/adapter/js/themer.js +35 -53
- data/assets/themes/j1/adapter/js/toccer.js +29 -14
- data/assets/themes/j1/core/css/theme_extensions.css +120 -1230
- data/assets/themes/j1/core/css/theme_extensions.min.css +1 -1
- data/assets/themes/j1/core/css/uno.css +256 -1288
- data/assets/themes/j1/core/css/uno.min.css +1 -1
- data/assets/themes/j1/core/css/vendor.css +7 -57
- data/assets/themes/j1/core/css/vendor.min.css +2 -2
- data/assets/themes/j1/core/js/template.js +16 -86
- data/assets/themes/j1/core/js/template.js.map +1 -1
- data/assets/themes/j1/core/js/template.min.js +1 -1
- data/assets/themes/j1/extensions/bsDatepicker/css/datepicker.css +203 -0
- data/assets/themes/j1/extensions/bsDatepicker/css/theme/uno.css +235 -0
- data/assets/themes/j1/extensions/bsDatepicker/js/datepicker.js +509 -0
- data/assets/themes/j1/extensions/bsDatepicker/less/datepicker.less +122 -0
- data/assets/themes/j1/extensions/bsThemeSwitcher/js/switcher.js +425 -0
- data/assets/themes/j1/extensions/bsThemeSwitcher/js/switcher.min.js +20 -0
- data/assets/themes/j1/extensions/clipboard/LICENSE +20 -0
- data/assets/themes/j1/extensions/clipboard/css/theme/uno.css +52 -0
- data/assets/themes/j1/extensions/clipboard/css/theme/uno.min.css +52 -0
- data/assets/themes/j1/extensions/clipboard/js/clipboard.js +975 -0
- data/assets/themes/j1/extensions/clipboard/js/clipboard.min.js +7 -0
- data/assets/themes/j1/extensions/{iconify → iconifyAPI}/js/iconify.min.js +0 -0
- data/assets/themes/j1/extensions/iframeResizer/LICENSE +21 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.absolute.html +127 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.content.html +157 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.hover.html +68 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.nested.html +100 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.textarea.html +45 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/frame.tolerance.html +113 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/index.html +83 -0
- data/assets/themes/j1/extensions/iframeResizer/examples/two.html +88 -0
- data/assets/themes/j1/extensions/iframeResizer/js/client/iframeResizer.contentWindow.js +1288 -0
- data/assets/themes/j1/extensions/iframeResizer/js/client/iframeResizer.contentWindow.map +1 -0
- data/assets/themes/j1/extensions/iframeResizer/js/client/iframeResizer.contentWindow.min.js +10 -0
- data/assets/themes/j1/extensions/iframeResizer/js/iframeResizer.js +1390 -0
- data/assets/themes/j1/extensions/iframeResizer/js/iframeResizer.map +1 -0
- data/assets/themes/j1/extensions/iframeResizer/js/iframeResizer.min.js +9 -0
- data/assets/themes/j1/extensions/jqMouseWheel/README.md +76 -0
- data/assets/themes/j1/extensions/jqMouseWheel/js/jquery.mousewheel.js +221 -0
- data/assets/themes/j1/extensions/jqMouseWheel/js/jquery.mousewheel.min.js +9 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/LICENSE +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/README.md +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/css/justifiedGallery.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/css/justifiedGallery.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/css/theme/uno.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/js/justifiedGallery.3.7.0.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/js/justifiedGallery.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/js/justifiedGallery.min.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/less/.csslintrc +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v3.7.0/less/justifiedGallery.less +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/css/justifiedGallery.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/css/justifiedGallery.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/css/theme/uno.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/js/jquery.justifiedGallery.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/_versions/v4.0.0/js/jquery.justifiedGallery.min.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/justifiedGallery.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/justifiedGallery.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/theme/uno.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/css/theme/uno.min.css +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/js/justifiedGallery.js +0 -0
- data/assets/themes/j1/extensions/{justified_gallery → justifiedGallery}/js/justifiedGallery.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-fb-comment-box.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-fb-comment-box.min.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-transitions.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lg-transitions.min.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lightgallery.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/core/lightgallery.min.css +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.eot +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.ttf +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/fonts/lg.woff +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/loading.gif +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/video-play.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/vimeo-play.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/img/youtube-play.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/animation-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/customize-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/dynamic-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/facebook-icon.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/googleplus-icon.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/html5-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/linked-in.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/module-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/play-button.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/responsive-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/thumb-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/touch-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/twitter-icon.svg +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/twitter.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/video1-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/zoom-w.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/icons/zoom.png +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/uno.css +1 -1
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/css/themes/uno.min.css +1 -1
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/core/lightgallery.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/core/lightgallery.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/j1/j1-video.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/j1/j1-video.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-autoplay.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-autoplay.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-fullscreen.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-fullscreen.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-hash.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-hash.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-pager.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-pager.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-share.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-share.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-thumbnail.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-thumbnail.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-video.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-video.min.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-zoom.js +0 -0
- data/assets/themes/j1/extensions/{light_gallery → lightGallery}/js/modules/lg-zoom.min.js +0 -0
- data/assets/themes/j1/extensions/lightbox/LICENSE +22 -0
- data/assets/themes/j1/extensions/lightbox/css/lightbox.css +224 -0
- data/assets/themes/j1/extensions/lightbox/css/lightbox.min.css +21 -0
- data/assets/themes/j1/extensions/lightbox/css/theme/uno.css +25 -0
- data/assets/themes/j1/extensions/lightbox/css/theme/uno.min.css +26 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/close.png +0 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/loading.gif +0 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/next.png +0 -0
- data/{lib/starter_web/assets/images/modules/lightbox → assets/themes/j1/extensions/lightbox/images}/prev.png +0 -0
- data/assets/themes/j1/extensions/lightbox/js/lightbox.js +583 -0
- data/assets/themes/j1/extensions/lightbox/js/lightbox.min.js +35 -0
- data/assets/themes/j1/extensions/mmenuLight/css/mmenu.css +392 -0
- data/assets/themes/j1/extensions/mmenuLight/css/mmenu.min.css +393 -0
- data/assets/themes/j1/extensions/mmenuLight/css/theme/uno.css +170 -0
- data/assets/themes/j1/extensions/mmenuLight/css/theme/uno.min.css +169 -0
- data/assets/themes/j1/extensions/mmenuLight/js/mmenu.js +30 -0
- data/assets/themes/j1/extensions/noUISlider/LICENSE +13 -0
- data/assets/themes/j1/extensions/noUISlider/css/nouislider.css +260 -0
- data/assets/themes/j1/extensions/noUISlider/css/nouislider.min.css +1 -0
- data/assets/themes/j1/extensions/noUISlider/js/nouislider.js +2312 -0
- data/assets/themes/j1/extensions/noUISlider/js/nouislider.min.js +3 -0
- data/assets/themes/j1/extensions/twemoji/js/LICENSE +21 -0
- data/assets/themes/j1/extensions/twemoji/js/picker/LICENSE +21 -0
- data/assets/themes/j1/extensions/twemoji/js/picker/twemoji-picker.js +21 -0
- data/assets/themes/j1/extensions/twemoji/js/picker/twemoji-picker.min.js +21 -0
- data/assets/themes/j1/extensions/twemoji/js/twemoji.js +590 -0
- data/assets/themes/j1/extensions/twemoji/js/twemoji.min.js +25 -0
- data/lib/j1/version.rb +3 -3
- data/lib/starter_web/Gemfile +7 -1
- data/lib/starter_web/_config.yml +9 -8
- data/lib/starter_web/_data/_defaults/resources.yml +13 -13
- data/lib/starter_web/_data/blocks/banner.yml +21 -29
- data/lib/starter_web/_data/blocks/footer.yml +10 -3
- data/lib/starter_web/_data/blocks/panel.yml +13 -13
- data/lib/starter_web/_data/layouts/default.yml +10 -0
- data/lib/starter_web/_data/layouts/home.yml +7 -7
- data/lib/starter_web/_data/layouts/page.yml +15 -16
- data/lib/starter_web/_data/modules/advertising.yml +48 -0
- data/lib/starter_web/_data/modules/attics.yml +2 -38
- data/lib/starter_web/_data/modules/cookie_consent.yml +3 -95
- data/lib/starter_web/_data/modules/defaults/attics.yml +16 -15
- data/lib/starter_web/_data/modules/defaults/cookie_consent.yml +75 -12
- data/lib/starter_web/_data/modules/defaults/jekyll_search.yml +9 -9
- data/lib/starter_web/_data/modules/defaults/navigator.yml +56 -21
- data/lib/starter_web/_data/modules/defaults/ssm.yml +3 -3
- data/lib/starter_web/_data/modules/defaults/toccer.yml +4 -8
- data/lib/starter_web/_data/modules/jekyll_search.yml +3 -21
- data/lib/starter_web/_data/modules/navigator.yml +1 -1
- data/lib/starter_web/_data/modules/navigator_menu.yml +4 -0
- data/lib/starter_web/_data/modules/ssm.yml +9 -0
- data/lib/starter_web/_data/modules/themer.yml +2 -3
- data/lib/starter_web/_data/modules/toccer.yml +6 -11
- data/lib/starter_web/_data/resources.yml +240 -112
- data/lib/starter_web/_data/template_settings.yml +117 -6
- data/lib/starter_web/_plugins/asciidoctor-extensions/fab-icon-inline.rb +1 -1
- data/lib/starter_web/_plugins/asciidoctor-extensions/fas-icon-inline.rb +2 -2
- data/lib/starter_web/_plugins/asciidoctor-extensions/iconify-icon-inline.rb +2 -2
- data/lib/starter_web/_plugins/asciidoctor-extensions/mdi-icon-inline.rb +2 -2
- data/lib/starter_web/_plugins/asciidoctor-extensions/twitter-emoji-inline.rb +2 -2
- data/lib/starter_web/_plugins/minifyJS.rb +54 -0
- data/lib/starter_web/_plugins/{uglify.rb → minifyJSON.rb} +15 -9
- data/lib/starter_web/assets/images/modules/attics/admin-dashboard-bootstrap-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/alex-holyoake-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/anaya-katlego-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/antonella-lombardi-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/antonino-visalli-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/library-1920x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/signpost-1920x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/water-journal-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/write-1280x600-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/brandon-mowinkel-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/building-blocks-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/cookies-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/daniel-jensen-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/giammarco-boscaro-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/go-up-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/ian-schneider-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/ideas-start-here-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/jason-rosewell-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/jessica-ruscello-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/lianhao-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/library-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/matthaeus-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/nousnou-iwasaki-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/premium-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/robert-v-ruggiero-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/romain-vignes-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/runner-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/spider-web-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/the-place-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/welcome-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-1.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/andreas-brucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/denys-nevozhai-1_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/denys-nevozhai-2_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/luca-bravo_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/thomas-tucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/banter-snaps_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-1_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-2-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-2_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/emmad-mazhari_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/ethan-brooke_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/federico-rizzarelli_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/gints-gailis_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/johan-mouchet_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/luca-bravo_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/oskars-sylwan_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/steven-diaz_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/thomas-tucker-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/thomas-tucker_b.jpg +0 -0
- data/lib/starter_web/index.html +9 -8
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/clear_button.adoc +121 -0
- data/lib/starter_web/pages/public/learn/examples/floating_ad.adoc +221 -0
- data/lib/starter_web/pages/public/learn/{floating_sidebar.adoc → examples/floating_div.adoc} +60 -50
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/parts.asciidoc +1 -1
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/100_meet_and_greet_jekyll.adoc +9 -4
- data/lib/starter_web/pages/public/learn/roundtrip/000_bs_tour_api.adoc +2 -2
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_table_3_column.asciidoc +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/419_advanced_modals_html.asciidoc +5 -5
- data/lib/starter_web/pages/public/learn/roundtrip/100_present_images.adoc +2 -2
- data/lib/starter_web/pages/public/learn/roundtrip/200_typography.adoc +4 -3
- data/lib/starter_web/pages/public/learn/roundtrip/300_icon_fonts.adoc +35 -44
- data/lib/starter_web/pages/public/learn/roundtrip/400_asciidoc_extensions.adoc +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/420_responsive_tables_extensions.adoc +39 -39
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_table_3_column.asciidoc +1 -1
- data/lib/starter_web/pages/public/learn/whats_up.adoc +1 -0
- data/lib/starter_web/pages/public/panels/intro_panel/panel.adoc +54 -48
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/100_absolute_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/120_relative_sizes.asciidoc +1 -41
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/200_rotate.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/300_flip.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/400_spin_pulsed.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/500_bw_color_palette.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/510_bs_color_palette.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/600_md_color_palette.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/601_md_color_palette_indigo.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/602_md_color_palette_pink.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_relative_sizes.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/200_rotate.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/300_flip.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/400_spin_pulsed.asciidoc +1 -1
- data/lib/starter_web/pages/public/previewer/bootstrap_theme.adoc +672 -863
- data/lib/starter_web/pages/public/previewer/iframer.adoc +15 -14
- data/lib/starter_web/pages/public/previewer/justified_gallery.html +1 -1
- data/lib/starter_web/pages/public/previewer/mdb_preview/000_includes/attributes.asciidoc +69 -0
- data/lib/starter_web/pages/public/previewer/mdb_preview/000_includes/documents/100_buttons.asciidoc +170 -0
- data/lib/starter_web/pages/public/previewer/mdb_preview/mdb_previewer.adoc +52 -0
- data/lib/starter_web/pages/public/previewer/mdi_icons_preview.adoc +1 -1
- data/lib/starter_web/pages/public/previewer/twitter_emoji_preview.adoc +2 -2
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +148 -105
- data/assets/data/colors.json +0 -42
- data/assets/data/font_sizes.json +0 -42
- data/assets/data/messages.yml +0 -131
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.absolute.html +0 -86
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.content.html +0 -58
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.hover.html +0 -51
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.nested.html +0 -68
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.textarea.html +0 -46
- data/assets/themes/j1/extensions/iframe_resizer/examples/frame.tolerance.html +0 -79
- data/assets/themes/j1/extensions/iframe_resizer/examples/index.html +0 -70
- data/assets/themes/j1/extensions/iframe_resizer/examples/two.html +0 -71
- data/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.js +0 -1104
- data/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.map +0 -1
- data/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.min.js +0 -10
- data/assets/themes/j1/extensions/log4javascript/log4javascript.js +0 -5826
- data/assets/themes/j1/extensions/log4javascript/log4javascript.min.js +0 -266
- data/lib/starter_web/assets/images/modules/attics/admin-dashboard-bootstrap-1280x600.png +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mu-Vf9gbsLZyf0-unsplash.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mue-1920x1280-v.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mue-1920x1280.jpg +0 -0
@@ -38,7 +38,6 @@
|
|
38
38
|
|
39
39
|
{% comment %} Set config files
|
40
40
|
-------------------------------------------------------------------------------- {% endcomment %}
|
41
|
-
{% assign site_config = site %}
|
42
41
|
{% assign template_config = site.data.template_settings %}
|
43
42
|
{% assign blocks = site.data.blocks %}
|
44
43
|
{% assign modules = site.data.modules %}
|
@@ -165,9 +164,9 @@
|
|
165
164
|
{% if brand_position == "left" %}
|
166
165
|
<!-- [INFO ] [j1.modules.navigator.generator.html ] [ place brand image to the: left ] -->
|
167
166
|
{% if site.brand.image %}
|
168
|
-
<a id="navbar-brand" class="navbar-brand animated"
|
167
|
+
<a id="navbar-brand" class="navbar-brand animated"> <img src="{{ site.data.template_settings.image_path }}/{{ site.brand.image }}" height="{{ site.brand.image_height }}" alt="{{ site.brand.text }}"></a>
|
169
168
|
{% else %}
|
170
|
-
<a id="navbar-brand" class="navbar-brand animated"
|
169
|
+
<a id="navbar-brand" class="navbar-brand animated"> <b><font color="{{site.brand.text_color}}">{{ site.brand.text }}</font></b></a>
|
171
170
|
{% endif %}
|
172
171
|
<button id="navbar-toggler" type="button" class="navigator navbar-toggler animated fadeIn" data-toggle="collapse" data-target="#{{nav_menu_id}}" aria-controls="{{nav_menu_id}}" aria-expanded="false" aria-label="Toggle navigation">
|
173
172
|
<i class="mdi mdi-menu mdi-48px"></i>
|
@@ -175,9 +174,9 @@
|
|
175
174
|
{% elsif brand_position == "right" %}
|
176
175
|
<!-- [INFO ] [j1.modules.navigator.generator.html ] [ place brand to the: right ] -->
|
177
176
|
{% if site.brand.image %}
|
178
|
-
<a id="navbar-brand" class="navbar-brand animated"
|
177
|
+
<a id="navbar-brand" class="navbar-brand animated"> <img src="{{ site.data.template_settings.image_path }}/{{ site.brand.image }}" height="{{ site.brand.image_height }}" alt="{{ site.brand.text }}"></a>
|
179
178
|
{% else %}
|
180
|
-
<a id="navbar-brand" class="navbar-brand animated"
|
179
|
+
<a id="navbar-brand" class="navbar-brand animated"> <b><font color="{{site.brand.text_color}}">{{ site.brand.text }}</font></b></a>
|
181
180
|
{% endif %}
|
182
181
|
<!-- [INFO ] [j1.modules.navigator.generator.html ] [ place mobile menu button to the: left ] -->
|
183
182
|
<button id="mmenu-button" type="button" class="navigator navbar-toggler animated fadeIn" data-toggle="collapse" data-target="#{{nav_menu_id}}" aria-controls="{{nav_menu_id}}" aria-expanded="false" aria-label="Toggle navigation">
|
@@ -186,9 +185,9 @@
|
|
186
185
|
{% else %}
|
187
186
|
<!-- [INFO ] [j1.modules.navigator.generator.html ] [ place brand to default position: left ] -->
|
188
187
|
{% if site.brand.image %}
|
189
|
-
<a id="navbar-brand" class="navbar-brand animated"
|
188
|
+
<a id="navbar-brand" class="navbar-brand animated"> <img src="{{ site.data.template_settings.image_path }}/{{ site.brand.image }}" height="{{ site.brand.image_height }}" alt="{{ site.brand.text }}"></a>
|
190
189
|
{% else %}
|
191
|
-
<a id="navbar-brand" class="navbar-brand animated"
|
190
|
+
<a id="navbar-brand" class="navbar-brand animated"> <b><font color="{{site.brand.text_color}}">{{ site.brand.text }}</font></b></a>
|
192
191
|
{% endif %}
|
193
192
|
<!-- [INFO ] [j1.modules.navigator.generator.html ] [ place menu toggler to the: right ] -->
|
194
193
|
<button id="navbar-toggler" type="button" class="navigator navbar-toggler animated fadeIn" data-toggle="collapse" data-target="#{{nav_menu_id}}" aria-controls="{{nav_menu_id}}" aria-expanded="false" aria-label="Toggle navigation">
|
@@ -27,7 +27,7 @@
|
|
27
27
|
-------------------------------------------------------------------------------- {% endcomment %}
|
28
28
|
{% capture select_color %}themes/{{site.template.name}}/procedures/global/select_color.proc{% endcapture %}
|
29
29
|
{% capture select_icon_size %}themes/{{site.template.name}}/procedures/global/select_icon_size.proc{% endcapture %}
|
30
|
-
|
30
|
+
|
31
31
|
|
32
32
|
{% comment %} Liquid var initialization
|
33
33
|
-------------------------------------------------------------------------------- {% endcomment %}
|
@@ -52,6 +52,7 @@
|
|
52
52
|
{% assign result_heading_lead = topsearch_options.result_heading_lead %}
|
53
53
|
{% assign search_icon = topsearch_options.search_icon %}
|
54
54
|
{% assign close_icon = topsearch_options.close_icon %}
|
55
|
+
{% assign clear_icon = topsearch_options.clear_icon %}
|
55
56
|
|
56
57
|
{% assign quick_search = true %}
|
57
58
|
{% assign elastic_search = false %}
|
@@ -80,7 +81,7 @@
|
|
80
81
|
{% assign icon_size = size %}
|
81
82
|
|
82
83
|
|
83
|
-
{% comment %} Main
|
84
|
+
{% comment %} Main
|
84
85
|
-------------------------------------------------------------------------------- {% endcomment %}
|
85
86
|
{% if topsearch_options.enabled %}
|
86
87
|
|
@@ -93,16 +94,20 @@
|
|
93
94
|
<div class="input-group">
|
94
95
|
<span class="input-group-addon"><i class="{{icon_family}} {{icon_family}}-{{search_icon}} {{icon_size}}" {{icon_color}}></i></span>
|
95
96
|
<input type="text" id="jss-input" class="form-control" placeholder="{{placeholder}}">
|
97
|
+
{% if clear_icon %}
|
98
|
+
<!-- [INFO ] [j1.modules.navigator.topsearch.proc ] [ place clear icon ] -->
|
99
|
+
<span class="form-clear form-clear-searcher d-none"><i class="{{icon_family}} {{icon_family}}-{{clear_icon}} {{icon_size}}" {{icon_color}}"></i></span>
|
100
|
+
{% endif %}
|
96
101
|
<span class="input-group-addon close-search"><i class="{{icon_family}} {{icon_family}}-{{close_icon}} {{icon_size}}" {{icon_color}}></i></span>
|
97
102
|
</div>
|
98
103
|
</div>
|
99
104
|
<!-- [INFO ] [j1.modules.navigator.topsearch.proc ] [ add search panel (hidden) ] -->
|
100
|
-
<div class="row">
|
105
|
+
<div class="row no-gutters ml-3 mr-5">
|
101
106
|
<!-- div class="card card-flat panel-search mr-5 mb-3 ml-5" id="jss-panel" style="display: none" -->
|
102
|
-
<div class="panel-search
|
107
|
+
<div class="panel-search mb-3" id="jss-panel" style="display: none">
|
103
108
|
{% if search_heading_lead %}<div class="panel-heading lead">{{ search_heading_lead }}</div>{% endif %}
|
104
109
|
{% if result_heading_lead %}<div class="panel-body"><p>{{ result_heading_lead }}</p></div>{% endif %}
|
105
|
-
<div class="search-list-group
|
110
|
+
<div class="search-list-group">
|
106
111
|
<ul id="jss-results"></ul>
|
107
112
|
</div>
|
108
113
|
</div>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
{% comment %}
|
1
|
+
{% comment %}
|
2
2
|
# -----------------------------------------------------------------------------
|
3
3
|
# ~/_includes/themes/j1/procedures/posts/collate_timeline.proc
|
4
4
|
# Liquid PROCEDURE to collate posts along a timeline
|
@@ -146,8 +146,8 @@
|
|
146
146
|
<div class="card-footer">
|
147
147
|
<a href="{{post.url}}#readmore"
|
148
148
|
class="btn btn-primary btn-raised mb-0">
|
149
|
-
<i class="fa fa-eye fa-lg" style="color:#FFFFFF;">
|
150
|
-
</i> Read
|
149
|
+
<i class="fa fa-eye fa-lg mr-1" style="color:#FFFFFF;">
|
150
|
+
</i> Read · {{post.tagline}}
|
151
151
|
</a>
|
152
152
|
</div>
|
153
153
|
</div>
|
@@ -167,8 +167,8 @@
|
|
167
167
|
<div class="card-footer">
|
168
168
|
<a href="{{post.url}}#readmore"
|
169
169
|
class="btn btn-primary btn-raised mb-0">
|
170
|
-
<i class="fa fa-eye fa-lg" style="color:#FFFFFF;">
|
171
|
-
</i> Read
|
170
|
+
<i class="fa fa-eye fa-lg mr-1" style="color:#FFFFFF;">
|
171
|
+
</i> Read · {{post.tagline}}
|
172
172
|
</a>
|
173
173
|
</div>
|
174
174
|
</div>
|
@@ -185,8 +185,8 @@
|
|
185
185
|
<div class="card-footer">
|
186
186
|
<a href="{{post.url}}#readmore"
|
187
187
|
class="btn btn-primary btn-raised mb-0">
|
188
|
-
<i class="fa fa-eye fa-lg" style="color:#FFFFFF;">
|
189
|
-
</i> Read
|
188
|
+
<i class="fa fa-eye fa-lg mr-1" style="color:#FFFFFF;">
|
189
|
+
</i> Read · {{post.tagline}}
|
190
190
|
</a>
|
191
191
|
</div>
|
192
192
|
</div>
|
data/_layouts/default.html
CHANGED
@@ -56,7 +56,6 @@ layout: compress
|
|
56
56
|
|
57
57
|
{% comment %} Set config files
|
58
58
|
-------------------------------------------------------------------------------- {% endcomment %}
|
59
|
-
{% assign site_config = site %}
|
60
59
|
{% assign template_config = site.data.template_settings %}
|
61
60
|
{% assign blocks = site.data.blocks %}
|
62
61
|
{% assign modules = site.data.modules %}
|
@@ -75,6 +74,8 @@ layout: compress
|
|
75
74
|
{% comment %} Set config options
|
76
75
|
-------------------------------------------------------------------------------- {% endcomment %}
|
77
76
|
{% assign consent_options = consent_defaults | merge: consent_settings %}
|
77
|
+
{% assign tooltips_options = template_config.bootstrap.tooltips %}
|
78
|
+
{% assign popovers_options = template_config.bootstrap.popovers %}
|
78
79
|
|
79
80
|
{% comment %} Webhooks disabled
|
80
81
|
--------------------------------------------------------------------------------
|
@@ -89,10 +90,6 @@ layout: compress
|
|
89
90
|
{% assign body_scrollbar = page.scrollbar %}
|
90
91
|
{% endif %}
|
91
92
|
|
92
|
-
{% if jekyll.environment != 'development' %}
|
93
|
-
{% assign environment = jekyll.environment | strip %}
|
94
|
-
{% endif %}
|
95
|
-
|
96
93
|
|
97
94
|
{% comment %} main
|
98
95
|
-------------------------------------------------------------------------------- {% endcomment %}
|
@@ -138,7 +135,7 @@ layout: compress
|
|
138
135
|
<!-- [INFO ] [j1.layout.default.html ] [ make page hidden ] -->
|
139
136
|
<!-- div id="no_flicker" class="nojs" -->
|
140
137
|
<div id="no_flicker" style="display: none">
|
141
|
-
|
138
|
+
|
142
139
|
{% comment %} collect the BODY-NAVIGATION region
|
143
140
|
-------------------------------------------------------------------------- {% endcomment %}
|
144
141
|
<!-- [INFO ] [j1.layout.default.html ] [ call default_writer for region: 'body-navigation' ] -->
|
@@ -228,7 +225,7 @@ layout: compress
|
|
228
225
|
{% comment %} Deactivated JS for R-Text
|
229
226
|
------------------------------------------------------------------------------
|
230
227
|
<script>
|
231
|
-
// Set global variables
|
228
|
+
// Set global variables
|
232
229
|
var environment = '{{environment}}';
|
233
230
|
var logger = log4javascript.getLogger('j1.template.rtext-resizer');
|
234
231
|
var $el = $("main[class*='r-text']");
|
@@ -239,7 +236,7 @@ layout: compress
|
|
239
236
|
var cl;
|
240
237
|
var value;
|
241
238
|
|
242
|
-
$('input:checkbox[name="textsize-300"]').on('click', function (e) {
|
239
|
+
$('input:checkbox[name="textsize-300"]').on('click', function (e) {
|
243
240
|
value = $(this).is(':checked');
|
244
241
|
|
245
242
|
$('input:checkbox[name="textsize-400"]').prop('checked', false);
|
@@ -249,7 +246,7 @@ layout: compress
|
|
249
246
|
cl = r_text_default;
|
250
247
|
}
|
251
248
|
$el.attr('class', base_classes + cl);
|
252
|
-
|
249
|
+
|
253
250
|
if(environment === 'development') {
|
254
251
|
logText = 'Changed textsize to: ' +cl;
|
255
252
|
logger.info(logText);
|
@@ -291,7 +288,7 @@ layout: compress
|
|
291
288
|
logger.info(logText);
|
292
289
|
}
|
293
290
|
e.stopPropagation();
|
294
|
-
});
|
291
|
+
});
|
295
292
|
</script>
|
296
293
|
------------------------------------------------------------------------------ {% endcomment %}
|
297
294
|
|
@@ -300,8 +297,16 @@ layout: compress
|
|
300
297
|
<!-- [INFO ] [j1.layout.default.html ] [ initialize BS tooltips|popovers ] -->
|
301
298
|
<script>
|
302
299
|
$(function() {
|
303
|
-
|
304
|
-
$('[data-toggle="
|
300
|
+
{% if tooltips_options.enabled %}
|
301
|
+
$('[data-toggle="tooltip"').tooltip({
|
302
|
+
trigger: '{{tooltips_options.trigger}}'
|
303
|
+
});
|
304
|
+
{% endif %}
|
305
|
+
{% if popovers_options.enabled %}
|
306
|
+
$('[data-toggle="popover"').popover({
|
307
|
+
trigger: '{{popovers_options.trigger}}'
|
308
|
+
});
|
309
|
+
{% endif %}
|
305
310
|
});
|
306
311
|
</script>
|
307
312
|
<!-- [INFO ] [j1.layout.default.html ] [ end page processing ] -->
|
@@ -345,4 +350,4 @@ layout: compress
|
|
345
350
|
{% else %}
|
346
351
|
{{ j1_cache | remove: '<p>excerpt__end</p>'| strip_empty_lines }}
|
347
352
|
|
348
|
-
{% endcase %}
|
353
|
+
{% endcase %}
|
data/assets/data/authclient.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
regenerate:
|
2
|
+
regenerate: true
|
3
3
|
---
|
4
4
|
{% capture cache %}
|
5
5
|
|
@@ -42,6 +42,7 @@ regenerate: false
|
|
42
42
|
|
43
43
|
{% comment %} Set config data
|
44
44
|
-------------------------------------------------------------------------------- {% endcomment %}
|
45
|
+
{% assign environment = site.environment %}
|
45
46
|
{% assign nav_authclient_defaults = authentication_defaults.auth_client %}
|
46
47
|
{% assign nav_authclient_settings = authentication_settings.auth_client %}
|
47
48
|
|
@@ -57,7 +58,12 @@ regenerate: false
|
|
57
58
|
{% comment %} Liquid var initialization
|
58
59
|
-------------------------------------------------------------------------------- {% endcomment %}
|
59
60
|
|
60
|
-
{%
|
61
|
+
{% assign production = '' %}
|
62
|
+
{% if environment == 'prod' or environment == 'production' %}
|
63
|
+
{% assign production = true %}
|
64
|
+
{% endif %}
|
65
|
+
|
66
|
+
{% comment %} Set auth_client properties
|
61
67
|
-------------------------------------------------------------------------------- {% endcomment %}
|
62
68
|
{% assign icon_family = authclient_options.icon_family | downcase %}
|
63
69
|
{% assign signin_icon = authclient_options.signin_icon %}
|
@@ -104,7 +110,7 @@ regenerate: false
|
|
104
110
|
{% assign auth_twitter_enabled = false %}
|
105
111
|
{% endif %}
|
106
112
|
|
107
|
-
{% if providers contains 'patreon' %}
|
113
|
+
{% if providers contains 'patreon' %}
|
108
114
|
{% assign auth_patreon_enabled = true %}
|
109
115
|
{% assign auth_patreon_id = authclient_options.auth_patreon.id %}
|
110
116
|
{% assign auth_patreon_title = authclient_options.auth_patreon.title | downcase %}
|
@@ -135,7 +141,7 @@ regenerate: false
|
|
135
141
|
<!-- [INFO ] [j1.authclient.html ] [START: Modal signin|signup] -->
|
136
142
|
<div class="modal fade" id="modalOmniSignIn" tabindex="-1" role="dialog" aria-labelledby="modalOmniSignIn" aria-hidden="true">
|
137
143
|
<div class="modal-dialog modal-lg modal-notify modal-info" role="document">
|
138
|
-
|
144
|
+
|
139
145
|
<!-- Content -->
|
140
146
|
<div class="modal-content">
|
141
147
|
|
@@ -209,7 +215,7 @@ regenerate: false
|
|
209
215
|
|
210
216
|
{% endfor %}
|
211
217
|
</ul>
|
212
|
-
|
218
|
+
|
213
219
|
<div class="tab-content tab-space">
|
214
220
|
{% for provider in providers %}
|
215
221
|
|
@@ -265,7 +271,7 @@ regenerate: false
|
|
265
271
|
<div class="modal-dialog modal-lg modal-notify modal-warning" role="document">
|
266
272
|
<!-- Content -->
|
267
273
|
<div class="modal-content">
|
268
|
-
|
274
|
+
|
269
275
|
<!--Header-->
|
270
276
|
<div class="modal-header">
|
271
277
|
<p class="lead">
|
@@ -314,7 +320,7 @@ regenerate: false
|
|
314
320
|
</a>
|
315
321
|
</div>
|
316
322
|
|
317
|
-
</div> <!-- END Content -->
|
323
|
+
</div> <!-- END Content -->
|
318
324
|
</div>
|
319
325
|
</div> <!-- Modal SignOut -->
|
320
326
|
|
@@ -369,5 +375,9 @@ regenerate: false
|
|
369
375
|
|
370
376
|
{% endcapture %}
|
371
377
|
|
372
|
-
{
|
378
|
+
{% if production %}
|
379
|
+
{% capture _LINE_FEED %}{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ cache | strip_html_comments }}{% else %}{% capture _content %}{{ cache | strip_html_comments }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ cache | strip_html_comments | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
380
|
+
{% else %}
|
381
|
+
{{ cache | pretty_print | remove:'<html><body>' | remove:'</body></html>' | strip_empty_lines }}
|
382
|
+
{% endif %}
|
373
383
|
{% assign cache = nil %}
|
data/assets/data/banner.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
regenerate:
|
2
|
+
regenerate: true
|
3
3
|
---
|
4
4
|
{% capture cache %}
|
5
5
|
|
@@ -32,8 +32,8 @@ regenerate: true
|
|
32
32
|
|
33
33
|
{% comment %} Set global settings
|
34
34
|
-------------------------------------------------------------------------------- {% endcomment %}
|
35
|
-
{% assign environment
|
36
|
-
{% assign debug
|
35
|
+
{% assign environment = site.environment %}
|
36
|
+
{% assign debug = false %}
|
37
37
|
|
38
38
|
|
39
39
|
{% comment %} Process YML config data
|
@@ -59,6 +59,10 @@ regenerate: true
|
|
59
59
|
-------------------------------------------------------------------------------- {% endcomment %}
|
60
60
|
{% capture banner_config_file_name %}~/_data/blocks/banner.yml{% endcapture %}
|
61
61
|
|
62
|
+
{% assign production = '' %}
|
63
|
+
{% if environment == 'prod' or environment == 'production' %}
|
64
|
+
{% assign production = true %}
|
65
|
+
{% endif %}
|
62
66
|
|
63
67
|
{% comment %} Main
|
64
68
|
================================================================================ {% endcomment %}
|
@@ -187,32 +191,24 @@ regenerate: true
|
|
187
191
|
{% if card_animate %} {% capture animate %}animated {{card_animate}}{% endcapture %} {% endif %}
|
188
192
|
<!-- Heading -->
|
189
193
|
<div class="row">
|
190
|
-
<div class="
|
191
|
-
<
|
192
|
-
|
193
|
-
|
194
|
-
<div class="d-inline-block g-width-50 g-height-2 g-bg-primary g-mb-5"></div>
|
195
|
-
</div>
|
194
|
+
<div class="{{animate}}">
|
195
|
+
<h1 class="g-font-weight-500 g-mb-0">{{card_title}}</h1>
|
196
|
+
<p class="tagline">{{card_tagline}}</p>
|
197
|
+
<div class="d-inline-block g-width-50 g-height-2 g-bg-primary g-mb-5"></div>
|
196
198
|
</div>
|
197
199
|
</div>
|
198
200
|
<!-- End Heading -->
|
199
201
|
|
200
202
|
<!-- Card -->
|
201
203
|
<div class="row {{animate}}">
|
202
|
-
<
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
{% for button_hash in card_buttons %}
|
210
|
-
{% include {{create_bs_button}} button_data=button_hash button_type="link" %}
|
211
|
-
{{bs_button_html}}
|
212
|
-
{% endfor %}
|
213
|
-
</div>
|
204
|
+
<p class="">{{card_description}}</p>
|
205
|
+
<div class="row btn-row mt-4">
|
206
|
+
<div class="col-md-{{card_width_md}} col-md-offset-1 col-sm-{{card_width_md}} col-sm-offset-1 col-xs-{{card_width_md | plus:2}}">
|
207
|
+
{% for button_hash in card_buttons %}
|
208
|
+
{% include {{create_bs_button}} button_data=button_hash button_type="link" %}
|
209
|
+
{{bs_button_html}}
|
210
|
+
{% endfor %}
|
214
211
|
</div>
|
215
|
-
|
216
212
|
</div>
|
217
213
|
</div>
|
218
214
|
<!-- End Card -->
|
@@ -428,5 +424,9 @@ regenerate: true
|
|
428
424
|
|
429
425
|
{% endcapture %}
|
430
426
|
|
431
|
-
{
|
427
|
+
{% if production %}
|
428
|
+
{% capture _LINE_FEED %}{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ cache | strip_html_comments }}{% else %}{% capture _content %}{{ cache | strip_html_comments }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ cache | strip_html_comments | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
429
|
+
{% else %}
|
430
|
+
{{ cache | pretty_print | remove:'<html><body>' | remove:'</body></html>' | strip_empty_lines }}
|
431
|
+
{% endif %}
|
432
432
|
{% assign cache = nil %}
|
data/assets/data/carousel.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
---
|
2
|
-
regenerate:
|
2
|
+
regenerate: true
|
3
3
|
---
|
4
4
|
|
5
|
-
{% capture
|
5
|
+
{% capture cache %}
|
6
6
|
|
7
7
|
{% comment %}
|
8
8
|
# -----------------------------------------------------------------------------
|
@@ -17,24 +17,22 @@ regenerate: true
|
|
17
17
|
# J1 Template is licensed under the MIT License.
|
18
18
|
# See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
|
19
19
|
# -----------------------------------------------------------------------------
|
20
|
+
# The Liquid template sliders.json is used by J1 Slider (Owl Carousel).
|
21
|
+
# This template is a helper that creates the carousel (JSON) data
|
22
|
+
# for all sliders configured (if enabled or NOT). It's used by
|
23
|
+
# the J1 Template Adapter to LOAD the carousel HTML markup portion
|
24
|
+
# via AJAX get.
|
20
25
|
#
|
21
|
-
#
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
28
|
-
#
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
32
|
-
# NOTE:
|
33
|
-
# Be careful changing the Liquid code. If the code is changed, check
|
34
|
-
# the integrity of the JSON data created. Corrupted JSON data makes
|
35
|
-
# the Javascript of an Adapter to fail and no functionality will
|
36
|
-
# be available for most UNCLEAR reasons.
|
37
|
-
#
|
26
|
+
# The Liquid template engine generates a JSON file as an object of
|
27
|
+
# arrays that contains all image data used by several sliders. See
|
28
|
+
# below the fields taken from the YAML data file:
|
29
|
+
# ~/_data/apps/j1_carousel.yml.
|
30
|
+
# -----------------------------------------------------------------------------
|
31
|
+
# NOTE:
|
32
|
+
# Be careful changing the Liquid code. If the code is changed, check
|
33
|
+
# the integrity of the JSON data created. Corrupted JSON data makes
|
34
|
+
# the Javascript of an Adapter to fail and no functionality will
|
35
|
+
# be available for most UNCLEAR reasons.
|
38
36
|
# -----------------------------------------------------------------------------
|
39
37
|
# Test data:
|
40
38
|
# {{ liquid_var | debug }}
|
@@ -50,6 +48,8 @@ regenerate: true
|
|
50
48
|
|
51
49
|
{% comment %} Set config data
|
52
50
|
-------------------------------------------------------------------------------- {% endcomment %}
|
51
|
+
{% assign environment = site.environment %}
|
52
|
+
|
53
53
|
{% assign carousel_config_defaults = apps.defaults.carousel.defaults %}
|
54
54
|
{% assign carousel_config_settings = apps.carousel.settings %}
|
55
55
|
|
@@ -57,6 +57,11 @@ regenerate: true
|
|
57
57
|
-------------------------------------------------------------------------------- {% endcomment %}
|
58
58
|
{% assign carousel_config = carousel_config_defaults | merge: carousel_config_settings %}
|
59
59
|
|
60
|
+
{% assign production = false %}
|
61
|
+
{% if environment == 'prod' or environment == 'production' %}
|
62
|
+
{% assign production = true %}
|
63
|
+
{% endif %}
|
64
|
+
|
60
65
|
{
|
61
66
|
{% for item in carousel_config.carousel %}
|
62
67
|
"{{item.show.id}}" : [
|
@@ -105,5 +110,9 @@ regenerate: true
|
|
105
110
|
}
|
106
111
|
|
107
112
|
{% endcapture %}
|
108
|
-
{
|
109
|
-
{
|
113
|
+
{% if production %}
|
114
|
+
{{ cache | minifyJSON }}
|
115
|
+
{% else %}
|
116
|
+
{{ cache | strip_empty_lines }}
|
117
|
+
{% endif %}
|
118
|
+
{% assign cache = nil %}
|