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
@@ -1,1002 +0,0 @@
|
|
1
|
-
# ------------------------------------------------------------------------------
|
2
|
-
# ~/_data/modules/gallery_app.yml
|
3
|
-
# Application settings for the J1 Gallery App
|
4
|
-
#
|
5
|
-
# Product/Info:
|
6
|
-
# https://jekyll.one
|
7
|
-
#
|
8
|
-
# Copyright (C) 2023-2025 Juergen Adams
|
9
|
-
#
|
10
|
-
# J1 Template is licensed under the MIT License.
|
11
|
-
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE
|
12
|
-
# ------------------------------------------------------------------------------
|
13
|
-
|
14
|
-
# ------------------------------------------------------------------------------
|
15
|
-
# Description
|
16
|
-
#
|
17
|
-
description:
|
18
|
-
title: J1 Gallery App
|
19
|
-
scope: User App settings
|
20
|
-
location: _data/apps/gallery_app.yml
|
21
|
-
|
22
|
-
# ------------------------------------------------------------------------------
|
23
|
-
# User configuration settings
|
24
|
-
#
|
25
|
-
settings:
|
26
|
-
|
27
|
-
# ----------------------------------------------------------------------------
|
28
|
-
# GENERAL options
|
29
|
-
# ----------------------------------------------------------------------------
|
30
|
-
#
|
31
|
-
enabled: true
|
32
|
-
|
33
|
-
# ----------------------------------------------------------------------------
|
34
|
-
# All galleries available
|
35
|
-
# ----------------------------------------------------------------------------
|
36
|
-
galleries:
|
37
|
-
|
38
|
-
# ==========================================================================
|
39
|
-
# Image Galleries
|
40
|
-
# ==========================================================================
|
41
|
-
|
42
|
-
# --------------------------------------------------------------------------
|
43
|
-
# Old Times
|
44
|
-
#
|
45
|
-
- gallery:
|
46
|
-
enabled: true
|
47
|
-
|
48
|
-
id: jg_old_times
|
49
|
-
type: image
|
50
|
-
image_base_path: /assets/image/module/swiper/old_times
|
51
|
-
|
52
|
-
# ------------------------------------------------------------------------
|
53
|
-
# Justified Gallery settings
|
54
|
-
# ------------------------------------------------------------------------
|
55
|
-
#
|
56
|
-
gallery_options:
|
57
|
-
rowHeight: 250
|
58
|
-
gutters: 3
|
59
|
-
|
60
|
-
# ------------------------------------------------------------------------
|
61
|
-
# Lightbox settings
|
62
|
-
# ------------------------------------------------------------------------
|
63
|
-
#
|
64
|
-
lightbox:
|
65
|
-
enabled: true
|
66
|
-
type: lg # lb | lg
|
67
|
-
|
68
|
-
lightGallery:
|
69
|
-
plugins: lgFullscreen, lgRotate, lgThumbnail
|
70
|
-
|
71
|
-
options:
|
72
|
-
licenseKey: 0000-0000-000-0000
|
73
|
-
download: false
|
74
|
-
alignThumbnails: left
|
75
|
-
|
76
|
-
# ------------------------------------------------------------------------
|
77
|
-
# Images
|
78
|
-
#
|
79
|
-
images:
|
80
|
-
|
81
|
-
- image: # image
|
82
|
-
file: image_01.jpg
|
83
|
-
caption_text: GrandPa · 80th Birthday
|
84
|
-
description: >
|
85
|
-
<h5>GrandPa</h5>
|
86
|
-
<h6>80th Birthday</h6>
|
87
|
-
|
88
|
-
- image: # image
|
89
|
-
file: image_02.jpg
|
90
|
-
caption_text: GrandPa · 80th Birthday
|
91
|
-
description: >
|
92
|
-
<h5>GrandPa</h5>
|
93
|
-
<h6>80th Birthday</h6>
|
94
|
-
|
95
|
-
- image: # image
|
96
|
-
file: image_03.jpg
|
97
|
-
caption_text: GrandPa · Annual journey
|
98
|
-
description: >
|
99
|
-
<h5>GrandPa</h5>
|
100
|
-
<h6>Annual journey</h6>
|
101
|
-
|
102
|
-
- image: # image
|
103
|
-
file: image_04.jpg
|
104
|
-
caption_text: GrandPa · Annual journey
|
105
|
-
description: >
|
106
|
-
<h5>GrandPa</h5>
|
107
|
-
<h6>Annual journey</h6>
|
108
|
-
|
109
|
-
# --------------------------------------------------------------------------
|
110
|
-
# Gallery Mega Cities
|
111
|
-
#
|
112
|
-
- gallery:
|
113
|
-
enabled: true
|
114
|
-
|
115
|
-
id: jg_mega_cities
|
116
|
-
type: image
|
117
|
-
image_base_path: /assets/image/module/swiper/mega_cities
|
118
|
-
|
119
|
-
# ------------------------------------------------------------------------
|
120
|
-
# Justified Gallery settings
|
121
|
-
# ------------------------------------------------------------------------
|
122
|
-
#
|
123
|
-
gallery_options:
|
124
|
-
rowHeight: 150
|
125
|
-
gutters: 1
|
126
|
-
|
127
|
-
# ------------------------------------------------------------------------
|
128
|
-
# Lightbox settings
|
129
|
-
# ------------------------------------------------------------------------
|
130
|
-
#
|
131
|
-
lightbox:
|
132
|
-
enabled: true
|
133
|
-
type: lg
|
134
|
-
|
135
|
-
lightGallery:
|
136
|
-
plugins: lgFullscreen, lgRotate, lgThumbnail
|
137
|
-
|
138
|
-
options:
|
139
|
-
licenseKey: 0000-0000-000-0000
|
140
|
-
download: false
|
141
|
-
alignThumbnails: left
|
142
|
-
addClass: lg-uno-thumbnails # customized thumbnails
|
143
|
-
appendThumbnailsTo: .lg-outer # required for customized thumbnails
|
144
|
-
animateThumb: false # required for customized thumbnails
|
145
|
-
allowMediaOverlap: true # required for customized thumbnails
|
146
|
-
|
147
|
-
# ------------------------------------------------------------------------
|
148
|
-
# CSS filter options
|
149
|
-
#
|
150
|
-
filters:
|
151
|
-
enabled: false
|
152
|
-
grayscale: 0
|
153
|
-
contrast: 0.8
|
154
|
-
brightness: 0.4
|
155
|
-
|
156
|
-
# ------------------------------------------------------------------------
|
157
|
-
# Images
|
158
|
-
#
|
159
|
-
images:
|
160
|
-
|
161
|
-
- image: # image 1
|
162
|
-
file: banter-snaps_b.jpg
|
163
|
-
caption_text: Japan · City of Osaka
|
164
|
-
description: >
|
165
|
-
<h5>Japan</h5>
|
166
|
-
<h6>City of Osaka</h6>
|
167
|
-
|
168
|
-
- image: # image 2
|
169
|
-
file: denys-nevozhai-1_b.jpg
|
170
|
-
caption_text: China · Man posing at the rooftop of Jin Mao Tower Shanghai
|
171
|
-
description: >
|
172
|
-
<h5>China</h5>
|
173
|
-
<h6>Man posing at the rooftop of Jin Mao Tower Shanghai</h6>
|
174
|
-
|
175
|
-
- image: # image 3
|
176
|
-
file: gints-gailis_b.jpg
|
177
|
-
caption_text: Indonesia · Shangri-La Hotel Jakarta
|
178
|
-
description: >
|
179
|
-
<h5>Indonesia</h5>
|
180
|
-
<h6>Shangri-La Hotel Jakarta</h6>
|
181
|
-
|
182
|
-
- image: # image 4
|
183
|
-
file: steven-diaz_b.jpg
|
184
|
-
caption_text: Indonesia · Shangri-La Hotel Jakarta
|
185
|
-
description: >
|
186
|
-
<h5>Japan</h5>
|
187
|
-
<h6>Tokyo seen from World Trade Center Observation Deck</h6>
|
188
|
-
|
189
|
-
- image: # image 5
|
190
|
-
file: denys-nevozhai-2_b.jpg
|
191
|
-
caption_text: China · Young couple over Shenzhen
|
192
|
-
description: >
|
193
|
-
<h5>China</h5>
|
194
|
-
<h6>Young couple over Shenzhen</h6>
|
195
|
-
|
196
|
-
- image: # image 6
|
197
|
-
file: johan-mouchet_b.jpg
|
198
|
-
caption_text: Australia · The Queen Bee at the Eureka Tower of Melbourne
|
199
|
-
description: >
|
200
|
-
<h5>Australia</h5>
|
201
|
-
<h6>The Queen Bee at the Eureka Tower of Melbourne</h6>
|
202
|
-
|
203
|
-
- image: # image 7
|
204
|
-
file: thomas-tucker_b.jpg
|
205
|
-
caption_text: Taiwan · Sunset over City of Taipei
|
206
|
-
description: >
|
207
|
-
<h5>Taiwan</h5>
|
208
|
-
<h6>Sunset over City of Taipei</h6>
|
209
|
-
|
210
|
-
- image: # image 8
|
211
|
-
file: emmad-mazhari_b.jpg
|
212
|
-
caption_text: United States · City of Chicago
|
213
|
-
description: >
|
214
|
-
<h5>United States</h5>
|
215
|
-
<h6>City of Chicago</h6>
|
216
|
-
|
217
|
-
- image: # image 9
|
218
|
-
file: federico-rizzarelli_b.jpg
|
219
|
-
caption_text: China · City of Shanghai
|
220
|
-
description: >
|
221
|
-
<h5>China</h5>
|
222
|
-
<h6>City of Shanghai</h6>
|
223
|
-
|
224
|
-
- image: # image 10
|
225
|
-
file: andreas-brucker_b.jpg
|
226
|
-
caption_text: Thailand · City of Bangkok
|
227
|
-
description: >
|
228
|
-
<h5>Thailand</h5>
|
229
|
-
<h6>City of Bangkok</h6>
|
230
|
-
|
231
|
-
- image: # image 11
|
232
|
-
file: luca-bravo_b.jpg
|
233
|
-
caption_text: Taiwan · Sunset over City of Taipei
|
234
|
-
description: >
|
235
|
-
<h5>Taiwan</h5>
|
236
|
-
<h6>Sunset over City of Taipei</h6>
|
237
|
-
|
238
|
-
- image: # image 12
|
239
|
-
file: ethan-brooke_b.jpg
|
240
|
-
caption_text: South Korea · Lotte World Tower Seoul
|
241
|
-
description: >
|
242
|
-
<h5>South Korea</h5>
|
243
|
-
<h6>Lotte World Tower Seoul</h6>
|
244
|
-
|
245
|
-
|
246
|
-
# ==========================================================================
|
247
|
-
# Video Galleries
|
248
|
-
# ==========================================================================
|
249
|
-
|
250
|
-
# --------------------------------------------------------------------------
|
251
|
-
# HTML5 VIDEO
|
252
|
-
#
|
253
|
-
- gallery:
|
254
|
-
enabled: true
|
255
|
-
|
256
|
-
id: jg_video_html5
|
257
|
-
type: video
|
258
|
-
video: html5
|
259
|
-
video_base_path: /assets/video/html5
|
260
|
-
image_base_path: /assets/video/poster/html5
|
261
|
-
thumb_base_path: /assets/video/poster/html5
|
262
|
-
|
263
|
-
# ------------------------------------------------------------------------
|
264
|
-
# Justified Gallery settings
|
265
|
-
# ------------------------------------------------------------------------
|
266
|
-
#
|
267
|
-
gallery_options:
|
268
|
-
rowHeight: 250
|
269
|
-
gutters: 3
|
270
|
-
|
271
|
-
# ------------------------------------------------------------------------
|
272
|
-
# Lightbox|lightGallery settings
|
273
|
-
# ------------------------------------------------------------------------
|
274
|
-
#
|
275
|
-
lightbox:
|
276
|
-
enabled: true
|
277
|
-
type: lg
|
278
|
-
|
279
|
-
lightGallery:
|
280
|
-
plugins: lgThumbnail, lgVideo
|
281
|
-
|
282
|
-
options:
|
283
|
-
licenseKey: 0000-0000-000-0000
|
284
|
-
download: false
|
285
|
-
alignThumbnails: left
|
286
|
-
animateThumb: true
|
287
|
-
autoplayFirstVideo: true
|
288
|
-
videojs: true
|
289
|
-
videojsTheme: vjs-theme-uno
|
290
|
-
|
291
|
-
videojsOptions:
|
292
|
-
enabled: true
|
293
|
-
|
294
|
-
muted: false
|
295
|
-
preload: true
|
296
|
-
# videoStart: ["00:00:30", "00:01:30"] # start time (hh:mm:ss) for [video1, video2]
|
297
|
-
|
298
|
-
controls: true
|
299
|
-
controlBar:
|
300
|
-
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
301
|
-
remainingTimeDisplay: true
|
302
|
-
pictureInPictureToggle: false
|
303
|
-
|
304
|
-
volumePanel:
|
305
|
-
inline: false
|
306
|
-
|
307
|
-
hotKeysPlugin:
|
308
|
-
enabled: true
|
309
|
-
options:
|
310
|
-
volumeStep: 0.2
|
311
|
-
|
312
|
-
skipButtonsPlugin:
|
313
|
-
enabled: true
|
314
|
-
options:
|
315
|
-
forward: 5
|
316
|
-
backward: 5
|
317
|
-
backwardIndex: 0
|
318
|
-
forwardIndex: 1
|
319
|
-
|
320
|
-
zoomPlugin:
|
321
|
-
enabled: true
|
322
|
-
options:
|
323
|
-
moveX: 0
|
324
|
-
moveY: 0
|
325
|
-
rotate: 0
|
326
|
-
zoom: 1
|
327
|
-
|
328
|
-
# ------------------------------------------------------------------------
|
329
|
-
# CSS filter options
|
330
|
-
#
|
331
|
-
filters:
|
332
|
-
enabled: false
|
333
|
-
grayscale: 0
|
334
|
-
contrast: 1
|
335
|
-
brightness: 1
|
336
|
-
|
337
|
-
# ------------------------------------------------------------------------
|
338
|
-
# Video settings
|
339
|
-
# ------------------------------------------------------------------------
|
340
|
-
#
|
341
|
-
videos:
|
342
|
-
|
343
|
-
- video: # video 1
|
344
|
-
enabled: true
|
345
|
-
|
346
|
-
name: Peck Pocketed
|
347
|
-
type: html5
|
348
|
-
size: 1280-720
|
349
|
-
source: peck_pocketed.mp4
|
350
|
-
poster_image: peck_pocketed.jpg
|
351
|
-
pinterest_prefix: Pin video
|
352
|
-
tweet_prefix: Try video
|
353
|
-
caption_text: Peck Pocketed · Student Academy Award winning Cartoon Clip
|
354
|
-
description: >
|
355
|
-
<h5>Peck Pocketed by Kevin Herron | Disney Favorite</h5>
|
356
|
-
<h6>Student Academy Award winning Cartoon Clip</h6>
|
357
|
-
<br>
|
358
|
-
tracks:
|
359
|
-
- track:
|
360
|
-
default: true # Indicates that the track is to be enabled if the user's preferences do not indicate that another track would be more appropriate
|
361
|
-
kind: captions
|
362
|
-
srclang: en # Code for the language of the text track
|
363
|
-
label: English # Descriptive text for the track that will used in the user interface (player)
|
364
|
-
src: /assets/video/tracks/html5/peck_pocketed/captions/video.vtt
|
365
|
-
|
366
|
-
- track:
|
367
|
-
default: true # Indicates that the track is to be enabled if the user's preferences do not indicate that another track would be more appropriate
|
368
|
-
kind: chapters
|
369
|
-
srclang: en # Code for the language of the text track
|
370
|
-
label: Chapters # Descriptive text for the track that will used in the user interface (player)
|
371
|
-
src: /assets/video/tracks/html5/peck_pocketed/chapters/video.vtt
|
372
|
-
|
373
|
-
- video: # video 2
|
374
|
-
enabled: true
|
375
|
-
|
376
|
-
name: Rollin Wild
|
377
|
-
type: html5
|
378
|
-
size: 1280-720
|
379
|
-
source: rolling_wild.mp4
|
380
|
-
poster_image: rolling_wild.jpg
|
381
|
-
pinterest_prefix: Pin video
|
382
|
-
tweet_prefix: Try video
|
383
|
-
caption_text: Rollin` Wild · Short Funny animated video clip created at the Film Academy
|
384
|
-
description: >
|
385
|
-
<h5>Rollin` Wild</h5>
|
386
|
-
<h6>Short Funny Animated Clip created at the Film Academy</h6>
|
387
|
-
<br>
|
388
|
-
|
389
|
-
# --------------------------------------------------------------------------
|
390
|
-
# Online VIDEO Tylor Swift (YouTube)
|
391
|
-
# See: https://www.youtube.com/playlist?list=PLINj2JJM1jxOxE-4mVaEJCEzO1CiR0Cwm
|
392
|
-
#
|
393
|
-
- gallery:
|
394
|
-
enabled: true
|
395
|
-
|
396
|
-
id: jg_video_online_taylor_swift
|
397
|
-
type: video
|
398
|
-
video: youtube
|
399
|
-
image_base_path: //img.youtube.com/vi
|
400
|
-
|
401
|
-
# ------------------------------------------------------------------------
|
402
|
-
# Justified Gallery settings
|
403
|
-
# ------------------------------------------------------------------------
|
404
|
-
#
|
405
|
-
gallery_options:
|
406
|
-
rowHeight: 250
|
407
|
-
gutters: 3
|
408
|
-
|
409
|
-
# ------------------------------------------------------------------------
|
410
|
-
# Lightbox|lightGallery settings
|
411
|
-
# ------------------------------------------------------------------------
|
412
|
-
#
|
413
|
-
lightbox:
|
414
|
-
enabled: true
|
415
|
-
type: lg
|
416
|
-
|
417
|
-
lightGallery:
|
418
|
-
plugins: lgThumbnail, lgVideo
|
419
|
-
|
420
|
-
options:
|
421
|
-
licenseKey: 0000-0000-000-0000
|
422
|
-
download: false
|
423
|
-
alignThumbnails: left
|
424
|
-
animateThumb: true
|
425
|
-
autoplayFirstVideo: true
|
426
|
-
videojs: false
|
427
|
-
|
428
|
-
videojsOptions:
|
429
|
-
enabled: false
|
430
|
-
|
431
|
-
# See: https://stackoverflow.com/questions/40685142/youtube-autoplay-does-not-work-with-iframe
|
432
|
-
playerParams:
|
433
|
-
enabled: true
|
434
|
-
start: ["00:00:00", "00:00:00"] # start time video1, vido2
|
435
|
-
autoplay: 1 # autoplay = 1 only available for YouTube when muted.
|
436
|
-
# controls: 1 # default = 0
|
437
|
-
# enablejsapi: 1 # default = 1
|
438
|
-
# hl: en # default = en
|
439
|
-
# loop: 0 # default = 0
|
440
|
-
mute: 0 # default = 1
|
441
|
-
# playsinline: 1 # for mobile|iOS only
|
442
|
-
# wmode: opaque # default = opaque
|
443
|
-
|
444
|
-
# ------------------------------------------------------------------------
|
445
|
-
# CSS filter options
|
446
|
-
#
|
447
|
-
filters:
|
448
|
-
enabled: false
|
449
|
-
grayscale: 0
|
450
|
-
contrast: 1
|
451
|
-
brightness: 1
|
452
|
-
|
453
|
-
# ------------------------------------------------------------------------
|
454
|
-
# Video settings
|
455
|
-
# ------------------------------------------------------------------------
|
456
|
-
#
|
457
|
-
videos:
|
458
|
-
|
459
|
-
- video: # video 1
|
460
|
-
enabled: true
|
461
|
-
|
462
|
-
name: Tylor Swift
|
463
|
-
type: youtube
|
464
|
-
size: 1280-720
|
465
|
-
source: //youtube.com/watch?v=q3zqJs7JUCQ
|
466
|
-
poster_image: q3zqJs7JUCQ/maxresdefault.jpg
|
467
|
-
pinterest_prefix: Pin video
|
468
|
-
tweet_prefix: Try video
|
469
|
-
caption_text: Fortnight (feat. Post Malone) · Official Music Video
|
470
|
-
description: >
|
471
|
-
<h5>Tylor Swift</h5>
|
472
|
-
<h6>Fortnight (feat. Post Malone) · Official Music Video</h6>
|
473
|
-
<br>
|
474
|
-
|
475
|
-
- video: # video 2
|
476
|
-
enabled: true
|
477
|
-
|
478
|
-
name: Tylor Swift
|
479
|
-
type: youtube
|
480
|
-
size: 1280-720
|
481
|
-
source: //youtube.com/watch?v=0GQ_QeZxdzo
|
482
|
-
poster_image: 0GQ_QeZxdzo/maxresdefault.jpg
|
483
|
-
pinterest_prefix: Pin video
|
484
|
-
tweet_prefix: Try video
|
485
|
-
caption_text: Fortnight (feat. Post Malone) · Behind the Scenes
|
486
|
-
description: >
|
487
|
-
<h5>Tylor Swift</h5>
|
488
|
-
<h6>Fortnight (feat. Post Malone) · Behind the Scenes</h6>
|
489
|
-
<br>
|
490
|
-
|
491
|
-
# - video: # video 2
|
492
|
-
# enabled: true
|
493
|
-
#
|
494
|
-
# name: Tylor Swift
|
495
|
-
# type: youtube
|
496
|
-
# size: 1280-720
|
497
|
-
# # source: //youtube.com/watch?v=i8_w_m6HLJ0&list=PLINj2JJM1jxOxE-4mVaEJCEzO1CiR0Cwm
|
498
|
-
# source: //youtube.com/watch?v=i8_w_m6HLJ0
|
499
|
-
# pinterest_prefix: Pin video
|
500
|
-
# tweet_prefix: Try video
|
501
|
-
# description: >
|
502
|
-
# <h5>Tylor Swift</h5>
|
503
|
-
# <h6>I Can Do With a Broken Heart</h6>
|
504
|
-
# <br>
|
505
|
-
# caption:
|
506
|
-
# text: I Can Do With a Broken Heart · Tylor Swift
|
507
|
-
# poster:
|
508
|
-
# source: i8_w_m6HLJ0/maxresdefault.jpg
|
509
|
-
# # source: i8_w_m6HLJ0/sddefault.jpg
|
510
|
-
#
|
511
|
-
# # playerParams:
|
512
|
-
# # start: 50 # seconds to start
|
513
|
-
#
|
514
|
-
#
|
515
|
-
#
|
516
|
-
# # playerParams:
|
517
|
-
# # start: 50 # seconds to start
|
518
|
-
#
|
519
|
-
# - video: # video 3
|
520
|
-
# enabled: true
|
521
|
-
#
|
522
|
-
# name: Tylor Swift
|
523
|
-
# type: youtube
|
524
|
-
# size: 1280-720
|
525
|
-
# source: //youtube.com/watch?v=RQMz4JDbtmI
|
526
|
-
# pinterest_prefix: Pin video
|
527
|
-
# tweet_prefix: Try video
|
528
|
-
# description: >
|
529
|
-
# <h5>Tylor Swift</h5>
|
530
|
-
# <h6>The Tortured Poets Department (Official Lyric Video)</h6>
|
531
|
-
# <br>
|
532
|
-
# caption:
|
533
|
-
# text: The Tortured Poets Department (Official Lyric Video) · Tylor Swift
|
534
|
-
# poster:
|
535
|
-
# source: RQMz4JDbtmI/maxresdefault.jpg
|
536
|
-
#
|
537
|
-
# - video: # video 3
|
538
|
-
# enabled: true
|
539
|
-
#
|
540
|
-
# name: Tylor Swift
|
541
|
-
# type: youtube
|
542
|
-
# size: 1280-720
|
543
|
-
# source: //youtube.com/watch?v=wRKXAAV6jh4
|
544
|
-
# pinterest_prefix: Pin video
|
545
|
-
# tweet_prefix: Try video
|
546
|
-
# description: >
|
547
|
-
# <h5>Tylor Swift</h5>
|
548
|
-
# <h6>My Boy Only Breaks His Favorite Toys (Official Lyric Video)</h6>
|
549
|
-
# <br>
|
550
|
-
# caption:
|
551
|
-
# text: My Boy Only Breaks His Favorite Toys (Official Lyric Video) · Tylor Swift
|
552
|
-
# poster:
|
553
|
-
# source: wRKXAAV6jh4/maxresdefault.jpg
|
554
|
-
|
555
|
-
|
556
|
-
# --------------------------------------------------------------------------
|
557
|
-
# Online VIDEO Carpool Karaoke (YouTube)
|
558
|
-
#
|
559
|
-
- gallery:
|
560
|
-
enabled: true
|
561
|
-
|
562
|
-
id: jg_video_online_youtube_james_and_adele
|
563
|
-
type: video
|
564
|
-
video: youtube
|
565
|
-
image_base_path: //img.youtube.com/vi
|
566
|
-
|
567
|
-
# ------------------------------------------------------------------------
|
568
|
-
# Justified Gallery settings
|
569
|
-
# ------------------------------------------------------------------------
|
570
|
-
#
|
571
|
-
gallery_options:
|
572
|
-
rowHeight: 250
|
573
|
-
gutters: 3
|
574
|
-
|
575
|
-
# ------------------------------------------------------------------------
|
576
|
-
# Lightbox|lightGallery settings
|
577
|
-
# ------------------------------------------------------------------------
|
578
|
-
#
|
579
|
-
lightbox:
|
580
|
-
enabled: true
|
581
|
-
type: lg
|
582
|
-
|
583
|
-
lightGallery:
|
584
|
-
plugins: lgThumbnail, lgVideo
|
585
|
-
|
586
|
-
options:
|
587
|
-
licenseKey: 0000-0000-000-0000
|
588
|
-
download: false
|
589
|
-
alignThumbnails: left
|
590
|
-
animateThumb: true
|
591
|
-
autoplayFirstVideo: true
|
592
|
-
videojs: false
|
593
|
-
|
594
|
-
videojsOptions:
|
595
|
-
enabled: false
|
596
|
-
|
597
|
-
# See: https://stackoverflow.com/questions/40685142/youtube-autoplay-does-not-work-with-iframe
|
598
|
-
playerParams:
|
599
|
-
enabled: true
|
600
|
-
start: ["00:00:50", "00:00:50"] # start time video1, vido2
|
601
|
-
autoplay: 1 # autoplay = 1 only available for YouTube when muted.
|
602
|
-
# controls: 1 # default = 0
|
603
|
-
# enablejsapi: 1 # default = 1
|
604
|
-
# hl: en # default = en
|
605
|
-
# loop: 0 # default = 0
|
606
|
-
mute: 0 # default = 1
|
607
|
-
# playsinline: 1 # for mobile|iOS only
|
608
|
-
# wmode: opaque # default = opaque
|
609
|
-
|
610
|
-
# ------------------------------------------------------------------------
|
611
|
-
# CSS filter options
|
612
|
-
#
|
613
|
-
filters:
|
614
|
-
enabled: false
|
615
|
-
grayscale: 0
|
616
|
-
contrast: 1
|
617
|
-
brightness: 1
|
618
|
-
|
619
|
-
# ------------------------------------------------------------------------
|
620
|
-
# Video settings
|
621
|
-
# ------------------------------------------------------------------------
|
622
|
-
#
|
623
|
-
videos:
|
624
|
-
|
625
|
-
- video: # video 1
|
626
|
-
enabled: true
|
627
|
-
|
628
|
-
name: Carpool Karaoke James and Adele
|
629
|
-
type: youtube
|
630
|
-
size: 1280-720
|
631
|
-
source: //youtube.com/watch?v=Nck6BZga7TQ
|
632
|
-
poster_image: Nck6BZga7TQ/mqdefault.jpg
|
633
|
-
pinterest_prefix: Pin video
|
634
|
-
tweet_prefix: Try video
|
635
|
-
caption_text: Carpool Karaoke 2015 · James and Adele
|
636
|
-
description: >
|
637
|
-
<h5>Carpool Karaoke 2015</h5>
|
638
|
-
<h6>
|
639
|
-
December 2015 - James is on holidays is about the holidays in
|
640
|
-
London and gets Adele off for a ride through the city. On the way
|
641
|
-
they sing some of their biggest hits.
|
642
|
-
</h6>
|
643
|
-
<br>
|
644
|
-
playerParams:
|
645
|
-
start: 50 # seconds to start
|
646
|
-
|
647
|
-
- video: # video 2
|
648
|
-
enabled: true
|
649
|
-
|
650
|
-
name: Last Carpool Karaoke
|
651
|
-
type: youtube
|
652
|
-
size: 1280-720
|
653
|
-
source: //youtube.com/watch?v=nV8UZJNBY6Y
|
654
|
-
poster_image: nV8UZJNBY6Y/mqdefault.jpg
|
655
|
-
pinterest_prefix: Pin video
|
656
|
-
tweet_prefix: Try video
|
657
|
-
caption_text: Carpool Karaoke 2023 · Last Carpool Karaoke
|
658
|
-
description: >
|
659
|
-
<h5>Carpool Karaoke 2023</h5>
|
660
|
-
<h6>
|
661
|
-
April 2023 - Adele wakeup James at home for the last Late Night Show,
|
662
|
-
for the last Carpool Caraoke ever.
|
663
|
-
</h6>
|
664
|
-
<br>
|
665
|
-
playerParams:
|
666
|
-
start: 50 # seconds to start
|
667
|
-
|
668
|
-
# --------------------------------------------------------------------------
|
669
|
-
# Online VIDEO (Vimeo)
|
670
|
-
#
|
671
|
-
- gallery:
|
672
|
-
enabled: true
|
673
|
-
|
674
|
-
id: jg_video_online_vimeo
|
675
|
-
type: video
|
676
|
-
video: vimeo
|
677
|
-
image_base_path: /assets/video/poster/vimeo
|
678
|
-
|
679
|
-
# ------------------------------------------------------------------------
|
680
|
-
# Justified Gallery settings
|
681
|
-
# ------------------------------------------------------------------------
|
682
|
-
#
|
683
|
-
gallery_options:
|
684
|
-
rowHeight: 250
|
685
|
-
gutters: 3
|
686
|
-
|
687
|
-
# ------------------------------------------------------------------------
|
688
|
-
# Lightbox|lightGallery settings
|
689
|
-
# ------------------------------------------------------------------------
|
690
|
-
#
|
691
|
-
lightbox:
|
692
|
-
enabled: true
|
693
|
-
type: lg
|
694
|
-
|
695
|
-
lightGallery:
|
696
|
-
plugins: lgThumbnail, lgVideo
|
697
|
-
|
698
|
-
options:
|
699
|
-
licenseKey: 0000-0000-000-0000
|
700
|
-
download: false
|
701
|
-
alignThumbnails: left
|
702
|
-
animateThumb: true
|
703
|
-
autoplayFirstVideo: true
|
704
|
-
videojs: false
|
705
|
-
|
706
|
-
videojsOptions:
|
707
|
-
enabled: false
|
708
|
-
|
709
|
-
playerParams:
|
710
|
-
enabled: false
|
711
|
-
autoplay: 1
|
712
|
-
byline: 0
|
713
|
-
portrait: 0
|
714
|
-
color: var(--md-gray-100)
|
715
|
-
muted: 0
|
716
|
-
|
717
|
-
# ------------------------------------------------------------------------
|
718
|
-
# CSS filter options
|
719
|
-
#
|
720
|
-
filters:
|
721
|
-
enabled: false
|
722
|
-
grayscale: 0
|
723
|
-
contrast: 1
|
724
|
-
brightness: 1
|
725
|
-
|
726
|
-
# ------------------------------------------------------------------------
|
727
|
-
# Video settings
|
728
|
-
# ------------------------------------------------------------------------
|
729
|
-
#
|
730
|
-
videos:
|
731
|
-
|
732
|
-
- video: # video 1
|
733
|
-
enabled: true
|
734
|
-
|
735
|
-
name: Forever 21
|
736
|
-
type: vimeo
|
737
|
-
size: 1280-720
|
738
|
-
source: //vimeo.com/179528528
|
739
|
-
poster_image: kick_it_old_school.jpg
|
740
|
-
pinterest_prefix: Pin video
|
741
|
-
tweet_prefix: Try video
|
742
|
-
caption_text: Forever 21 · Kick It Old School
|
743
|
-
description: >
|
744
|
-
<h5>Forever 21</h5>
|
745
|
-
<h6>Kick It Old School</h6>
|
746
|
-
<br>
|
747
|
-
playerParams:
|
748
|
-
start: 50 # seconds to start
|
749
|
-
|
750
|
-
- video: # video 2
|
751
|
-
enabled: true
|
752
|
-
|
753
|
-
name: Forever 21
|
754
|
-
type: vimeo
|
755
|
-
size: 1280-720
|
756
|
-
source: //vimeo.com/202117650
|
757
|
-
poster_image: stay_colorful.jpg
|
758
|
-
pinterest_prefix: Pin video
|
759
|
-
tweet_prefix: Try video
|
760
|
-
caption_text: Forever 21 · Stay Colorful, Babe!
|
761
|
-
description: >
|
762
|
-
<h5>Forever 21</h5>
|
763
|
-
<h6>Stay Colorful, Babe!</h6>
|
764
|
-
<br>
|
765
|
-
|
766
|
-
# --------------------------------------------------------------------------
|
767
|
-
# Online VIDEO (Dailymotion)
|
768
|
-
#
|
769
|
-
- gallery:
|
770
|
-
enabled: true
|
771
|
-
|
772
|
-
id: jg_video_online_dailymotion
|
773
|
-
type: video
|
774
|
-
video: dailymotion
|
775
|
-
image_base_path: /assets/video/poster/dailymotion
|
776
|
-
|
777
|
-
# ------------------------------------------------------------------------
|
778
|
-
# Justified Gallery settings
|
779
|
-
# ------------------------------------------------------------------------
|
780
|
-
#
|
781
|
-
gallery_options:
|
782
|
-
rowHeight: 250
|
783
|
-
gutters: 3
|
784
|
-
|
785
|
-
# ------------------------------------------------------------------------
|
786
|
-
# Lightbox|lightGallery settings
|
787
|
-
# ------------------------------------------------------------------------
|
788
|
-
#
|
789
|
-
lightbox:
|
790
|
-
enabled: true
|
791
|
-
type: lg
|
792
|
-
|
793
|
-
lightGallery:
|
794
|
-
plugins: lgThumbnail, lgVideo
|
795
|
-
|
796
|
-
options:
|
797
|
-
licenseKey: 0000-0000-000-0000
|
798
|
-
download: false
|
799
|
-
alignThumbnails: left
|
800
|
-
animateThumb: true
|
801
|
-
autoplayFirstVideo: true
|
802
|
-
videojs: false
|
803
|
-
|
804
|
-
videojsOptions:
|
805
|
-
enabled: false
|
806
|
-
|
807
|
-
playerParams:
|
808
|
-
enabled: false
|
809
|
-
|
810
|
-
# ------------------------------------------------------------------------
|
811
|
-
# CSS filter options
|
812
|
-
#
|
813
|
-
filters:
|
814
|
-
enabled: false
|
815
|
-
grayscale: 0
|
816
|
-
contrast: 1
|
817
|
-
brightness: 1
|
818
|
-
|
819
|
-
# ------------------------------------------------------------------------
|
820
|
-
# Video settings
|
821
|
-
# ------------------------------------------------------------------------
|
822
|
-
#
|
823
|
-
videos:
|
824
|
-
|
825
|
-
- video: # video 1
|
826
|
-
enabled: true
|
827
|
-
|
828
|
-
name: SELF Channel
|
829
|
-
type: dailymotion
|
830
|
-
size: 1280-720
|
831
|
-
source: //dai.ly/x887s09
|
832
|
-
poster_image: meditation.jpg
|
833
|
-
pinterest_prefix: Pin video
|
834
|
-
tweet_prefix: Try video
|
835
|
-
caption_text: SELF Channel · Morning Energy
|
836
|
-
description: >
|
837
|
-
<h5>SELF Channel</h5>
|
838
|
-
<h6>Guided Meditation: Morning Energy</h6>
|
839
|
-
<br>
|
840
|
-
|
841
|
-
- video: # video 2
|
842
|
-
enabled: true
|
843
|
-
|
844
|
-
name: SELF Channel
|
845
|
-
type: dailymotion
|
846
|
-
size: 1280-720
|
847
|
-
source: //dai.ly/x87ycik
|
848
|
-
poster_image: pilates.jpg
|
849
|
-
pinterest_prefix: Pin video
|
850
|
-
tweet_prefix: Try video
|
851
|
-
caption_text: SELF Channel · Pilates Core Workout
|
852
|
-
description: >
|
853
|
-
<h5>SELF Channel</h5>
|
854
|
-
<h6>Beginner Mat Pilates: Core Workout</h6>
|
855
|
-
<br>
|
856
|
-
|
857
|
-
# --------------------------------------------------------------------------
|
858
|
-
# HTML5 VIDEO (over VodeoJS)
|
859
|
-
#
|
860
|
-
- gallery:
|
861
|
-
enabled: true
|
862
|
-
|
863
|
-
id: jg_video_html5_videojs
|
864
|
-
type: video
|
865
|
-
video: html5
|
866
|
-
video_base_path: /assets/video/html5
|
867
|
-
image_base_path: /assets/video/poster/html5
|
868
|
-
thumb_base_path: /assets/video/poster/html5
|
869
|
-
|
870
|
-
# ------------------------------------------------------------------------
|
871
|
-
# Justified Gallery settings
|
872
|
-
# ------------------------------------------------------------------------
|
873
|
-
#
|
874
|
-
gallery_options:
|
875
|
-
rowHeight: 250
|
876
|
-
gutters: 3
|
877
|
-
|
878
|
-
# ------------------------------------------------------------------------
|
879
|
-
# Lightbox|lightGallery settings
|
880
|
-
# ------------------------------------------------------------------------
|
881
|
-
#
|
882
|
-
lightbox:
|
883
|
-
enabled: true
|
884
|
-
type: lg
|
885
|
-
|
886
|
-
lightGallery:
|
887
|
-
plugins: lgThumbnail, lgVideo
|
888
|
-
|
889
|
-
options:
|
890
|
-
licenseKey: 0000-0000-000-0000
|
891
|
-
download: false
|
892
|
-
alignThumbnails: left
|
893
|
-
animateThumb: true
|
894
|
-
autoplayFirstVideo: true
|
895
|
-
videojs: true
|
896
|
-
videojsTheme: vjs-theme-uno
|
897
|
-
|
898
|
-
videojsOptions:
|
899
|
-
enabled: true
|
900
|
-
|
901
|
-
muted: false
|
902
|
-
preload: true
|
903
|
-
# videoStart: ["00:00:30", "00:01:30"] # start time (hh:mm:ss) for [video1, video2]
|
904
|
-
|
905
|
-
controls: true
|
906
|
-
controlBar:
|
907
|
-
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
908
|
-
remainingTimeDisplay: true
|
909
|
-
pictureInPictureToggle: false
|
910
|
-
|
911
|
-
volumePanel:
|
912
|
-
inline: false
|
913
|
-
|
914
|
-
# hotKeysPlugin:
|
915
|
-
# enabled: true
|
916
|
-
# options:
|
917
|
-
# volumeStep: 0.2
|
918
|
-
#
|
919
|
-
# skipButtonsPlugin:
|
920
|
-
# enabled: true
|
921
|
-
# options:
|
922
|
-
# forward: 5
|
923
|
-
# backward: 5
|
924
|
-
# backwardIndex: 0
|
925
|
-
# forwardIndex: 1
|
926
|
-
#
|
927
|
-
# zoomPlugin:
|
928
|
-
# enabled: true
|
929
|
-
# options:
|
930
|
-
# moveX: 0
|
931
|
-
# moveY: 0
|
932
|
-
# rotate: 0
|
933
|
-
# zoom: 1
|
934
|
-
|
935
|
-
# ------------------------------------------------------------------------
|
936
|
-
# CSS filter options
|
937
|
-
#
|
938
|
-
filters:
|
939
|
-
enabled: false
|
940
|
-
grayscale: 0
|
941
|
-
contrast: 1
|
942
|
-
brightness: 1
|
943
|
-
|
944
|
-
# ------------------------------------------------------------------------
|
945
|
-
# Video settings
|
946
|
-
# ------------------------------------------------------------------------
|
947
|
-
#
|
948
|
-
videos:
|
949
|
-
|
950
|
-
- video: # video 1
|
951
|
-
enabled: true
|
952
|
-
|
953
|
-
name: Peck Pocketed
|
954
|
-
type: html5
|
955
|
-
size: 1280-720
|
956
|
-
source: peck_pocketed.mp4
|
957
|
-
poster_image: peck_pocketed.jpg
|
958
|
-
pinterest_prefix: Pin video
|
959
|
-
tweet_prefix: Try video
|
960
|
-
caption_text: Peck Pocketed · Student Academy Award winning Cartoon Clip
|
961
|
-
description: >
|
962
|
-
<h5>Peck Pocketed by Kevin Herron | Disney Favorite</h5>
|
963
|
-
<h6>Student Academy Award winning Cartoon Clip</h6>
|
964
|
-
|
965
|
-
# - video: # video 2
|
966
|
-
# enabled: true
|
967
|
-
#
|
968
|
-
# name: Rollin Wild
|
969
|
-
# type: html5
|
970
|
-
# size: 1280-720
|
971
|
-
# source: rolling_wild.mp4
|
972
|
-
# poster_image: rolling_wild.jpg
|
973
|
-
# pinterest_prefix: Pin video
|
974
|
-
# tweet_prefix: Try video
|
975
|
-
# caption_text: Rollin` Wild · Short Funny animated video clip created at the Film Academy
|
976
|
-
# description: >
|
977
|
-
# <h5>Rollin` Wild</h5>
|
978
|
-
# <h6>Short Funny Animated Clip created at the Film Academy</h6>
|
979
|
-
|
980
|
-
- video: # video 2
|
981
|
-
enabled: true
|
982
|
-
|
983
|
-
name: Last Carpool Karaoke
|
984
|
-
type: youtube
|
985
|
-
size: 1280-720
|
986
|
-
source: //youtube.com/watch?v=nV8UZJNBY6Y
|
987
|
-
poster_image: rolling_wild.jpg
|
988
|
-
pinterest_prefix: Pin video
|
989
|
-
tweet_prefix: Try video
|
990
|
-
caption_text: Carpool Karaoke 2023 · Last Carpool Karaoke
|
991
|
-
description: >
|
992
|
-
<h5>Carpool Karaoke 2023</h5>
|
993
|
-
<h6>
|
994
|
-
April 2023 - Adele wakeup James at home for the last Late Night Show,
|
995
|
-
for the last Carpool Caraoke ever.
|
996
|
-
</h6>
|
997
|
-
<br>
|
998
|
-
playerParams:
|
999
|
-
start: 50 # seconds to start
|
1000
|
-
|
1001
|
-
# ------------------------------------------------------------------------------
|
1002
|
-
# END config
|