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
@@ -11,33 +11,36 @@
|
|
11
11
|
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE
|
12
12
|
# ------------------------------------------------------------------------------
|
13
13
|
|
14
|
-
#
|
14
|
+
# ==============================================================================
|
15
15
|
# Description
|
16
|
+
# ==============================================================================
|
16
17
|
#
|
17
18
|
description:
|
18
19
|
title: Justified Gallery
|
19
20
|
scope: User settings
|
20
21
|
location: _data/apps/justifiedGallery.yml
|
21
22
|
|
22
|
-
#
|
23
|
+
# ==============================================================================
|
23
24
|
# User configuration settings
|
25
|
+
# ==============================================================================
|
24
26
|
#
|
25
27
|
settings:
|
26
28
|
|
27
|
-
#
|
29
|
+
# ============================================================================
|
28
30
|
# GENERAL options
|
29
31
|
# ----------------------------------------------------------------------------
|
30
32
|
#
|
31
33
|
enabled: true
|
32
34
|
|
33
|
-
#
|
35
|
+
# ============================================================================
|
34
36
|
# All galleries available
|
35
37
|
# ----------------------------------------------------------------------------
|
38
|
+
#
|
36
39
|
galleries:
|
37
40
|
|
38
41
|
# ==========================================================================
|
39
42
|
# Image Galleries
|
40
|
-
#
|
43
|
+
# --------------------------------------------------------------------------
|
41
44
|
|
42
45
|
# --------------------------------------------------------------------------
|
43
46
|
# Old Times
|
@@ -244,9 +247,103 @@ settings:
|
|
244
247
|
<h3>Lotte World Tower Seoul</h3>
|
245
248
|
|
246
249
|
|
250
|
+
# ========================================================================
|
251
|
+
# VideoJS settings
|
252
|
+
# See settings: //jekyll.one/pages/public/manuals/videojs/videojs_api/
|
253
|
+
# ------------------------------------------------------------------------
|
254
|
+
#
|
255
|
+
videojs:
|
256
|
+
enabled: true
|
257
|
+
theme: uno
|
258
|
+
|
259
|
+
# ----------------------------------------------------------------------
|
260
|
+
# Player settings
|
261
|
+
# See: //jekyll.one/pages/public/manuals/videojs/lightgallery_api
|
262
|
+
# ----------------------------------------------------------------------
|
263
|
+
#
|
264
|
+
player:
|
265
|
+
enabled: true
|
266
|
+
|
267
|
+
# VideoJS
|
268
|
+
# --------------------------------------------------------------------
|
269
|
+
videojsPlayer:
|
270
|
+
enabled: true
|
271
|
+
|
272
|
+
options:
|
273
|
+
muted: false
|
274
|
+
preload: false
|
275
|
+
autoplayFirstVideo: true
|
276
|
+
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
277
|
+
|
278
|
+
controls: true
|
279
|
+
controlBar:
|
280
|
+
remainingTimeDisplay: true
|
281
|
+
pictureInPictureToggle: false
|
282
|
+
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
283
|
+
|
284
|
+
volumePanel:
|
285
|
+
inline: false
|
286
|
+
|
287
|
+
hotkeysPlugin:
|
288
|
+
enabled: true
|
289
|
+
options:
|
290
|
+
volumeStep: 0.2
|
291
|
+
|
292
|
+
skipButtonsPlugin:
|
293
|
+
enabled: true
|
294
|
+
options:
|
295
|
+
forward: 15
|
296
|
+
backward: 15
|
297
|
+
|
298
|
+
zoomButtonsPlugin:
|
299
|
+
enabled: true
|
300
|
+
options:
|
301
|
+
moveX: 0
|
302
|
+
moveY: 0
|
303
|
+
rotate: 0
|
304
|
+
zoom: 1
|
305
|
+
|
306
|
+
# Vimeo
|
307
|
+
# --------------------------------------------------------------------
|
308
|
+
vimeoPlayer:
|
309
|
+
enabled: true
|
310
|
+
api: native # native|videojs
|
311
|
+
|
312
|
+
options:
|
313
|
+
autoPlay: true
|
314
|
+
muted: true
|
315
|
+
# byline: 0
|
316
|
+
# portrait: 0
|
317
|
+
# color: var(--md-gray-100)
|
318
|
+
|
319
|
+
|
320
|
+
# Wistia
|
321
|
+
# --------------------------------------------------------------------
|
322
|
+
wistiaPlayer:
|
323
|
+
enabled: true
|
324
|
+
api: native # native|videojs
|
325
|
+
|
326
|
+
options:
|
327
|
+
autoPlay: true
|
328
|
+
fullscreenButton: true
|
329
|
+
muted: false
|
330
|
+
qualityControl: false
|
331
|
+
|
332
|
+
# Youtube
|
333
|
+
# --------------------------------------------------------------------
|
334
|
+
youTubePlayer:
|
335
|
+
enabled: true
|
336
|
+
api: videojs # native|videojs
|
337
|
+
|
338
|
+
options:
|
339
|
+
autoPlay: true
|
340
|
+
muted: true
|
341
|
+
showinfo: true
|
342
|
+
controls: true
|
343
|
+
|
247
344
|
# ==========================================================================
|
248
345
|
# Video Galleries
|
249
|
-
#
|
346
|
+
# --------------------------------------------------------------------------
|
250
347
|
|
251
348
|
# --------------------------------------------------------------------------
|
252
349
|
# HTML5 VIDEO
|
@@ -286,7 +383,7 @@ settings:
|
|
286
383
|
alignThumbnails: left
|
287
384
|
animateThumb: true
|
288
385
|
autoplayFirstVideo: true
|
289
|
-
videojs: true
|
386
|
+
videojs: true # jadams: !!!
|
290
387
|
videojsTheme: vjs-theme-uno
|
291
388
|
|
292
389
|
videojsOptions:
|
@@ -294,9 +391,15 @@ settings:
|
|
294
391
|
|
295
392
|
muted: false
|
296
393
|
preload: true
|
297
|
-
# videoStart: ["00:00:30", "00:01:30"] # start time (hh:mm:ss) for [video1, video2]
|
298
394
|
|
299
395
|
controls: true
|
396
|
+
|
397
|
+
hotKeysPlugin:
|
398
|
+
enabled: true
|
399
|
+
|
400
|
+
options:
|
401
|
+
volumeStep: 0.2
|
402
|
+
|
300
403
|
controlBar:
|
301
404
|
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
302
405
|
remainingTimeDisplay: true
|
@@ -305,13 +408,9 @@ settings:
|
|
305
408
|
volumePanel:
|
306
409
|
inline: false
|
307
410
|
|
308
|
-
hotKeysPlugin:
|
309
|
-
enabled: true
|
310
|
-
options:
|
311
|
-
volumeStep: 0.2
|
312
|
-
|
313
411
|
skipButtonsPlugin:
|
314
412
|
enabled: true
|
413
|
+
|
315
414
|
options:
|
316
415
|
forward: 5
|
317
416
|
backward: 5
|
@@ -320,6 +419,12 @@ settings:
|
|
320
419
|
|
321
420
|
zoomPlugin:
|
322
421
|
enabled: true
|
422
|
+
|
423
|
+
showZoom: true
|
424
|
+
showMove: false
|
425
|
+
showRotate: false
|
426
|
+
gestureHandler: false
|
427
|
+
|
323
428
|
options:
|
324
429
|
moveX: 0
|
325
430
|
moveY: 0
|
@@ -346,6 +451,7 @@ settings:
|
|
346
451
|
|
347
452
|
name: Peck Pocketed
|
348
453
|
type: html5
|
454
|
+
api: videojs # jadams !!!
|
349
455
|
size: 1280-720
|
350
456
|
source: peck_pocketed.mp4
|
351
457
|
poster_image: peck_pocketed.jpg
|
@@ -376,6 +482,7 @@ settings:
|
|
376
482
|
|
377
483
|
name: Rollin Wild
|
378
484
|
type: html5
|
485
|
+
api: videojs # jadams !!!
|
379
486
|
size: 1280-720
|
380
487
|
source: rolling_wild.mp4
|
381
488
|
poster_image: rolling_wild.jpg
|
@@ -387,13 +494,12 @@ settings:
|
|
387
494
|
<h3>Short Funny Animated Clip created at the Film Academy</h3>
|
388
495
|
|
389
496
|
# --------------------------------------------------------------------------
|
390
|
-
# Online VIDEO
|
391
|
-
# See: https://www.youtube.com/playlist?list=PLINj2JJM1jxOxE-4mVaEJCEzO1CiR0Cwm
|
497
|
+
# Online VIDEO Carpool Karaoke (YouTube)
|
392
498
|
#
|
393
499
|
- gallery:
|
394
500
|
enabled: true
|
395
501
|
|
396
|
-
id:
|
502
|
+
id: jg_video_youtube_james_and_adele
|
397
503
|
type: video
|
398
504
|
video: youtube
|
399
505
|
image_base_path: //img.youtube.com/vi
|
@@ -423,179 +529,47 @@ settings:
|
|
423
529
|
alignThumbnails: left
|
424
530
|
animateThumb: true
|
425
531
|
autoplayFirstVideo: true
|
426
|
-
videojs:
|
532
|
+
videojs: true # jadams: !!!
|
533
|
+
videojsTheme: vjs-theme-uno
|
427
534
|
|
428
535
|
videojsOptions:
|
429
|
-
enabled: false
|
430
|
-
|
431
|
-
# See: https://stackoverflow.com/questions/40685142/youtube-autoplay-does-not-work-with-iframe
|
432
|
-
playerParams:
|
433
536
|
enabled: true
|
434
|
-
|
435
|
-
|
436
|
-
|
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
|
-
<h2>Tylor Swift</h2>
|
472
|
-
<h3>Fortnight (feat. Post Malone) · Official Music Video</h3>
|
473
|
-
|
474
|
-
- video: # video 2
|
475
|
-
enabled: true
|
476
|
-
|
477
|
-
name: Tylor Swift
|
478
|
-
type: youtube
|
479
|
-
size: 1280-720
|
480
|
-
source: //youtube.com/watch?v=0GQ_QeZxdzo
|
481
|
-
poster_image: 0GQ_QeZxdzo/maxresdefault.jpg
|
482
|
-
pinterest_prefix: Pin video
|
483
|
-
tweet_prefix: Try video
|
484
|
-
caption_text: Fortnight (feat. Post Malone) · Behind the Scenes
|
485
|
-
description: >
|
486
|
-
<h2>Tylor Swift</h2>
|
487
|
-
<h3>Fortnight (feat. Post Malone) · Behind the Scenes</h3>
|
488
|
-
|
489
|
-
# - video: # video 2
|
490
|
-
# enabled: true
|
491
|
-
#
|
492
|
-
# name: Tylor Swift
|
493
|
-
# type: youtube
|
494
|
-
# size: 1280-720
|
495
|
-
# # source: //youtube.com/watch?v=i8_w_m6HLJ0&list=PLINj2JJM1jxOxE-4mVaEJCEzO1CiR0Cwm
|
496
|
-
# source: //youtube.com/watch?v=i8_w_m6HLJ0
|
497
|
-
# pinterest_prefix: Pin video
|
498
|
-
# tweet_prefix: Try video
|
499
|
-
# description: >
|
500
|
-
# <h2>Tylor Swift</h2>
|
501
|
-
# <h3>I Can Do With a Broken Heart</h3>
|
502
|
-
#
|
503
|
-
# caption:
|
504
|
-
# text: I Can Do With a Broken Heart · Tylor Swift
|
505
|
-
# poster:
|
506
|
-
# source: i8_w_m6HLJ0/maxresdefault.jpg
|
507
|
-
# # source: i8_w_m6HLJ0/sddefault.jpg
|
508
|
-
#
|
509
|
-
# # playerParams:
|
510
|
-
# # start: 50 # seconds to start
|
511
|
-
#
|
512
|
-
#
|
513
|
-
#
|
514
|
-
# # playerParams:
|
515
|
-
# # start: 50 # seconds to start
|
516
|
-
#
|
517
|
-
# - video: # video 3
|
518
|
-
# enabled: true
|
519
|
-
#
|
520
|
-
# name: Tylor Swift
|
521
|
-
# type: youtube
|
522
|
-
# size: 1280-720
|
523
|
-
# source: //youtube.com/watch?v=RQMz4JDbtmI
|
524
|
-
# pinterest_prefix: Pin video
|
525
|
-
# tweet_prefix: Try video
|
526
|
-
# description: >
|
527
|
-
# <h2>Tylor Swift</h2>
|
528
|
-
# <h3>The Tortured Poets Department (Official Lyric Video)</h3>
|
529
|
-
#
|
530
|
-
# caption:
|
531
|
-
# text: The Tortured Poets Department (Official Lyric Video) · Tylor Swift
|
532
|
-
# poster:
|
533
|
-
# source: RQMz4JDbtmI/maxresdefault.jpg
|
534
|
-
#
|
535
|
-
# - video: # video 3
|
536
|
-
# enabled: true
|
537
|
-
#
|
538
|
-
# name: Tylor Swift
|
539
|
-
# type: youtube
|
540
|
-
# size: 1280-720
|
541
|
-
# source: //youtube.com/watch?v=wRKXAAV6jh4
|
542
|
-
# pinterest_prefix: Pin video
|
543
|
-
# tweet_prefix: Try video
|
544
|
-
# description: >
|
545
|
-
# <h2>Tylor Swift</h2>
|
546
|
-
# <h3>My Boy Only Breaks His Favorite Toys (Official Lyric Video)</h3>
|
547
|
-
#
|
548
|
-
# caption:
|
549
|
-
# text: My Boy Only Breaks His Favorite Toys (Official Lyric Video) · Tylor Swift
|
550
|
-
# poster:
|
551
|
-
# source: wRKXAAV6jh4/maxresdefault.jpg
|
552
|
-
|
553
|
-
|
554
|
-
# --------------------------------------------------------------------------
|
555
|
-
# Online VIDEO Carpool Karaoke (YouTube)
|
556
|
-
#
|
557
|
-
- gallery:
|
558
|
-
enabled: true
|
559
|
-
|
560
|
-
id: jg_video_online_youtube_james_and_adele
|
561
|
-
type: video
|
562
|
-
video: youtube
|
563
|
-
image_base_path: //img.youtube.com/vi
|
537
|
+
muted: false
|
538
|
+
preload: true
|
539
|
+
controls: true
|
564
540
|
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
gallery_options:
|
570
|
-
rowHeight: 250
|
571
|
-
gutters: 3
|
541
|
+
hotKeysPlugin:
|
542
|
+
enabled: true
|
543
|
+
options:
|
544
|
+
volumeStep: 0.2
|
572
545
|
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
lightbox:
|
578
|
-
enabled: true
|
579
|
-
type: lg
|
546
|
+
controlBar:
|
547
|
+
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
548
|
+
remainingTimeDisplay: true
|
549
|
+
pictureInPictureToggle: false
|
580
550
|
|
581
|
-
|
582
|
-
|
551
|
+
volumePanel:
|
552
|
+
inline: false
|
583
553
|
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
554
|
+
skipButtonsPlugin:
|
555
|
+
enabled: true
|
556
|
+
options:
|
557
|
+
forward: 5
|
558
|
+
backward: 5
|
559
|
+
backwardIndex: 0
|
560
|
+
forwardIndex: 1
|
591
561
|
|
592
|
-
|
593
|
-
|
562
|
+
zoomPlugin:
|
563
|
+
enabled: false
|
564
|
+
options:
|
565
|
+
moveX: 0
|
566
|
+
moveY: 0
|
567
|
+
rotate: 0
|
568
|
+
zoom: 1
|
594
569
|
|
595
|
-
# See: https://stackoverflow.com/questions/40685142/youtube-autoplay-does-not-work-with-iframe
|
596
570
|
playerParams:
|
597
571
|
enabled: true
|
598
|
-
|
572
|
+
# start: ["00:00:50", "00:00:50"] # start time video1, vido2
|
599
573
|
autoplay: 1 # autoplay = 1 only available for YouTube when muted.
|
600
574
|
# controls: 1 # default = 0
|
601
575
|
# enablejsapi: 1 # default = 1
|
@@ -625,43 +599,46 @@ settings:
|
|
625
599
|
|
626
600
|
name: Carpool Karaoke James and Adele
|
627
601
|
type: youtube
|
602
|
+
api: videojs # jadams !!!
|
628
603
|
size: 1280-720
|
629
604
|
source: //youtube.com/watch?v=Nck6BZga7TQ
|
630
|
-
poster_image: Nck6BZga7TQ/mqdefault.jpg
|
605
|
+
poster_image: Nck6BZga7TQ/mqdefault.jpg # jadams !!!
|
631
606
|
pinterest_prefix: Pin video
|
632
607
|
tweet_prefix: Try video
|
633
608
|
caption_text: Carpool Karaoke 2015 · James and Adele
|
634
609
|
description: >
|
635
610
|
<h2>Carpool Karaoke 2015</h2>
|
636
611
|
<h3>
|
637
|
-
|
638
|
-
|
639
|
-
they sing some of their biggest hits.
|
612
|
+
James is on holidays in London and picks up
|
613
|
+
Adele for a ride through the city.
|
614
|
+
On the way, they sing some of their biggest hits.
|
640
615
|
</h3>
|
641
616
|
|
642
617
|
playerParams:
|
643
|
-
start: 50
|
618
|
+
# start: 50 # seconds to start
|
644
619
|
|
645
620
|
- video: # video 2
|
646
621
|
enabled: true
|
647
622
|
|
648
623
|
name: Last Carpool Karaoke
|
649
624
|
type: youtube
|
625
|
+
api: videojs # jadams !!!
|
650
626
|
size: 1280-720
|
651
627
|
source: //youtube.com/watch?v=nV8UZJNBY6Y
|
652
|
-
poster_image: nV8UZJNBY6Y/mqdefault.jpg
|
628
|
+
poster_image: nV8UZJNBY6Y/mqdefault.jpg # jadams !!!
|
653
629
|
pinterest_prefix: Pin video
|
654
630
|
tweet_prefix: Try video
|
655
|
-
caption_text: Carpool Karaoke 2023 · Last Carpool Karaoke
|
631
|
+
caption_text: Carpool Karaoke 2023 · Last Carpool Karaoke Tour
|
656
632
|
description: >
|
657
633
|
<h2>Carpool Karaoke 2023</h2>
|
658
634
|
<h3>
|
659
|
-
|
660
|
-
|
635
|
+
Adele wakeups James at home for the very
|
636
|
+
last Late Late Night Show and for the
|
637
|
+
final Carpool Caraoke Tour.
|
661
638
|
</h3>
|
662
639
|
|
663
640
|
playerParams:
|
664
|
-
start: 50
|
641
|
+
# start: 50 # seconds to start
|
665
642
|
|
666
643
|
# --------------------------------------------------------------------------
|
667
644
|
# Online VIDEO (Vimeo)
|
@@ -853,7 +830,7 @@ settings:
|
|
853
830
|
<h3>Beginner Mat Pilates: Core Workout</h3>
|
854
831
|
|
855
832
|
# --------------------------------------------------------------------------
|
856
|
-
# HTML5 VIDEO (over
|
833
|
+
# HTML5 VIDEO (over VideoJS)
|
857
834
|
#
|
858
835
|
- gallery:
|
859
836
|
enabled: true
|
@@ -890,7 +867,7 @@ settings:
|
|
890
867
|
alignThumbnails: left
|
891
868
|
animateThumb: true
|
892
869
|
autoplayFirstVideo: true
|
893
|
-
videojs: true
|
870
|
+
videojs: true # jadams: !!!
|
894
871
|
videojsTheme: vjs-theme-uno
|
895
872
|
|
896
873
|
videojsOptions:
|
@@ -898,9 +875,14 @@ settings:
|
|
898
875
|
|
899
876
|
muted: false
|
900
877
|
preload: true
|
901
|
-
# videoStart: ["00:00:30", "00:01:30"] # start time (hh:mm:ss) for [video1, video2]
|
902
878
|
|
903
879
|
controls: true
|
880
|
+
|
881
|
+
hotKeysPlugin:
|
882
|
+
enabled: true
|
883
|
+
options:
|
884
|
+
volumeStep: 0.2
|
885
|
+
|
904
886
|
controlBar:
|
905
887
|
playbackRates: [0.25, 0.5, 1, 1.5, 2]
|
906
888
|
remainingTimeDisplay: true
|
@@ -909,26 +891,21 @@ settings:
|
|
909
891
|
volumePanel:
|
910
892
|
inline: false
|
911
893
|
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
# options:
|
928
|
-
# moveX: 0
|
929
|
-
# moveY: 0
|
930
|
-
# rotate: 0
|
931
|
-
# zoom: 1
|
894
|
+
skipButtonsPlugin:
|
895
|
+
enabled: true
|
896
|
+
options:
|
897
|
+
forward: 5
|
898
|
+
backward: 5
|
899
|
+
backwardIndex: 0
|
900
|
+
forwardIndex: 1
|
901
|
+
|
902
|
+
zoomPlugin:
|
903
|
+
enabled: true
|
904
|
+
options:
|
905
|
+
moveX: 0
|
906
|
+
moveY: 0
|
907
|
+
rotate: 0
|
908
|
+
zoom: 1
|
932
909
|
|
933
910
|
# ------------------------------------------------------------------------
|
934
911
|
# CSS filter options
|
@@ -950,6 +927,7 @@ settings:
|
|
950
927
|
|
951
928
|
name: Peck Pocketed
|
952
929
|
type: html5
|
930
|
+
api: videojs # jadams !!!
|
953
931
|
size: 1280-720
|
954
932
|
source: peck_pocketed.mp4
|
955
933
|
poster_image: peck_pocketed.jpg
|
@@ -960,40 +938,21 @@ settings:
|
|
960
938
|
<h2>Peck Pocketed by Kevin Herron | Disney Favorite</h2>
|
961
939
|
<h3>Student Academy Award winning Cartoon Clip</h3>
|
962
940
|
|
963
|
-
# - video: # video 2
|
964
|
-
# enabled: true
|
965
|
-
#
|
966
|
-
# name: Rollin Wild
|
967
|
-
# type: html5
|
968
|
-
# size: 1280-720
|
969
|
-
# source: rolling_wild.mp4
|
970
|
-
# poster_image: rolling_wild.jpg
|
971
|
-
# pinterest_prefix: Pin video
|
972
|
-
# tweet_prefix: Try video
|
973
|
-
# caption_text: Rollin` Wild · Short Funny animated video clip created at the Film Academy
|
974
|
-
# description: >
|
975
|
-
# <h2>Rollin` Wild</h2>
|
976
|
-
# <h3>Short Funny Animated Clip created at the Film Academy</h3>
|
977
|
-
|
978
941
|
- video: # video 2
|
979
942
|
enabled: true
|
980
|
-
|
981
|
-
name:
|
982
|
-
type:
|
943
|
+
|
944
|
+
name: Rollin Wild
|
945
|
+
type: html5
|
946
|
+
api: videojs # jadams !!!
|
983
947
|
size: 1280-720
|
984
|
-
source:
|
948
|
+
source: rolling_wild.mp4
|
985
949
|
poster_image: rolling_wild.jpg
|
986
950
|
pinterest_prefix: Pin video
|
987
951
|
tweet_prefix: Try video
|
988
|
-
caption_text:
|
952
|
+
caption_text: Rollin` Wild · Short Funny animated video clip created at the Film Academy
|
989
953
|
description: >
|
990
|
-
<h2>
|
991
|
-
<h3>
|
992
|
-
April 2023 - Adele wakeup James at home for the last Late Night Show,
|
993
|
-
for the last Carpool Caraoke ever.
|
994
|
-
</h3>
|
995
|
-
playerParams:
|
996
|
-
start: 50 # seconds to start
|
954
|
+
<h2>Rollin` Wild</h2>
|
955
|
+
<h3>Short Funny Animated Clip created at the Film Academy</h3>
|
997
956
|
|
998
957
|
# ------------------------------------------------------------------------------
|
999
958
|
# END config
|