j1-template 2024.3.23 → 2024.3.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/assets/data/apps/amplitudehtml +1147 -0
- data/assets/data/apps/gallery.html +342 -0
- data/assets/data/{masonry.html → apps/masonry.html} +22 -9
- data/assets/data/apps/swiper.html +901 -0
- data/assets/data/gallery_app.html +102 -14
- data/assets/data/masonry_app.html +521 -0
- data/assets/theme/j1/adapter/js/gallery.js +13 -2
- data/assets/theme/j1/core/css/themes/unolight/bootstrap.css +29 -0
- data/assets/theme/j1/core/css/themes/unolight/bootstrap.min.css +1 -1
- data/assets/theme/j1/core/css/vendor.css +1 -1
- data/assets/theme/j1/core/css/vendor.min.css +1 -1
- data/assets/theme/j1/modules/lightGallery/css/theme/uno/uno.css +21 -13
- data/assets/theme/j1/modules/lightGallery/css/theme/uno/uno.min.css +1 -2
- data/assets/theme/j1/modules/lightGallery/js/lightgallery.js +48 -28
- data/assets/theme/j1/modules/lightGallery/js/lightgallery.min.js +1 -8
- data/assets/theme/j1/modules/lightGallery/js/plugins/lg-video.js +463 -298
- data/assets/theme/j1/modules/lightGallery/js/plugins/lg-video.min.js +1 -8
- data/assets/theme/j1/modules/rtable/css/theme/uno/rtable.css +11 -1
- data/assets/theme/j1/modules/videojs/css/themes/uno.css +53 -31
- data/assets/theme/j1/modules/videojs/css/themes/uno.min.css +1 -1
- data/assets/theme/j1/modules/videojs/css/videojs.css +2 -3
- data/assets/theme/j1/modules/videojs/css/videojs.min.css +1 -1
- data/assets/theme/j1/modules/videojs/plugins/controls/aspect-ratio-panel/!examples/index.html +4 -9
- data/assets/theme/j1/modules/videojs/plugins/controls/hotkeys/!examples/example.html +1 -1
- data/assets/theme/j1/modules/videojs/plugins/controls/persist-settings/!examples/index.html +3 -7
- data/assets/theme/j1/modules/videojs/plugins/controls/playbackrate-adjuster/!examples/index.html +3 -8
- data/assets/theme/j1/modules/videojs/plugins/controls/zoom/css/zoom.css +55 -55
- data/assets/theme/j1/modules/videojs/plugins/controls/zoom/css/zoom.min.css +2 -1
- data/assets/theme/j1/modules/videojs/plugins/controls/zoom/js/zoom.js +590 -382
- data/assets/theme/j1/modules/videojs/plugins/controls/zoom/js/zoom.min.js +1 -1
- data/assets/theme/j1/modules/videojs/plugins/j1_core/template.min.js +31 -0
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/index.html +32 -0
- data/assets/theme/j1/modules/videojs/plugins/players/dm/js/dailymotion.0.js +647 -0
- data/assets/theme/j1/modules/videojs/plugins/players/dm/js/dailymotion.1.js +653 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/!examples/{player → iframe_api}/index.html +6 -6
- data/assets/theme/j1/modules/videojs/plugins/players/vm/!examples/videojs_api/index.html +38 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/api/js/v2.21.0/vimeo.js +3562 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/api/js/v2.21.0/vimeo.min.js +36 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/api/js/vimeo.js +451 -1849
- data/assets/theme/j1/modules/videojs/plugins/players/vm/api/js/vimeo.min.js +2 -14
- data/assets/theme/j1/modules/videojs/plugins/players/vm/js/LICENSE +21 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/js/README.md +54 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/js/old/vimeo.js +666 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/js/old/vimeo.min.js +28 -0
- data/assets/theme/j1/modules/videojs/plugins/players/vm/js/vimeo.js +2318 -548
- data/assets/theme/j1/modules/videojs/plugins/players/vm/js/vimeo.min.js +12 -18
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/index.html +31 -0
- data/assets/theme/j1/modules/videojs/plugins/players/yt/js/youtube.js +12 -5
- data/assets/theme/j1/modules/videojs/plugins/players/yt/js/youtube.min.js +1 -1
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +1 -1
- data/lib/starter_web/README.md +5 -5
- data/lib/starter_web/_config.yml +2 -2
- data/lib/starter_web/_data/blocks/banner.yml +3 -3
- data/lib/starter_web/_data/j1_config.yml +1 -1
- data/lib/starter_web/_data/layouts/home.yml +1 -1
- data/lib/starter_web/_data/modules/attics.yml +11 -0
- data/lib/starter_web/_data/modules/authentication.yml +1 -2
- data/lib/starter_web/_data/modules/carousel.yml +1 -1
- data/lib/starter_web/_data/modules/defaults/masonry.yml +116 -23
- data/lib/starter_web/_data/modules/gallery.yml +197 -238
- data/lib/starter_web/_data/modules/log4javascript.yml +1 -1
- data/lib/starter_web/_data/modules/masonry.yml +36 -14
- data/lib/starter_web/_data/modules/navigator.yml +1 -1
- data/lib/starter_web/_data/modules/navigator_menu.yml +12 -8
- data/lib/starter_web/_data/templates/feed.xml +1 -1
- data/lib/starter_web/_includes/attributes.asciidoc +7 -0
- data/lib/starter_web/_plugins/asciidoctor/dailymotion-block.rb +206 -24
- data/lib/starter_web/_plugins/index/lunr.rb +1 -1
- data/lib/starter_web/assets/image/module/attic/1920x1280/admin-dashboard-bootstrap.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/alexander-redl.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/alexander-shatov.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/alexey-ruban.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/andrea-badino.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/bootstrap-modal.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/bp-miller.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/brad-neathery.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/brigitta-schneiter.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/build-with-gemini.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/clem-onojeghuo.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/crawford-jolly.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/eleni-afiontzi.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/fly-d.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/guillaume-bolduc.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/ideas-start-here-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/isaac-davis.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/j1-launch.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/j1-mockup.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/john-schnobrich-2.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/josep-martins.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/josh-liu.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/kelly-sikkemal.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/kira-auf-der-heide.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/kristopher-roller.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/markus-spiske.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/martin-sanchez.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/material_symbols.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/matthaeus.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/melanie-deziel.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/milad-fakurian.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/mohammad-rahmani.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/nasa.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/quino-al-2.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/stories-ink-tattoo-care.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/towfiqu-barbhuiya.jpg +0 -0
- data/lib/starter_web/assets/image/page/tour/bootswatch-themes.jpg +0 -0
- data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +1 -1
- data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +2 -2
- data/lib/starter_web/collections/posts/public/featured/_posts/2023-10-18-url-types.adoc +2 -2
- data/lib/starter_web/config.ru +1 -1
- data/lib/starter_web/dot.gitattributes +1 -1
- data/lib/starter_web/index.html +8 -7
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/about/features.adoc +5 -5
- data/lib/starter_web/pages/public/about/reporting_issues.adoc +5 -5
- data/lib/starter_web/pages/public/about/site.adoc +14 -10
- data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +1 -1
- data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +1 -1
- data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +1 -1
- data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +1 -1
- data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +1 -1
- data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +1 -1
- data/lib/starter_web/pages/public/blog/navigator/archive/allview.html +1 -1
- data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +1 -1
- data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +1 -1
- data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +1 -1
- data/lib/starter_web/pages/public/blog/navigator/index.html +1 -1
- data/lib/starter_web/pages/public/learn/bookshelf/article_previewer/viewer_biography.adoc +1 -1
- data/lib/starter_web/pages/public/learn/bookshelf/article_previewer/viewer_fantasy.adoc +1 -1
- data/lib/starter_web/pages/public/learn/bookshelf/article_previewer/viewer_romance.adoc +1 -1
- data/lib/starter_web/pages/public/learn/bookshelf/jekyll_collections.adoc +1 -1
- data/lib/starter_web/pages/public/learn/bookshelf/viewer_all_books.adoc +1 -1
- data/lib/starter_web/pages/public/learn/where_to_go.adoc +1 -1
- data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +3 -3
- data/lib/starter_web/pages/public/legal/en/200_impress.adoc +3 -3
- data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +3 -3
- data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +3 -3
- data/lib/starter_web/pages/public/panels/intro_panel/_includes/attributes.asciidoc +1 -1
- data/lib/starter_web/pages/public/panels/intro_panel/panel.adoc +1 -4
- data/lib/starter_web/pages/public/plans/plans.adoc +1 -1
- data/lib/starter_web/pages/public/tools/previewer/preview_bootstrap_theme.adoc +6 -6
- data/lib/starter_web/pages/public/tools/tester/app_tester_amplitudejs_yt.adoc +7 -3
- data/lib/starter_web/pages/public/tools/tester/app_tester_swiperjs.adoc +7 -3
- data/lib/starter_web/pages/public/tools/tester/videojs_macro_tester.adoc +122 -34
- data/lib/starter_web/pages/public/tour/_includes/attributes.asciidoc +1 -2
- data/lib/starter_web/pages/public/tour/_includes/documents/419_advanced_modals_demo.asciidoc +1 -1
- data/lib/starter_web/pages/public/tour/_includes/documents/themes_bootstrap.asciidoc +1 -1
- data/lib/starter_web/pages/public/tour/asciidoc_extensions.adoc +7 -3
- data/lib/starter_web/pages/public/tour/bootstrap_themes.adoc +62 -7
- data/lib/starter_web/pages/public/tour/icon_fonts.adoc +4 -8
- data/lib/starter_web/pages/public/tour/modal_extentions.adoc +2 -2
- data/lib/starter_web/pages/public/tour/responsive_tables.adoc +21 -15
- data/lib/starter_web/pages/public/tour/typography.adoc +5 -5
- data/lib/starter_web/pages/public/tour/video_data.adoc +51 -26
- metadata +34 -149
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/lg-transitions.css +0 -984
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/lg-transitions.min.css +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/lightgallery-bundle.css +0 -1627
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/lightgallery-bundle.min.css +0 -25
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/animation-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/customize-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/dynamic-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/facebook-icon.svg +0 -10
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/googleplus-icon.svg +0 -30
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/html5-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/linked-in.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/module-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/play-button-hover.svg +0 -94
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/play-button.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/play-button.svg +0 -93
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/responsive-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/thumb-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/touch-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/twitter-icon.svg +0 -15
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/twitter.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/video1-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/zoom-w.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/icons/zoom.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/uno.css +0 -140
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/css/themes/uno/uno.min.css +0 -19
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/fonts/lg.svg +0 -54
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/fonts/lg.ttf +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/fonts/lg.woff +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/fonts/lg.woff2 +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/images/loading.gif +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/img/loading.gif +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/img/video-play.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/img/vimeo-play.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/img/youtube-play.png +0 -0
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/lightgallery.js +0 -2782
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/lightgallery.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/parser/webvtt/LICENSE.md +0 -44
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/parser/webvtt/README.md +0 -37
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/parser/webvtt/parser.js +0 -890
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/parser/webvtt/parser.min.js +0 -8
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/j1/j1-video.js +0 -402
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/j1/j1-video.min.js +0 -7
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/j1/lg-video.1.js +0 -585
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-autoplay.js +0 -275
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-autoplay.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-comment.js +0 -230
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-comment.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-fullscreen.js +0 -160
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-fullscreen.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-hash.js +0 -223
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-hash.min.js +0 -27
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-medium-zoom.js +0 -157
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-medium-zoom.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-pager.js +0 -164
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-pager.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-rotate.js +0 -299
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-rotate.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-share.js +0 -244
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-share.min.js +0 -27
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-thumbnail.js +0 -509
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-thumbnail.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-video.js +0 -909
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-video.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-vimeo-thumbnail.js +0 -207
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-vimeo-thumbnail.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-zoom.js +0 -999
- data/assets/theme/j1/modules/lightGallery/!v2.7.2/js/plugins/lg-zoom.min.js +0 -26
- data/assets/theme/j1/modules/lightGallery/js/plugins/j1/lg-thumbnail.0.js +0 -495
- data/assets/theme/j1/modules/lightGallery/js/plugins/j1/lg-thumbnail.1.js +0 -513
- data/assets/theme/j1/modules/lightGallery/js/plugins/j1/lg-video.0.js +0 -553
- data/assets/theme/j1/modules/lightGallery/js/plugins/j1/lg-video.1.js +0 -585
- data/assets/theme/j1/modules/lightGallery/js/plugins/j1/lg-video.2.js +0 -914
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/font/README.md +0 -151
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/font/VideoJS.svg +0 -150
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/font/video-js-cdn.css +0 -2012
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/city.css +0 -147
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/city.min.css +0 -5
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/fantasy.css +0 -113
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/fantasy.min.css +0 -5
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/forest.css +0 -166
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/forest.min.css +0 -5
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/sea.css +0 -72
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/sea.min.css +0 -5
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/uno.css +0 -311
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/themes/uno.min.css +0 -19
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/videojs.css +0 -1686
- data/assets/theme/j1/modules/videojs/!v8.12.0/css/videojs.min.css +0 -13
- data/assets/theme/j1/modules/videojs/!v8.12.0/js/video.js +0 -65226
- data/assets/theme/j1/modules/videojs/!v8.12.0/js/video.min.js +0 -55
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/dailymotion-controls.html +0 -18
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/dailymotion-javascript.html +0 -28
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/dailymotion-playlist.html +0 -19
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/global-parameters.html +0 -30
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/simple.html +0 -20
- data/assets/theme/j1/modules/videojs/plugins/players/dm/!examples/switch.html +0 -39
- data/assets/theme/j1/modules/videojs/plugins/players/vm/!examples/index.html +0 -34
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/global-parameters.html +0 -34
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/simple.html +0 -22
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/switch.html +0 -39
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/youtube-controls.html +0 -20
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/youtube-javascript.html +0 -29
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/youtube-list.html +0 -21
- data/assets/theme/j1/modules/videojs/plugins/players/yt/!examples/youtube-playlist.html +0 -21
- data/lib/starter_web/_data/modules/gallery_app.yml +0 -1002
- data/lib/starter_web/_data/modules/gallery_playlists.yml +0 -534
- data/lib/starter_web/assets/image/module/attic/1920x1280/alina-grubnyak.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/bruno-figueiredo.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/harpal-singh.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/hayden-mills-2.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/j1-content-mockup-1.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/j1-content-mockup-2.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/j1-content-mockup-3.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/j1-starter-mockup-1.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/recha-oktaviani.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/1920x1280/tiny_desk.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/admin-dashboard-bootstrap-1280x600.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/alice-donovan-rouse-2.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/building-blocks-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/christina-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/franck-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/giammarco-boscaro-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/ideas-start-here-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/ideas-start-here-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/jessica-ruscello-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/joanna-kosinska-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/leon-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/lianhao-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/library-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/markus-krisetya-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/markus-spiske-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/markus-spiske4-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/matthaeus-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/matthew-dockery-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/no-time-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/rirri-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/shubham-dhage-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/shutterstock_sponsor-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/sigmund-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/szabo-viktor-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/themes-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/tldr-1920x800.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/vladislav-klapin-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/image/module/attic/yellow-cactus-1920x1280.jpg +0 -0
- /data/assets/theme/j1/modules/videojs/plugins/players/vm/{LICENSE → js/old/LICENSE} +0 -0
- /data/assets/theme/j1/modules/videojs/plugins/players/vm/{README.md → js/old/README.md} +0 -0
@@ -0,0 +1,521 @@
|
|
1
|
+
---
|
2
|
+
regenerate: true
|
3
|
+
exclude_from_search: true
|
4
|
+
---
|
5
|
+
|
6
|
+
{%- capture cache -%}
|
7
|
+
|
8
|
+
{% comment %}
|
9
|
+
# -----------------------------------------------------------------------------
|
10
|
+
# ~/assets/data/masonry_app.html
|
11
|
+
# Liquid procedure to generate the HTML portion for all Masonry Grids
|
12
|
+
# configured
|
13
|
+
#
|
14
|
+
# Product/Info:
|
15
|
+
# https://jekyll.one
|
16
|
+
#
|
17
|
+
# Copyright (C) 2023-2025 Juergen Adams
|
18
|
+
#
|
19
|
+
# J1 Template is licensed under the MIT License.
|
20
|
+
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE
|
21
|
+
# -----------------------------------------------------------------------------
|
22
|
+
# NOTE: Data loaded dynamically by J1 Masonry module (AJAX)
|
23
|
+
# -----------------------------------------------------------------------------
|
24
|
+
# Test data:
|
25
|
+
# {{variable | debug}}
|
26
|
+
# -----------------------------------------------------------------------------
|
27
|
+
{% endcomment %}
|
28
|
+
|
29
|
+
{% comment %} Liquid procedures
|
30
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
31
|
+
|
32
|
+
{% comment %} Liquid var initialization
|
33
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
34
|
+
|
35
|
+
{% comment %} Set config files
|
36
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
37
|
+
{% assign template_config = site.data.j1_config %}
|
38
|
+
{% assign modules = site.data.modules %}
|
39
|
+
|
40
|
+
{% comment %} Set config data
|
41
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
42
|
+
{% assign environment = site.environment %}
|
43
|
+
{% assign masonry_defaults = modules.defaults.masonry.defaults %}
|
44
|
+
{% assign masonry_settings = modules.masonry.settings %}
|
45
|
+
|
46
|
+
{% comment %} Set config options
|
47
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
48
|
+
{% assign masonry_options = masonry_defaults | merge: masonry_settings %}
|
49
|
+
{% assign grids = masonry_options.grids %}
|
50
|
+
|
51
|
+
{% comment %} Configure permalink settings
|
52
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
53
|
+
{% assign ext = '' %}
|
54
|
+
{% if site.permalink == 'none' %}
|
55
|
+
{% assign ext = '.html' %}
|
56
|
+
{% endif %}
|
57
|
+
|
58
|
+
{% comment %} Detect prod mode
|
59
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
60
|
+
{% assign production = false %}
|
61
|
+
{% if environment == 'prod' or environment == 'production' %}
|
62
|
+
{% assign production = true %}
|
63
|
+
{% endif %}
|
64
|
+
|
65
|
+
|
66
|
+
{% comment %} Main
|
67
|
+
================================================================================ {% endcomment %}
|
68
|
+
<!DOCTYPE {{site.doctype}}>
|
69
|
+
<html lang="{{site.language}}">
|
70
|
+
<head>
|
71
|
+
<!-- [INFO ] [~/assets/data/masonry.html ] [ set meta data (robots) to exclude HTML datafiles from index ] -->
|
72
|
+
<meta name="robots" content="noindex, nofollow">
|
73
|
+
<meta name="masonry" content="module data file">
|
74
|
+
</head>
|
75
|
+
<body>
|
76
|
+
{% comment %} Collect grids
|
77
|
+
------------------------------------------------------------------------------ {% endcomment %}
|
78
|
+
{% for grid in grids %} {% if grid.enabled %}
|
79
|
+
|
80
|
+
{% comment %} POSTS grids
|
81
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
82
|
+
{% if grid.type == 'post' %}
|
83
|
+
|
84
|
+
<!-- Posts|Group -->
|
85
|
+
<div id="{{grid.id}}" class="row {{grid.id | replace: '_','-' }} g-0">
|
86
|
+
<!-- Collect posts only if group matches -->
|
87
|
+
{% for post in site.posts %} {% if post.group contains grid.group %}
|
88
|
+
|
89
|
+
{% if grid.translate_links %}
|
90
|
+
{% assign translate = "" %}
|
91
|
+
{% else %}
|
92
|
+
{% assign translate = "notranslate" %}
|
93
|
+
{% endif %}
|
94
|
+
|
95
|
+
{% if grid.link_new_window %}
|
96
|
+
{% assign target = "_blank" %}
|
97
|
+
{% else %}
|
98
|
+
{% assign target = "" %}
|
99
|
+
{% endif %}
|
100
|
+
|
101
|
+
{% comment %} Collect CSS image filters
|
102
|
+
------------------------------------------------------------------------ {% endcomment %}
|
103
|
+
{% assign css_filters = masonry_options.filters | merge: grid.filters %}
|
104
|
+
{% assign image_filters = 'filter:' %}
|
105
|
+
|
106
|
+
{% if css_filters.enabled %}
|
107
|
+
{% for filter in css_filters %}
|
108
|
+
{% if filter[0] contains 'enabled' %}
|
109
|
+
{% continue %}
|
110
|
+
{% endif %}
|
111
|
+
{% capture image_filters %}{{image_filters}} {{filter[0]}}({{filter[1]}}){% endcapture %}
|
112
|
+
{% endfor %}
|
113
|
+
{% endif %}
|
114
|
+
|
115
|
+
<!-- resposive items: 3-2-1 -->
|
116
|
+
<div class="col-xl-{{grid.responsive.xl}} col-lg-{{grid.responsive.lg}} col-md-{{grid.responsive.md}} col-sm-{{grid.responsive.sm}} col-{{grid.responsive.xs}}" style=";padding-bottom: {{grid.gutters}}px; padding-left: {{grid.gutters}}px;">
|
117
|
+
|
118
|
+
<article class="card bg-dark text-center text-white border-0 rounded-0 bottom">
|
119
|
+
<img
|
120
|
+
class="card-img {{grid.image_styles}}"
|
121
|
+
src="{{post.image.path | relative_url}}"
|
122
|
+
aria-label="{{post.title}}"
|
123
|
+
style="{{image_filters}}; height: {{grid.image_height}};">
|
124
|
+
|
125
|
+
<div class="card-content mt-5">
|
126
|
+
|
127
|
+
{% if post %}
|
128
|
+
{% assign categories = post.categories %}
|
129
|
+
{% else %}
|
130
|
+
{% assign categories = page.categories %}
|
131
|
+
{% endif %}
|
132
|
+
|
133
|
+
{% comment %} categories: {{categories | debug}}
|
134
|
+
------------------------------------------------------------------ {% endcomment %}
|
135
|
+
{% for category in categories %}
|
136
|
+
{% if category contains post.category %}
|
137
|
+
<a
|
138
|
+
href="/pages/public/blog/navigator/archive/categoryview/#{{grid.group | slugify}}"
|
139
|
+
class="masonry-article-link d-block text-white text-uppercase link-no-decoration {{translate}}"
|
140
|
+
target="{{target}}"
|
141
|
+
style="font-size: 32px;">
|
142
|
+
{{grid.group}}
|
143
|
+
</a>
|
144
|
+
{% endif %}
|
145
|
+
{% endfor %}
|
146
|
+
|
147
|
+
<ul class="list-inline d-flex justify-content-center mb-5">
|
148
|
+
<li class="list-inline-item">
|
149
|
+
<i class="mdib mdib-account mdib-24px md-gray-400 mr-1" style="margin-right: 8px;"></i>
|
150
|
+
{{site.author.name | split: ' ' | first}} ·
|
151
|
+
</li>
|
152
|
+
<li class="list-inline-item">
|
153
|
+
<i class="mdib mdib-calendar-blank mdib-24px md-gray-400 mr-1"></i>
|
154
|
+
{{post.date | date: '%b %d, %Y'}}
|
155
|
+
</li>
|
156
|
+
</ul>
|
157
|
+
|
158
|
+
<!-- Post link (caption) -->
|
159
|
+
<h4 class="caption notoc">
|
160
|
+
<a
|
161
|
+
href="{{post.url}}"
|
162
|
+
class="masonry-article-link {{translate}}"
|
163
|
+
target="{{target}}"
|
164
|
+
style="font-size: 32px;">
|
165
|
+
{{post.tags[0]}}
|
166
|
+
</a>
|
167
|
+
</h4>
|
168
|
+
<!-- /Post link (caption) -->
|
169
|
+
|
170
|
+
</div>
|
171
|
+
</article>
|
172
|
+
|
173
|
+
</div>
|
174
|
+
{% endif %} {% endfor %}
|
175
|
+
</div>
|
176
|
+
<!-- /Posts|Group -->
|
177
|
+
{% endif %}
|
178
|
+
|
179
|
+
|
180
|
+
{% comment %} COLLECTION grids
|
181
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
182
|
+
{% if grid.type == 'collection' %}
|
183
|
+
|
184
|
+
{% comment %} Set collection data
|
185
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
186
|
+
{% assign collection_name = grid.collection %}
|
187
|
+
|
188
|
+
{% comment %} Collect collection documents
|
189
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
190
|
+
{% for collection in site.collections %}
|
191
|
+
{% if collection.label contains collection_name %}
|
192
|
+
{% assign articles = collection.docs %}
|
193
|
+
{% break %}
|
194
|
+
{% endif %}
|
195
|
+
{% endfor %}
|
196
|
+
|
197
|
+
<!-- Collection|Articles -->
|
198
|
+
<div id="{{grid.id}}" class="row {{grid.id | replace: '_','-' }} g-0">
|
199
|
+
|
200
|
+
{% if grid.translate_titles %}
|
201
|
+
{% assign translate = "" %}
|
202
|
+
{% else %}
|
203
|
+
{% assign translate = "notranslate" %}
|
204
|
+
{% endif %}
|
205
|
+
|
206
|
+
{% comment %} Collect CSS image filters
|
207
|
+
-------------------------------------------------------------------------- {% endcomment %}
|
208
|
+
{% assign css_filters = masonry_options.filters | merge: grid.filters %}
|
209
|
+
{% assign image_filters = 'filter:' %}
|
210
|
+
|
211
|
+
{% if css_filters.enabled %}
|
212
|
+
{% for filter in css_filters %}
|
213
|
+
{% if filter[0] contains 'enabled' %}
|
214
|
+
{% continue %}
|
215
|
+
{% endif %}
|
216
|
+
{% capture image_filters %}{{image_filters}} {{filter[0]}}({{filter[1]}}){% endcapture %}
|
217
|
+
{% endfor %}
|
218
|
+
{% endif %}
|
219
|
+
|
220
|
+
{% for article in articles %}
|
221
|
+
<div class="col-xl-{{grid.responsive.xl}} col-lg-{{grid.responsive.lg}} col-md-{{grid.responsive.md}} col-sm-{{grid.responsive.sm}} col-{{grid.responsive.xs}}" style=";padding-bottom: {{grid.gutters}}px; padding-left: {{grid.gutters}}px;">
|
222
|
+
<!-- (Masonry) Article item -->
|
223
|
+
<div id="{{article.title | downcase | replace: ' ' ,'_'}}" class="masonry-article-item masonry-article-item--w400">
|
224
|
+
{% if grid.preview %}
|
225
|
+
<a
|
226
|
+
href="#articleModal_{{grid.id}}_{{forloop.index}}"
|
227
|
+
class="masonry-article-link"
|
228
|
+
data-bs-toggle="modal">
|
229
|
+
<div class="masonry-article-hover">
|
230
|
+
<div class="masonry-article-hover-content">
|
231
|
+
<i class="mdib mdib-plus mdib-10x"></i>
|
232
|
+
</div>
|
233
|
+
</div>
|
234
|
+
<img
|
235
|
+
class="{{grid.image_styles}}"
|
236
|
+
src="{{article.image.path}}"
|
237
|
+
aria-label="{{article.title}}"
|
238
|
+
style="{{image_filters}}; height: {{grid.image_height}}; width: {{grid.image_width}}">
|
239
|
+
</a>
|
240
|
+
{% else %}
|
241
|
+
<img
|
242
|
+
class="{{grid.image_styles}}"
|
243
|
+
src="{{article.image.path}}"
|
244
|
+
aria-label="{{article.title}}"
|
245
|
+
style="{{image_filters}}; height: {{grid.image_height}}; width: {{grid.image_width}}">
|
246
|
+
{% endif %}
|
247
|
+
<div class="masonry-article-caption">
|
248
|
+
<div class="masonry-article-caption-heading">
|
249
|
+
<a
|
250
|
+
href="{{article.url}}"
|
251
|
+
class="masonry-article-link {{translate}}"
|
252
|
+
target="{{target}}">
|
253
|
+
{{article.title}}
|
254
|
+
</a>
|
255
|
+
</div>
|
256
|
+
<div class="masonry-article-caption-subheading">{{article.tags[0]}}</div>
|
257
|
+
</div>
|
258
|
+
</div>
|
259
|
+
<!-- /(Masonry) Article item -->
|
260
|
+
</div>
|
261
|
+
|
262
|
+
<!-- Article Modal-->
|
263
|
+
{% if grid.preview %}
|
264
|
+
<div id="articleModal_{{grid.id}}_{{forloop.index}}" class="article-modal modal fade" tabindex="-1" role="dialog" aria-hidden="true">
|
265
|
+
<div class="modal-dialog">
|
266
|
+
<div class="modal-content">
|
267
|
+
|
268
|
+
<!-- div class="close-modal" data-bs-dismiss="modal">
|
269
|
+
<img src="{{'/assets/image/icon/controls/close-icon.svg' | relative_url}}" aria-label="Close modal">
|
270
|
+
</div -->
|
271
|
+
|
272
|
+
<div class="close-modal" data-bs-dismiss="modal" aria-label="Close">
|
273
|
+
<i class="mdi mdi-close mdi-dark mdi-48px"></i>
|
274
|
+
</div >
|
275
|
+
|
276
|
+
<div class="container">
|
277
|
+
<div class="row justify-content-center">
|
278
|
+
<div class="col-lg-8">
|
279
|
+
<div class="modal-body">
|
280
|
+
<!-- Project details-->
|
281
|
+
<h2 class="text-uppercase notoc {{translate}}">{{article.title}}</h2>
|
282
|
+
<p class="item-intro">{{article.tagline}}</p>
|
283
|
+
<!-- img class="img-fluid d-block mx-auto" src="{{article.image.path | relative_url}}" aria-label="{{article.title}}" -->
|
284
|
+
<p>{{article.description}}</p>
|
285
|
+
<ul class="list-inline">
|
286
|
+
<!-- li>
|
287
|
+
<strong>Titel:</strong>
|
288
|
+
<span class="{{translate}}">{{article.title}}</span>
|
289
|
+
</li -->
|
290
|
+
<!-- li>
|
291
|
+
<strong>Kategorien:</strong>
|
292
|
+
<span class="{{translate}}">{{article.categories}}</span>
|
293
|
+
</li -->
|
294
|
+
<!-- li>
|
295
|
+
<strong>Tags:</strong>
|
296
|
+
<span class="{{translate}}">{{article.tags}}</span>
|
297
|
+
</li -->
|
298
|
+
</ul>
|
299
|
+
|
300
|
+
<!-- button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
|
301
|
+
<i class="mdib mdib-close mdib-24px mx-2"></i>
|
302
|
+
Schließen
|
303
|
+
</button -->
|
304
|
+
</div>
|
305
|
+
</div>
|
306
|
+
</div>
|
307
|
+
</div>
|
308
|
+
|
309
|
+
</div>
|
310
|
+
</div>
|
311
|
+
</div>
|
312
|
+
{% endif %}
|
313
|
+
<!-- /Article Modal-->
|
314
|
+
|
315
|
+
{% endfor %}
|
316
|
+
</div>
|
317
|
+
<!-- /Collection|Articles -->
|
318
|
+
{% endif %}
|
319
|
+
|
320
|
+
{% comment %} Image Grids
|
321
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
322
|
+
{% if grid.type == 'image' %}
|
323
|
+
|
324
|
+
{% comment %} Collect CSS image filters
|
325
|
+
-------------------------------------------------------------------------- {% endcomment %}
|
326
|
+
{% assign css_filters = masonry_options.filters | merge: grid.filters %}
|
327
|
+
{% assign image_filters = 'filter:' %}
|
328
|
+
|
329
|
+
{% if css_filters.enabled %}
|
330
|
+
{% for filter in css_filters %}
|
331
|
+
{% if filter[0] contains 'enabled' %}
|
332
|
+
{% continue %}
|
333
|
+
{% endif %}
|
334
|
+
{% capture image_filters %}{{image_filters}} {{filter[0]}}({{filter[1]}}){% endcapture %}
|
335
|
+
{% endfor %}
|
336
|
+
{% endif %}
|
337
|
+
|
338
|
+
<!-- Card Image Grid -->
|
339
|
+
<div id="{{grid.id}}" class="row {{grid.id | replace: '_','-' }} g-0">
|
340
|
+
{% for image in grid.images %}
|
341
|
+
<div class="col-xl-{{grid.responsive.xl}} col-lg-{{grid.responsive.lg}} col-md-{{grid.responsive.md}} col-sm-{{grid.responsive.sm}} col-{{grid.responsive.xs}}" style=";padding-bottom: {{grid.gutters}}px; padding-left: {{grid.gutters}}px;">
|
342
|
+
<div class="card">
|
343
|
+
{% if grid.lightbox.enabled %}
|
344
|
+
{% if grid.lightbox.type == 'lb' %}
|
345
|
+
<div class="{{grid.caption.position}}">
|
346
|
+
<a
|
347
|
+
href="{{grid.image_base_path}}/{{image.file}}"
|
348
|
+
data-lightbox="{{grid.id}}-image-group"
|
349
|
+
data-caption="{{image.caption}}"
|
350
|
+
data-title="{{image.caption}}">
|
351
|
+
<img
|
352
|
+
id="{{forloop.index}}"
|
353
|
+
class="{{grid.image_styles}}"
|
354
|
+
src="{{grid.image_base_path}}/{{image.file}}"
|
355
|
+
aria-label="{{image.caption}}"
|
356
|
+
style="{{image_filters}}; height: {{grid.image_height}}">
|
357
|
+
</a>
|
358
|
+
{% if grid.caption.enabled %}
|
359
|
+
<div class="caption">{{image.caption}}</div>
|
360
|
+
{% endif %}
|
361
|
+
</div>
|
362
|
+
{% elsif grid.lightbox.type == 'lg' %}
|
363
|
+
<!-- place lightGalley code -->
|
364
|
+
<!-- see: https://www.lightgalleryjs.com/docs/getting-started/#the-markup -->
|
365
|
+
<div class="{{grid.caption.position}}">
|
366
|
+
<a
|
367
|
+
href="{{grid.image_base_path}}/{{image.file}}"
|
368
|
+
class="lg-item">
|
369
|
+
<img
|
370
|
+
id="{{forloop.index}}"
|
371
|
+
class="img-responsive"
|
372
|
+
src="{{grid.image_base_path}}/{{image.file}}"
|
373
|
+
aria-label="{{image.caption}}">
|
374
|
+
</a>
|
375
|
+
{% if grid.caption.enabled %}
|
376
|
+
<div class="caption">{{image.caption}}</div>
|
377
|
+
{% endif %}
|
378
|
+
</div>
|
379
|
+
{% else %}
|
380
|
+
<div class="{{grid.caption.position}}">
|
381
|
+
<img
|
382
|
+
id="{{forloop.index}}"
|
383
|
+
class="{{grid.image_styles}}"
|
384
|
+
src="{{grid.image_base_path}}/{{image.file}}"
|
385
|
+
aria-label="{{image.caption}}">
|
386
|
+
{% if grid.caption.enabled %}
|
387
|
+
<div class="caption">{{image.caption}}</div>
|
388
|
+
{% endif %}
|
389
|
+
</div>
|
390
|
+
{% endif %}
|
391
|
+
{% endif %}
|
392
|
+
</div>
|
393
|
+
</div>
|
394
|
+
{% endfor %}
|
395
|
+
</div>
|
396
|
+
<!-- /Image Grid -->
|
397
|
+
{% endif %}
|
398
|
+
|
399
|
+
{% comment %} VIDEO Grid
|
400
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
401
|
+
{% if grid.type == 'video' %}
|
402
|
+
|
403
|
+
{% comment %} Collect CSS image filters
|
404
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
405
|
+
{% assign css_filters = masonry_options.filters | merge: grid.filters %}
|
406
|
+
{% assign image_filters = 'filter:' %}
|
407
|
+
|
408
|
+
{% if css_filters.enabled %}
|
409
|
+
{% for filter in css_filters %}
|
410
|
+
{% if filter[0] contains 'enabled' %}
|
411
|
+
{% continue %}
|
412
|
+
{% endif %}
|
413
|
+
{% capture image_filters %}{{image_filters}} {{filter[0]}}({{filter[1]}}){% endcapture %}
|
414
|
+
{% endfor %}
|
415
|
+
{% endif %}
|
416
|
+
|
417
|
+
<!-- START Video Grid -->
|
418
|
+
<div id="{{grid.id}}" class="row {{grid.id | replace: '_','-' }} g-0">
|
419
|
+
{% for video in grid.videos %}
|
420
|
+
{% if video.type == 'youtube' or video.type == 'dailymotion' or video.type == 'vimeo' or video.type == 'wistia' %}
|
421
|
+
<div class="col-xl-{{grid.responsive.xl}} col-lg-{{grid.responsive.lg}} col-md-{{grid.responsive.md}} col-sm-{{grid.responsive.sm}} col-{{grid.responsive.xs}}" style="padding-bottom: {{grid.gutters}}px; padding-left: {{grid.gutters}}px;">
|
422
|
+
<div class="card {{video.caption.position}}">
|
423
|
+
<!-- START {{video.type}} video -->
|
424
|
+
<a
|
425
|
+
href="#"
|
426
|
+
class="lg-item"
|
427
|
+
data-lg-size="{{video.size}}"
|
428
|
+
data-pinterest-text="{{video.pinterest_prefix}} {{video.name}} at {{video.source}}"
|
429
|
+
data-tweet-text="{{video.tweet_prefix}} {{video.name}} at {{video.source}}"
|
430
|
+
data-src="{{video.source}}"
|
431
|
+
data-poster="{{video.poster.source}}"
|
432
|
+
data-sub-html="{{video.description|strip|strip_newlines}}">
|
433
|
+
<div class="lg-uno-video-icon">
|
434
|
+
<img
|
435
|
+
id="{{video.name | replace: ' ','_' | replace: '-','_' | downcase}}"
|
436
|
+
class="{{video.poster.style}}"
|
437
|
+
src="{{video.poster.source}}"
|
438
|
+
aria-label="{{video.name}}">
|
439
|
+
|
440
|
+
<span class="big-play-button"></span>
|
441
|
+
</div>
|
442
|
+
</a>
|
443
|
+
<!-- END {{video.type}} video -->
|
444
|
+
<div class="caption">{{video.caption.text}}</div>
|
445
|
+
</div>
|
446
|
+
</div>
|
447
|
+
|
448
|
+
{% elsif video.type == 'html5' %}
|
449
|
+
{% assign video_split = video.source | split: '.' %}
|
450
|
+
<div class="col-xl-{{grid.responsive.xl}} col-lg-{{grid.responsive.lg}} col-md-{{grid.responsive.md}} col-sm-{{grid.responsive.sm}} col-{{grid.responsive.xs}}" style="padding-bottom: {{grid.gutters}}px; padding-left: {{grid.gutters}}px;">
|
451
|
+
<div class="card {{video.caption.position}}">
|
452
|
+
<!-- START {{video.type}} video -->
|
453
|
+
<a
|
454
|
+
href="#"
|
455
|
+
class="lg-item"
|
456
|
+
data-lg-size="{{video.size}}"
|
457
|
+
data-pinterest-text="{{video.pinterest_prefix}} {{video.name}} at {{video.source}}"
|
458
|
+
data-tweet-text="{{video.tweet_prefix}} {{video.name}} at {{video.source}}"
|
459
|
+
data-src="{{video.source}}"
|
460
|
+
data-poster="{{grid.html5.poster_base_path}}/{{video.poster.source}}"
|
461
|
+
data-sub-html="{{video.description|strip|strip_newlines}}"
|
462
|
+
data-video='{
|
463
|
+
"source": [{
|
464
|
+
"src": "{{grid.html5.video_base_path}}/{{video.source}}",
|
465
|
+
"type": "video/{{video_split[1]}}"
|
466
|
+
}],
|
467
|
+
"attributes": {
|
468
|
+
{% for attribute in grid.lightGallery.attributes %}
|
469
|
+
{{attribute[0] | json}}: {{attribute[1] | json}}{% if forloop.last %}{% else %},{% endif %}
|
470
|
+
{% endfor %}
|
471
|
+
},
|
472
|
+
"tracks": [
|
473
|
+
{% for track in video.tracks %}
|
474
|
+
{
|
475
|
+
{% for attribute in track %}
|
476
|
+
{% if attribute[0] == 'track' %} {% continue %} {% endif %}
|
477
|
+
{{attribute[0] | json}}: {{attribute[1] | json}}{% if forloop.last %}{% else %},{% endif %}
|
478
|
+
{% endfor %}
|
479
|
+
}{% if forloop.last %}{% else %},{% endif %}
|
480
|
+
{% endfor %}
|
481
|
+
]
|
482
|
+
}'>
|
483
|
+
|
484
|
+
<div class="lg-uno-video-icon">
|
485
|
+
<img
|
486
|
+
id="{{video.name | replace: ' ','_' | replace: '-','_' | downcase}}"
|
487
|
+
class="{{video.poster.style}}"
|
488
|
+
src="{{grid.html5.poster_base_path}}/{{video.poster.source}}"
|
489
|
+
aria-label="{{video.name}}">
|
490
|
+
|
491
|
+
<span class="big-play-button"></span>
|
492
|
+
</div>
|
493
|
+
|
494
|
+
</a>
|
495
|
+
<!-- END {{video.type}} video -->
|
496
|
+
<div class="caption">{{video.caption.text}}</div>
|
497
|
+
</div>
|
498
|
+
</div>
|
499
|
+
{% endif %}
|
500
|
+
{% endfor %}
|
501
|
+
</div>
|
502
|
+
<!-- END Video Grid -->
|
503
|
+
{% endif %}
|
504
|
+
|
505
|
+
{% endif %} {% endfor %}
|
506
|
+
<!-- [INFO ] [~/assets/data/masonry.html ] [END collecting all grid items] -->
|
507
|
+
</body>
|
508
|
+
</html>
|
509
|
+
{%- endcapture -%}
|
510
|
+
|
511
|
+
{% comment %} Beautify|Compress page
|
512
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
513
|
+
{%- if production -%}
|
514
|
+
{% 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 %}
|
515
|
+
{%- else -%}
|
516
|
+
{{cache|pretty_print}}
|
517
|
+
{%- endif -%}
|
518
|
+
|
519
|
+
{% comment %} Reset page cache
|
520
|
+
-------------------------------------------------------------------------------- {% endcomment %}
|
521
|
+
{%- assign cache = false -%}
|
@@ -6,7 +6,7 @@ regenerate: true
|
|
6
6
|
|
7
7
|
{% comment %}
|
8
8
|
# -----------------------------------------------------------------------------
|
9
|
-
# ~/assets/theme/j1/adapter/js/gallery.js
|
9
|
+
# ~/assets/theme/j1/adapter/js/gallery.js (1)
|
10
10
|
# Liquid template to create the J1 Adapter for J1 Gallery
|
11
11
|
#
|
12
12
|
# Product/Info:
|
@@ -54,7 +54,7 @@ regenerate: true
|
|
54
54
|
|
55
55
|
/*
|
56
56
|
# -----------------------------------------------------------------------------
|
57
|
-
# ~/assets/theme/j1/adapter/js/gallery.js
|
57
|
+
# ~/assets/theme/j1/adapter/js/gallery.js (1)
|
58
58
|
# JS Adapter for J1 Gallery
|
59
59
|
#
|
60
60
|
# Product/Info:
|
@@ -270,6 +270,17 @@ j1.adapter.gallery = ((j1, window) => {
|
|
270
270
|
{{option[0] | json}}: {{option[1] | json}},
|
271
271
|
{% endfor %}
|
272
272
|
"origin": "origin"
|
273
|
+
},
|
274
|
+
{% endif %}
|
275
|
+
|
276
|
+
{% if gallery.video == 'youtube' and gallery.lightGallery.videojsOptions.enabled %}
|
277
|
+
"videojsOptions": {
|
278
|
+
{% for option in gallery.lightGallery.videojsOptions %}
|
279
|
+
{% if option[0] contains "enabled" %}
|
280
|
+
{% continue %}
|
281
|
+
{% endif %}
|
282
|
+
{{option[0] | json}}: {{option[1] | json}},
|
283
|
+
{% endfor %}
|
273
284
|
}
|
274
285
|
{% endif %}
|
275
286
|
|
@@ -13988,6 +13988,19 @@ textarea.form-control-lg {
|
|
13988
13988
|
# NOTE: This is the (SASS) entry point for all Bootstrap Overloads
|
13989
13989
|
# -----------------------------------------------------------------------------
|
13990
13990
|
*/
|
13991
|
+
/*
|
13992
|
+
# -----------------------------------------------------------------------------
|
13993
|
+
# ~/scss/theme_uno/bootstrap/_root.scss
|
13994
|
+
# Add MD colors
|
13995
|
+
# Product/Info:
|
13996
|
+
# https://jekyll.one
|
13997
|
+
#
|
13998
|
+
# Copyright (C) 2023-2025 Juergen Adams
|
13999
|
+
#
|
14000
|
+
# J1 Template is licensed under the MIT License.
|
14001
|
+
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE
|
14002
|
+
# -----------------------------------------------------------------------------
|
14003
|
+
*/
|
13991
14004
|
:root {
|
13992
14005
|
--md-red: #F44336;
|
13993
14006
|
--md-red-50: #FFEBEE;
|
@@ -16217,6 +16230,22 @@ table.tableblock > .title {
|
|
16217
16230
|
padding-left: 5px !important;
|
16218
16231
|
}
|
16219
16232
|
|
16233
|
+
.table {
|
16234
|
+
--bs-table-bg: var(--md-gray-50);
|
16235
|
+
}
|
16236
|
+
|
16237
|
+
.table th {
|
16238
|
+
background-color: var(--md-gray-300);
|
16239
|
+
}
|
16240
|
+
|
16241
|
+
.table-striped {
|
16242
|
+
--bs-table-striped-bg: var(--md-gray-50);
|
16243
|
+
}
|
16244
|
+
|
16245
|
+
.table-striped > tbody > tr:nth-of-type(even) {
|
16246
|
+
--bs-table-accent-bg: var(--md-gray-200);
|
16247
|
+
}
|
16248
|
+
|
16220
16249
|
/*
|
16221
16250
|
# -----------------------------------------------------------------------------
|
16222
16251
|
# ~/scss/theme_uno/bootstrap/_tooltip.scss
|