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,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
title: VideoJS
|
3
|
-
title_extention: Custom
|
4
|
-
tagline: Custom
|
2
|
+
title: VideoJS
|
3
|
+
title_extention: Custom VJS Players
|
4
|
+
tagline: Custom VJS Players
|
5
5
|
|
6
6
|
date: 2025-06-05
|
7
7
|
last_modified: 2025-06-08
|
@@ -28,14 +28,18 @@ regenerate: false
|
|
28
28
|
personalization: true
|
29
29
|
permalink: /pages/public/tester/videojs_yt/
|
30
30
|
|
31
|
-
resources: [ videojs ]
|
31
|
+
resources: [ gallery, lightgallery, masonry, videojs ]
|
32
32
|
resource_options:
|
33
33
|
- toccer:
|
34
34
|
collapseDepth: 3
|
35
35
|
- attic:
|
36
36
|
slides:
|
37
|
-
- url: /assets/image/module/attic/markus-spiske
|
38
|
-
alt:
|
37
|
+
- url: /assets/image/module/attic/1920x1280/markus-spiske.jpg
|
38
|
+
alt: Photo by Markus Spiske on Unsplash
|
39
|
+
badge:
|
40
|
+
type: unsplash
|
41
|
+
author: Markus Spiske
|
42
|
+
href: https://unsplash.com/de/@markusspiske/
|
39
43
|
---
|
40
44
|
|
41
45
|
// Page Initializer
|
@@ -69,44 +73,113 @@ websites, mobile web apps, and mobile native/hybrid apps.
|
|
69
73
|
|
70
74
|
// Include sub-documents (if any)
|
71
75
|
// -----------------------------------------------------------------------------
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
76
|
+
// [role="mt-5"]
|
77
|
+
// == Local Video
|
78
|
+
|
79
|
+
// Videos created by a digicam or a mobile can be played by J1 Template using
|
80
|
+
// the lightGallery integration. Present videos you have made at it's best.
|
81
|
+
|
82
|
+
// .Local Video over VideoJS · Justified Gallery + LightGallery
|
83
|
+
// gallery::jg_video_html5[role="mb-4"]
|
84
|
+
|
85
|
+
|
86
|
+
// == Masonry
|
87
|
+
|
88
|
+
// Masonry for J1 Template is a great tool for creating dynamic video galleries.
|
89
|
+
// The module makes creating a gallery to display videos of different types easy.
|
90
|
+
|
91
|
+
// .Mixed Video · Masonry + LightGallery
|
92
|
+
// masonry::mixed_video_example[role="mb-4"]
|
93
|
+
|
94
|
+
|
95
|
+
// [role="mt-4"]
|
96
|
+
// == lightGallery (YouTube)
|
97
|
+
|
98
|
+
// The galley maker *justifiedGallery* in combination with the *lightbox*
|
99
|
+
// lightGallery is a great toolset for creating dynamic video galleries.
|
100
|
+
// The module combinati0n makes creating a gallery to access videos easy.
|
101
|
+
|
102
|
+
// .YouTube Video · justifiedGallery + LightGallery
|
103
|
+
// gallery::jg_video_youtube_james_and_adele[role="mb-4"]
|
104
|
+
|
105
|
+
|
106
|
+
// [role="mt-5"]
|
107
|
+
// == VideoJS Player over YouTube
|
108
|
+
|
109
|
+
// YouTube is a popular online video-sharing platform that allows users to
|
110
|
+
// upload, view, share, and comment on videos. The platform provides services
|
111
|
+
// for people and organizations to publish various video content.
|
112
|
+
|
113
|
+
// ++++
|
114
|
+
// <div class="video-title">
|
115
|
+
// <i class="mdib mdib-video mdib-24px mr-2"></i>
|
116
|
+
// The Breathtaking Beauty of Nature
|
117
|
+
// </div>
|
118
|
+
|
119
|
+
// <div class="mb-8">
|
120
|
+
// <video
|
121
|
+
// id="vid_2rtQOsWaAXc"
|
122
|
+
// class="video-js vjs-theme-uno"
|
123
|
+
// controls
|
124
|
+
// width="640"
|
125
|
+
// height="360"
|
126
|
+
// poster="//img.youtube.com/vi/IUN664s7N-c/maxresdefault.jpg" alt="Beauty of Nature"
|
127
|
+
// aria-label="The Breathtaking Beauty of Nature"
|
128
|
+
// data-setup='{
|
129
|
+
// "fluid" : true,
|
130
|
+
// "techOrder": [
|
131
|
+
// "youtube", "html5"
|
132
|
+
// ],
|
133
|
+
// "sources": [{
|
134
|
+
// "type": "video/youtube",
|
135
|
+
// "src": "//youtube.com/watch?v=IUN664s7N-c"
|
136
|
+
// }],
|
137
|
+
// "controlBar": {
|
138
|
+
// "pictureInPictureToggle": false,
|
139
|
+
// "volumePanel": {
|
140
|
+
// "inline": false
|
141
|
+
// }
|
142
|
+
// }
|
143
|
+
// }'
|
144
|
+
// ></video>
|
145
|
+
// </div>
|
146
|
+
// ++++
|
147
|
+
|
148
|
+
[role="mt-5"]
|
149
|
+
== VideoJS Player over Dailymotion
|
150
|
+
|
151
|
+
link:{url-dailymotion--home}[Dailymotion, {browser-window--new}] is a
|
152
|
+
video-sharing platform. The platform is available worldwide in 180+
|
153
|
+
languages, featuring websites for their video content.
|
154
|
+
|
155
|
+
The platform is a *monetization* solution that allows allows to directly
|
156
|
+
connect to high-quality advertisers through a proprietary Advertising system.
|
157
|
+
Like YouTube, videos can be watched for free, but ads are shown on each and
|
158
|
+
every video.
|
86
159
|
|
87
160
|
++++
|
88
161
|
<div class="video-title">
|
89
162
|
<i class="mdib mdib-video mdib-24px mr-2"></i>
|
90
|
-
|
163
|
+
Morning Energy
|
91
164
|
</div>
|
92
165
|
|
93
166
|
<div class="mb-8">
|
94
167
|
<video
|
95
|
-
id="
|
168
|
+
id="vid_x887s09"
|
96
169
|
class="video-js vjs-theme-uno"
|
97
170
|
controls
|
98
171
|
width="640"
|
99
172
|
height="360"
|
100
|
-
poster="
|
101
|
-
aria-label="
|
173
|
+
poster="/assets/video/poster/dailymotion/meditation.jpg" alt="Morning Energy"
|
174
|
+
aria-label="Morning Energy"
|
102
175
|
data-setup='{
|
103
176
|
"fluid" : true,
|
104
177
|
"techOrder": [
|
105
|
-
"
|
178
|
+
"dailymotion", "html5"
|
106
179
|
],
|
107
180
|
"sources": [{
|
108
|
-
"type": "video/
|
109
|
-
"src": "//
|
181
|
+
"type": "video/dailymotion",
|
182
|
+
"src": "//dai.ly/x887s09"
|
110
183
|
}],
|
111
184
|
"controlBar": {
|
112
185
|
"pictureInPictureToggle": false,
|
@@ -119,6 +192,18 @@ lorem:sentences[3]
|
|
119
192
|
</div>
|
120
193
|
++++
|
121
194
|
|
195
|
+
|
196
|
+
++++
|
197
|
+
<style>
|
198
|
+
|
199
|
+
/* -----------------------------------------------------------------------------
|
200
|
+
styles moved to VJS theme uno at:
|
201
|
+
assets/theme/j1/modules/videojs/css/themes/uno.css
|
202
|
+
*/
|
203
|
+
|
204
|
+
</style>
|
205
|
+
++++
|
206
|
+
|
122
207
|
++++
|
123
208
|
<script>
|
124
209
|
|
@@ -162,7 +247,7 @@ $(function() {
|
|
162
247
|
// create div|caption container
|
163
248
|
const newDiv = document.createElement('div');
|
164
249
|
newDiv.classList.add('caption');
|
165
|
-
newDiv.textContent = '
|
250
|
+
newDiv.textContent = 'Morning Energy';
|
166
251
|
|
167
252
|
// insert div|caption container AFTER the image
|
168
253
|
image.parentNode.insertBefore(newDiv, image.nextSibling);
|
@@ -180,15 +265,17 @@ $(function() {
|
|
180
265
|
var j1CoreFinished = (j1.getState() === 'finished') ? true : false;
|
181
266
|
|
182
267
|
if (j1CoreFinished && pageVisible) {
|
183
|
-
const vjs_player = document.getElementById("
|
268
|
+
// const vjs_player = document.getElementById("vid_2rtQOsWaAXc");
|
269
|
+
const vjs_player = document.getElementById('vid_x887s09');
|
184
270
|
|
185
271
|
// add captions (on poster image)
|
186
|
-
|
187
|
-
|
272
|
+
// naddCaptionAfterImage('//img.youtube.com/vi/IUN664s7N-c/maxresdefault.jpg');
|
273
|
+
addCaptionAfterImage('/assets/video/poster/dailymotion/meditation.jpg');
|
274
|
+
|
188
275
|
// scroll page to the players top position
|
189
276
|
// -----------------------------------------------------------------------
|
190
277
|
vjs_player.addEventListener('click', function(event) {
|
191
|
-
const targetDiv = document.getElementById("
|
278
|
+
const targetDiv = document.getElementById("vid_x887s09");
|
192
279
|
const targetDivPosition = targetDiv.offsetTop;
|
193
280
|
const scrollOffset = (window.innerWidth >= 720) ? -130 : -110;
|
194
281
|
|
@@ -203,12 +290,12 @@ $(function() {
|
|
203
290
|
// customize the yt player created
|
204
291
|
// ---------------------------------------------------------------------------
|
205
292
|
var dependencies_met_vjs_player_exist = setInterval(function(options) {
|
206
|
-
var vjsPlayerExist = document.getElementById("
|
293
|
+
var vjsPlayerExist = document.getElementById("vid_x887s09") ? true : false;
|
207
294
|
|
208
295
|
if (vjsPlayerExist) {
|
209
296
|
|
210
297
|
// apply player customization on 'player ready'
|
211
|
-
videojs("
|
298
|
+
videojs("vid_x887s09").ready(function() {
|
212
299
|
const vjsPlayer = this;
|
213
300
|
|
214
301
|
// create customControlContainer for progressControlSilder|time (display) elements
|
@@ -280,3 +367,4 @@ $(function() {
|
|
280
367
|
|
281
368
|
</script>
|
282
369
|
++++
|
370
|
+
|
@@ -99,8 +99,7 @@ end::tags[]
|
|
99
99
|
// -----------------------------------------------------------------------------
|
100
100
|
tag::data[]
|
101
101
|
|
102
|
-
:data-images--themes
|
103
|
-
:data-images--styles-menu: "assets/image/page/tour/styles-menu-1280x800.jpg, Styles menu (Bootswatch)"
|
102
|
+
:data-images--bootswatch-themes: "assets/image/page/tour/bootswatch-themes.jpg, Bootswatch Themes"
|
104
103
|
|
105
104
|
:data-quicksearch--icon: "assets/image/page/tour/600_quicksearch/quicksearch_icon.jpg, Search button (magnifier) in the quick access area"
|
106
105
|
:data-quicksearch--input: "assets/image/page/tour/600_quicksearch/quicksearch_input.jpg, Input bar for a QuickSearch"
|
data/lib/starter_web/pages/public/tour/_includes/documents/419_advanced_modals_demo.asciidoc
CHANGED
@@ -83,7 +83,7 @@
|
|
83
83
|
</div>
|
84
84
|
<!-- Body -->
|
85
85
|
<div class="modal-body">
|
86
|
-
<img src="/assets/image/module/attic/admin-dashboard-bootstrap
|
86
|
+
<img src="/assets/image/module/attic/1920x1280/admin-dashboard-bootstrap.jpg" alt="admin-dashboard-bootstrap" class="img-fluid">
|
87
87
|
<div class="text-center">
|
88
88
|
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nesciunt vero illo error eveniet cum.</p>
|
89
89
|
</div>
|
@@ -15,7 +15,7 @@ link:{url-w3schools--css-tutorial}[Design base, {browser-window--new}] of each
|
|
15
15
|
and every website.
|
16
16
|
|
17
17
|
.Theme menu (Bootswatch)
|
18
|
-
lightbox::images--themes-menu[
|
18
|
+
lightbox::data-images--themes-menu[1280, {data-images--themes-menu}]
|
19
19
|
|
20
20
|
Thanks to the people at link:{url-bootswatch--home}[Bootswatch, {browser-window--new}],
|
21
21
|
a great set of already prepared Bootstrap stylesheets in various designs are
|
@@ -20,7 +20,7 @@ categories: [ Roundtrip ]
|
|
20
20
|
tags: [ Asciidoc, Extension ]
|
21
21
|
|
22
22
|
image:
|
23
|
-
path: /assets/image/
|
23
|
+
path: /assets/image/module/attic/1920x1280/martin-sanchez.jpg
|
24
24
|
width: 1920
|
25
25
|
height: 1280
|
26
26
|
|
@@ -36,8 +36,12 @@ resources: [
|
|
36
36
|
resource_options:
|
37
37
|
- attic:
|
38
38
|
slides:
|
39
|
-
- url: /assets/image/
|
40
|
-
alt:
|
39
|
+
- url: /assets/image/module/attic/1920x1280/martin-sanchez.jpg
|
40
|
+
alt: Photo by Martin Sanchez on Unsplash
|
41
|
+
badge:
|
42
|
+
type: unsplash
|
43
|
+
author: BP Miller
|
44
|
+
href: //unsplash.com/de/@bp_miller
|
41
45
|
---
|
42
46
|
|
43
47
|
// Page Initializer
|
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
title: Themes
|
3
3
|
title_extention: Bootstrap V5 Themes
|
4
|
-
tagline: Individual
|
4
|
+
tagline: Individual Style
|
5
5
|
|
6
6
|
date: 2020-11-10
|
7
7
|
#last_modified: 2023-01-01
|
@@ -21,7 +21,7 @@ categories: [ Roundtrip ]
|
|
21
21
|
tags: [ Bootstrap, Module, Theme ]
|
22
22
|
|
23
23
|
image:
|
24
|
-
path: /assets/image/module/attic/
|
24
|
+
path: /assets/image/module/attic/1920x1280/stories-ink-tattoo-care.jpg
|
25
25
|
width: 1920
|
26
26
|
height: 1280
|
27
27
|
|
@@ -32,12 +32,12 @@ resources: [ lightbox ]
|
|
32
32
|
resource_options:
|
33
33
|
- attic:
|
34
34
|
slides:
|
35
|
-
- url: /assets/image/module/attic/
|
36
|
-
alt: Photo by
|
35
|
+
- url: /assets/image/module/attic/1920x1280/stories-ink-tattoo-care.jpg
|
36
|
+
alt: Photo by Stories & Ink Tattoo Care on Unsplash
|
37
37
|
badge:
|
38
38
|
type: unsplash
|
39
|
-
author:
|
40
|
-
href:
|
39
|
+
author: Stories & Ink Tattoo Care
|
40
|
+
href: https://unsplash.com/de/@storiesandink
|
41
41
|
---
|
42
42
|
|
43
43
|
// Page Initializer
|
@@ -84,9 +84,64 @@ defined CSS classes in Bootstrap to customize a layout individually.
|
|
84
84
|
</div>
|
85
85
|
++++
|
86
86
|
|
87
|
+
|
87
88
|
// Include sub-documents (if any)
|
88
89
|
// -----------------------------------------------------------------------------
|
89
|
-
|
90
|
+
[role="mt-5"]
|
91
|
+
== The Themes
|
92
|
+
|
93
|
+
Styles adjust the website's appearance based on the CSS rules and definitions
|
94
|
+
of Bootstrap. Styles do not change the framework's functionality but modify
|
95
|
+
rule-based, e.g., the color scheme, fonts, sizes, or the appearance of more
|
96
|
+
complex elements like forms or tables. Additionally, a style may add additional
|
97
|
+
components to extend the Bootstrap's framework.
|
98
|
+
|
99
|
+
Modifying the CSS styles of link:{url-bs--home}[Bootstrap, {browser-window--new}]
|
100
|
+
is not rocket science. But, to be honest, some knowledge is needed for the
|
101
|
+
link:{url-w3org--css-spec}[CSS technology, {browser-window--new}] to do so.
|
102
|
+
I encourage you to spend some time on learning CSS, the
|
103
|
+
link:{url-w3schools--css-tutorial}[Design base, {browser-window--new}] of each
|
104
|
+
and every website.
|
105
|
+
|
106
|
+
.Bootswatch Themes (Examples)
|
107
|
+
lightbox::bootswatch-themes[1280, {data-images--bootswatch-themes}]
|
108
|
+
|
109
|
+
Thanks to the people at link:{url-bootswatch--home}[Bootswatch, {browser-window--new}],
|
110
|
+
a great set of already prepared Bootstrap stylesheets in various designs are
|
111
|
+
available on their website; no need to start from scratch. It is not
|
112
|
+
required to re-define all the Bootstrap variables and rebuild the framework.
|
113
|
+
Many different styles are available. What is already available at Bootswatch
|
114
|
+
is at least a good base for your modifications -- your unique design.
|
115
|
+
|
116
|
+
Besides the bunch of different stylesheets at *Bootswatch*, an
|
117
|
+
link:{url-bootswatch--api}[Integration API, {browser-window--new}] is provided
|
118
|
+
that helps a lot to make designs available for an existing site. This API
|
119
|
+
is the base to integrate selectable Bootswatch stylesheets into the J1 Template
|
120
|
+
navigation system.
|
121
|
+
|
122
|
+
[role="mt-4"]
|
123
|
+
=== Apply a Style
|
124
|
+
|
125
|
+
The base for designing pages using the J1 Template is the style Uno, a modern
|
126
|
+
light or dark CSS layout used for many types of websites. What I mentioned
|
127
|
+
already, web design is not: one size fits all. The style Uno can be seen as
|
128
|
+
a good base, a starting point. Combining Uno and a different styles may be
|
129
|
+
a fast solution for your site!
|
130
|
+
|
131
|
+
You can find all available stylesheets to be applied on your pages from the
|
132
|
+
*Themes* menu. You're invited to check how a page is changing for its design
|
133
|
+
if a different stylesheet for web design is used.
|
134
|
+
|
135
|
+
[WARNING]
|
136
|
+
====
|
137
|
+
For changing from one style to the next at *runtime*, the current
|
138
|
+
version of the J1 Template system tries add new styles to J1 specific
|
139
|
+
components like fonts, headlines, lists or paragraphs. Changing the style
|
140
|
+
will work for the most *common* elements, but *not all* of them for now.
|
141
|
+
====
|
142
|
+
|
143
|
+
Select a style from the *Themes* menu, and the new BS-based stylesheet is
|
144
|
+
automatically applied to all pages of your website.
|
90
145
|
|
91
146
|
|
92
147
|
[role="mt-5"]
|
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
title: Icon Fonts
|
3
3
|
title_extention: Icons for J1 Template
|
4
|
-
tagline:
|
4
|
+
tagline: Icons for Your Web
|
5
5
|
|
6
6
|
date: 2020-11-06
|
7
7
|
#last_modified: 2023-01-01
|
@@ -20,7 +20,7 @@ categories: [ Roundtrip ]
|
|
20
20
|
tags: [ Module, Icon ]
|
21
21
|
|
22
22
|
image:
|
23
|
-
path: assets/image/
|
23
|
+
path: /assets/image/module/attic/1920x1280/material_symbols.jpg
|
24
24
|
width: 1920
|
25
25
|
height: 1280
|
26
26
|
|
@@ -31,12 +31,8 @@ resources: [ iconify ]
|
|
31
31
|
resource_options:
|
32
32
|
- attic:
|
33
33
|
slides:
|
34
|
-
- url: /assets/image/
|
35
|
-
alt:
|
36
|
-
badge:
|
37
|
-
type: unsplash
|
38
|
-
author: Harpal Singh
|
39
|
-
href: //unsplash.com/@aquatium
|
34
|
+
- url: /assets/image/module/attic/1920x1280/material_symbols.jpg
|
35
|
+
alt: Material Design Symbols
|
40
36
|
---
|
41
37
|
|
42
38
|
// Page Initializer
|
@@ -21,7 +21,7 @@ categories: [ Roundtrip ]
|
|
21
21
|
tags: [ Bootstrap, Modal, Extension ]
|
22
22
|
|
23
23
|
image:
|
24
|
-
path: /assets/image/
|
24
|
+
path: /assets/image/module/attic/1920x1280/bootstrap-modal.jpg
|
25
25
|
width: 1920
|
26
26
|
height: 1280
|
27
27
|
|
@@ -32,7 +32,7 @@ resources: []
|
|
32
32
|
resource_options:
|
33
33
|
- attic:
|
34
34
|
slides:
|
35
|
-
- url: /assets/image/
|
35
|
+
- url: /assets/image/module/attic/1920x1280/bootstrap-modal.jpg
|
36
36
|
alt: Bootstrap Framework Logo
|
37
37
|
---
|
38
38
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
title: Responsive Tables
|
3
3
|
title_extention: Responsive tables for J1 Template
|
4
|
-
tagline:
|
4
|
+
tagline: Present tables at its best
|
5
5
|
|
6
6
|
date: 2020-11-09
|
7
7
|
#last_modified: 2023-01-01
|
@@ -30,12 +30,12 @@ resources: []
|
|
30
30
|
resource_options:
|
31
31
|
- attic:
|
32
32
|
slides:
|
33
|
-
- url: /assets/image/
|
34
|
-
alt: Photo by
|
33
|
+
- url: /assets/image/module/attic/1920x1280/towfiqu-barbhuiya.jpg
|
34
|
+
alt: Photo by Towfiqu barbhuiya on Unsplash
|
35
35
|
badge:
|
36
36
|
type: unsplash
|
37
|
-
author:
|
38
|
-
href:
|
37
|
+
author: Towfiqu barbhuiya
|
38
|
+
href: https://unsplash.com/de/@towfiqu999999
|
39
39
|
---
|
40
40
|
|
41
41
|
// Page Initializer
|
@@ -89,7 +89,7 @@ a compromise. To fit the everyday needs for tables, viewed well on desktop
|
|
89
89
|
and mobile devices, two types of *responsive* tables are implemented by the
|
90
90
|
J1 Template system:
|
91
91
|
|
92
|
-
.Types of
|
92
|
+
.Types of Responsive Tables
|
93
93
|
[cols="3a,3a,6a", options="header", width="100%", role="rtable mt-4"]
|
94
94
|
|===
|
95
95
|
|Style |Type |Description
|
@@ -123,7 +123,7 @@ tablets.
|
|
123
123
|
|
124
124
|
|
125
125
|
[role="mt-5"]
|
126
|
-
== Bootstrap Tables
|
126
|
+
== Bootstrap Tables (striped)
|
127
127
|
|
128
128
|
Tables are widely used for documentation pages. Below, simple 2-column tables
|
129
129
|
are used to explain some of the Jekyll variables for templating your content
|
@@ -140,7 +140,7 @@ normally and do not scroll horizontally.
|
|
140
140
|
.Bootstrap using fixed text size `no-rtext`
|
141
141
|
[source, asciidoc, role="noclip"]
|
142
142
|
----
|
143
|
-
[cols="4a,8a", options="header", width="100%", role="table-responsive-md no-rtext"]
|
143
|
+
[cols="4a,8a", options="header", width="100%", role="table-striped table-responsive-md no-rtext"]
|
144
144
|
|===
|
145
145
|
|Variable |Description
|
146
146
|
|
@@ -157,7 +157,7 @@ depending upon what Liquid is being processed and what `page` is.
|
|
157
157
|
----
|
158
158
|
|
159
159
|
.Bootstrap, fixed text size `no-rtext`
|
160
|
-
[cols="4a,8a", options="header", width="100%", role="table-responsive-md no-rtext mt-4"]
|
160
|
+
[cols="4a,8a", options="header", width="100%", role="table-striped table-responsive-md no-rtext mt-4"]
|
161
161
|
|===
|
162
162
|
|Variable |Description
|
163
163
|
|
@@ -184,7 +184,7 @@ Post's front matter by specifying a new date/time in the format
|
|
184
184
|
.Bootstrap using responsive text size
|
185
185
|
[source, asciidoc, role="noclip"]
|
186
186
|
----
|
187
|
-
[cols="4a,8a", options="header", width="100%", role="table-responsive-md"]
|
187
|
+
[cols="4a,8a", options="header", width="100%", role="table-striped table-responsive-md"]
|
188
188
|
|===
|
189
189
|
|Variable |Description
|
190
190
|
|
@@ -198,7 +198,7 @@ depending upon what Liquid is being processed and what `page` is.
|
|
198
198
|
----
|
199
199
|
|
200
200
|
.Bootstrap, responsive text size
|
201
|
-
[cols="4a,8a", options="header", width="100%", role="table-responsive mt-4"]
|
201
|
+
[cols="4a,8a", options="header", width="100%", role="table-striped table-responsive mt-4"]
|
202
202
|
|===
|
203
203
|
|Variable |Description
|
204
204
|
|
@@ -219,7 +219,8 @@ Post's front matter by specifying a new date/time in the format
|
|
219
219
|
|===
|
220
220
|
|
221
221
|
[role="mt-4"]
|
222
|
-
|
222
|
+
[[rtables-striped]]
|
223
|
+
== Responsive Tables (striped)
|
223
224
|
|
224
225
|
Responsive tables *rebuild* a table. The header is set to invisible, and
|
225
226
|
all columns get vertically *stacked as rows*.
|
@@ -227,7 +228,7 @@ all columns get vertically *stacked as rows*.
|
|
227
228
|
.R Table using responsive text size
|
228
229
|
[source, asciidoc, role="noclip"]
|
229
230
|
----
|
230
|
-
[cols="4a,8a", options="header", width="100%", role="rtable"]
|
231
|
+
[cols="4a,8a", options="header", width="100%", role="table-striped rtable"]
|
231
232
|
|===
|
232
233
|
|Variable |Description
|
233
234
|
|
@@ -241,7 +242,7 @@ depending upon what Liquid is being processed and what `page` is.
|
|
241
242
|
----
|
242
243
|
|
243
244
|
.R Table, responsive text size
|
244
|
-
[cols="4a,8a", options="header", width="100%", role="rtable mt-4"]
|
245
|
+
[cols="4a,8a", options="header", width="100%", role="table-striped rtable mt-4"]
|
245
246
|
|===
|
246
247
|
|Variable |Description
|
247
248
|
|
@@ -261,7 +262,12 @@ Post's front matter by specifying a new date/time in the format
|
|
261
262
|
|
262
263
|
|===
|
263
264
|
|
264
|
-
|
265
|
+
|
266
|
+
[role="mt-4"]
|
267
|
+
[[rtables-not-striped]]
|
268
|
+
== Responsive Tables (NOT striped)
|
269
|
+
|
270
|
+
.R Table using fixed font size (no rtext)
|
265
271
|
[source, asciidoc, role="noclip"]
|
266
272
|
----
|
267
273
|
[cols="4a,8a", options="header", width="100%", role="rtable no-rtext"]
|
@@ -20,7 +20,7 @@ categories: [ Roundtrip ]
|
|
20
20
|
tags: [ Module, Typography ]
|
21
21
|
|
22
22
|
image:
|
23
|
-
path: /assets/image/
|
23
|
+
path: /assets/image/module/attic/1920x1280/bp-miller.jpg
|
24
24
|
width: 1920
|
25
25
|
height: 1280
|
26
26
|
|
@@ -35,12 +35,12 @@ resource_options:
|
|
35
35
|
transitionDuration: fast
|
36
36
|
resolutionRefreshRate: 500
|
37
37
|
slides:
|
38
|
-
- url: /assets/image/
|
39
|
-
alt: Photo by
|
38
|
+
- url: /assets/image/module/attic/1920x1280/bp-miller.jpg
|
39
|
+
alt: Photo by BP Miller on Unsplash
|
40
40
|
badge:
|
41
41
|
type: unsplash
|
42
|
-
author:
|
43
|
-
href: //unsplash.com/@
|
42
|
+
author: BP Miller
|
43
|
+
href: //unsplash.com/de/@bp_miller
|
44
44
|
---
|
45
45
|
|
46
46
|
// Page Initializer
|