j1_template_mde 2018.4.10
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +79 -0
- data/_includes/themes/j1/layouts/content_generator_app.html +34 -0
- data/_includes/themes/j1/layouts/content_generator_blog_archive.html +201 -0
- data/_includes/themes/j1/layouts/content_generator_collection.html +116 -0
- data/_includes/themes/j1/layouts/content_generator_page.html +116 -0
- data/_includes/themes/j1/layouts/content_generator_post.html +214 -0
- data/_includes/themes/j1/layouts/content_generator_raw.html +35 -0
- data/_includes/themes/j1/layouts/layout_metadata_generator.html +106 -0
- data/_includes/themes/j1/layouts/layout_module_generator.html +49 -0
- data/_includes/themes/j1/layouts/layout_resource_generator.html +53 -0
- data/_includes/themes/j1/layouts/layout_shim_generator.html +105 -0
- data/_includes/themes/j1/layouts/layout_theme_generator.html +105 -0
- data/_includes/themes/j1/modules/boards/news_pin_board.html +183 -0
- data/_includes/themes/j1/modules/connectors/ad/google-adsense +39 -0
- data/_includes/themes/j1/modules/connectors/ads +34 -0
- data/_includes/themes/j1/modules/connectors/analytic/google +42 -0
- data/_includes/themes/j1/modules/connectors/analytic/googleUA +44 -0
- data/_includes/themes/j1/modules/connectors/analytics +46 -0
- data/_includes/themes/j1/modules/connectors/comment/disqus.html +61 -0
- data/_includes/themes/j1/modules/connectors/comments +44 -0
- data/_includes/themes/j1/modules/connectors/sharing +36 -0
- data/_includes/themes/j1/modules/footers/boxes/about_box.proc +33 -0
- data/_includes/themes/j1/modules/footers/boxes/contacts_box.proc +55 -0
- data/_includes/themes/j1/modules/footers/boxes/legal_statements.proc +61 -0
- data/_includes/themes/j1/modules/footers/boxes/links_box.proc +38 -0
- data/_includes/themes/j1/modules/footers/boxes/news_box.proc +54 -0
- data/_includes/themes/j1/modules/footers/boxes/social_media_icons.proc +38 -0
- data/_includes/themes/j1/modules/footers/footer_light_generator.html +130 -0
- data/_includes/themes/j1/modules/headers/master_header_generator.html +140 -0
- data/_includes/themes/j1/modules/navigator/generator.html +170 -0
- data/_includes/themes/j1/modules/navigator/procedures/_unused/authclient.proc +139 -0
- data/_includes/themes/j1/modules/navigator/procedures/_unused/authclient.proc.org +217 -0
- data/_includes/themes/j1/modules/navigator/procedures/quicklinks.proc +97 -0
- data/_includes/themes/j1/modules/navigator/procedures/sidebar.proc +117 -0
- data/_includes/themes/j1/modules/navigator/procedures/topsearch.proc +115 -0
- data/_includes/themes/j1/procedures/collections/create_collection_article_preview.proc +68 -0
- data/_includes/themes/j1/procedures/global/_get_page_path.proc.new +80 -0
- data/_includes/themes/j1/procedures/global/_get_page_path.proc.org +68 -0
- data/_includes/themes/j1/procedures/global/collect_frontmatter_options.proc +62 -0
- data/_includes/themes/j1/procedures/global/create_bs_button.proc +126 -0
- data/_includes/themes/j1/procedures/global/create_word_cloud.proc +119 -0
- data/_includes/themes/j1/procedures/global/get_category.proc +60 -0
- data/_includes/themes/j1/procedures/global/get_category_item.proc +80 -0
- data/_includes/themes/j1/procedures/global/get_documents_dir.proc +67 -0
- data/_includes/themes/j1/procedures/global/get_page_path.proc +67 -0
- data/_includes/themes/j1/procedures/global/get_page_url.proc +55 -0
- data/_includes/themes/j1/procedures/global/pager.proc +79 -0
- data/_includes/themes/j1/procedures/global/select_color.proc +69 -0
- data/_includes/themes/j1/procedures/global/select_font_size.proc +86 -0
- data/_includes/themes/j1/procedures/global/select_icon_size.proc +72 -0
- data/_includes/themes/j1/procedures/global/select_location.proc +107 -0
- data/_includes/themes/j1/procedures/global/set_env_entry_document.proc +88 -0
- data/_includes/themes/j1/procedures/global/set_image_block.proc +50 -0
- data/_includes/themes/j1/procedures/global/setup.proc +61 -0
- data/_includes/themes/j1/procedures/layouts/content_writer.proc +107 -0
- data/_includes/themes/j1/procedures/layouts/default_writer.proc +160 -0
- data/_includes/themes/j1/procedures/layouts/module_writer.proc +170 -0
- data/_includes/themes/j1/procedures/layouts/resource_writer.proc +183 -0
- data/_includes/themes/j1/procedures/posts/_collate_timeline.proc +253 -0
- data/_includes/themes/j1/procedures/posts/collate_calendar.proc +224 -0
- data/_includes/themes/j1/procedures/posts/collate_list.proc +102 -0
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +219 -0
- data/_includes/themes/j1/procedures/posts/create_ad_block.proc +56 -0
- data/_includes/themes/j1/procedures/posts/create_series_header.proc +96 -0
- data/_layouts/_unused/default.html +347 -0
- data/_layouts/_unused/default.modal.html +291 -0
- data/_layouts/app.html +68 -0
- data/_layouts/blog_archive.html +60 -0
- data/_layouts/collection.html +68 -0
- data/_layouts/compress.html +52 -0
- data/_layouts/default.html +192 -0
- data/_layouts/home.html +80 -0
- data/_layouts/page.html +68 -0
- data/_layouts/paginator/autopage_category.html +79 -0
- data/_layouts/paginator/autopage_collection.html +159 -0
- data/_layouts/paginator/autopage_collections_tags.html +87 -0
- data/_layouts/paginator/autopage_tags.html +79 -0
- data/_layouts/post.html +68 -0
- data/_layouts/raw.html +71 -0
- data/_sass/README.md +16 -0
- data/assets/README.md +3 -0
- data/exe/j1 +26 -0
- data/lib/j1.rb +130 -0
- data/lib/j1/command.rb +23 -0
- data/lib/j1/commands/generate.rb +154 -0
- data/lib/j1/commands/help.rb +32 -0
- data/lib/j1/commands/module.rb +69 -0
- data/lib/j1/external.rb +59 -0
- data/lib/j1/log_adapter.rb +115 -0
- data/lib/j1/log_helper.rb +61 -0
- data/lib/j1/templates/posts/0000-00-00-welcome-to-j1-template.adoc.erb +60 -0
- data/lib/j1/utils.rb +330 -0
- data/lib/j1/utils/ansi.rb +59 -0
- data/lib/j1/utils/exec.rb +25 -0
- data/lib/j1/utils/platforms.rb +80 -0
- data/lib/j1/utils/win_tz.rb +73 -0
- data/lib/j1/version.rb +3 -0
- data/lib/j1_app.rb +69 -0
- data/lib/j1_app/j1_auth_manager/auth_manager.rb +418 -0
- data/lib/j1_app/j1_auth_manager/commands.rb +18 -0
- data/lib/j1_app/j1_auth_manager/config.rb +76 -0
- data/lib/j1_app/j1_auth_manager/helpers.rb +55 -0
- data/lib/j1_app/j1_auth_manager/helpers_disqus.rb +12 -0
- data/lib/j1_app/j1_auth_manager/helpers_facebook.rb +12 -0
- data/lib/j1_app/j1_auth_manager/helpers_github.rb +95 -0
- data/lib/j1_app/j1_auth_manager/helpers_patreon.rb +12 -0
- data/lib/j1_app/j1_auth_manager/helpers_twitter.rb +12 -0
- data/lib/j1_app/j1_auth_manager/warden_omniauth.rb +133 -0
- data/lib/j1_app/j1_site_manager/static_site.rb +16 -0
- data/lib/j1_app/omniauth/facebook/signed_request.rb +52 -0
- data/lib/j1_app/omniauth/strategies/_unused/doumart_patreon.rb +75 -0
- data/lib/j1_app/omniauth/strategies/_unused/my_patreon.rb +78 -0
- data/lib/j1_app/omniauth/strategies/disqus.rb +56 -0
- data/lib/j1_app/omniauth/strategies/facebook.rb +181 -0
- data/lib/j1_app/omniauth/strategies/github.rb +79 -0
- data/lib/j1_app/omniauth/strategies/patreon.rb +49 -0
- data/lib/j1_app/omniauth/strategies/twitter.rb +104 -0
- data/lib/j1_app/sinatra/extras/cookies.rb +282 -0
- data/lib/j1_app/sinatra/extras/index.rb +33 -0
- data/lib/starter_web/Gemfile +180 -0
- data/lib/starter_web/_config.yml +962 -0
- data/lib/starter_web/_data/apps/_unused/j1_colorbox.yml +100 -0
- data/lib/starter_web/_data/apps/_unused/j1_tocbot.yml +156 -0
- data/lib/starter_web/_data/apps/j1_bootstrap_gallery.yml +167 -0
- data/lib/starter_web/_data/apps/j1_carousel.yml +501 -0
- data/lib/starter_web/_data/apps/j1_justified_gallery.yml +229 -0
- data/lib/starter_web/_data/apps/j1_light_gallery.yml +105 -0
- data/lib/starter_web/_data/apps/j1_lightbox.yml +163 -0
- data/lib/starter_web/_data/apps/j1_link_checker.yml +21 -0
- data/lib/starter_web/_data/asciidoc2pdf/default-theme.yml +391 -0
- data/lib/starter_web/_data/asciidoc2pdf/j1-theme.yml +53 -0
- data/lib/starter_web/_data/builder/blog_navigator.yml +203 -0
- data/lib/starter_web/_data/j1_categories.yml +31 -0
- data/lib/starter_web/_data/j1_colors.yml +607 -0
- data/lib/starter_web/_data/j1_config.yml +203 -0
- data/lib/starter_web/_data/j1_font_sizes.yml +25 -0
- data/lib/starter_web/_data/j1_i18n.yml +18 -0
- data/lib/starter_web/_data/j1_resources.yml +631 -0
- data/lib/starter_web/_data/known_issues/windows/cacert.pem +3314 -0
- data/lib/starter_web/_data/layouts/app.yml +154 -0
- data/lib/starter_web/_data/layouts/blog_archive.yml +155 -0
- data/lib/starter_web/_data/layouts/collection.yml +157 -0
- data/lib/starter_web/_data/layouts/default.yml +230 -0
- data/lib/starter_web/_data/layouts/home.yml +203 -0
- data/lib/starter_web/_data/layouts/page.yml +154 -0
- data/lib/starter_web/_data/layouts/post.yml +164 -0
- data/lib/starter_web/_data/layouts/raw.yml +154 -0
- data/lib/starter_web/_data/modules/_unused/j1_navigator.yml +195 -0
- data/lib/starter_web/_data/modules/_unused/j1_navigator_menu.yml +317 -0
- data/lib/starter_web/_data/modules/j1_back2top.yml +120 -0
- data/lib/starter_web/_data/modules/j1_banner.yml +248 -0
- data/lib/starter_web/_data/modules/j1_cookiebar.yml +65 -0
- data/lib/starter_web/_data/modules/j1_footer.yml +128 -0
- data/lib/starter_web/_data/modules/j1_header.yml +201 -0
- data/lib/starter_web/_data/modules/j1_iframe_resizer.yml +234 -0
- data/lib/starter_web/_data/modules/j1_jekyll_search.yml +112 -0
- data/lib/starter_web/_data/modules/j1_log4javascript.yml +98 -0
- data/lib/starter_web/_data/modules/j1_navigator.yml +218 -0
- data/lib/starter_web/_data/modules/j1_navigator_menu.yml +265 -0
- data/lib/starter_web/_data/modules/j1_panel.yml +688 -0
- data/lib/starter_web/_data/modules/j1_parallax.yml +87 -0
- data/lib/starter_web/_data/modules/j1_sign_in_up.yml +18 -0
- data/lib/starter_web/_data/modules/j1_smooth_scroll.yml +122 -0
- data/lib/starter_web/_data/modules/j1_theme_switcher.yml +139 -0
- data/lib/starter_web/_data/modules/j1_toccer.yml +155 -0
- data/lib/starter_web/_data/pages/builder.yml +82 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/admonition-block-answer.rb +48 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/admonition-block-question.rb +48 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/carousel-block.rb +45 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/gist-block.rb +52 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/lightbox-block.rb +85 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/lorem-inline.rb +65 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/shout-block.rb +47 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/twitter-emoji-inline.rb +69 -0
- data/lib/starter_web/_plugins/debug.rb +64 -0
- data/lib/starter_web/_plugins/filters.rb +307 -0
- data/lib/starter_web/_plugins/prettify.rb +45 -0
- data/lib/starter_web/_plugins/simple_search_filter.rb +33 -0
- data/lib/starter_web/_plugins/symlink_watcher.rb +53 -0
- data/lib/starter_web/_rack/Procfile.nginx +1 -0
- data/lib/starter_web/_rack/Procfile.webrick +1 -0
- data/lib/starter_web/_rack/Rakefile +6 -0
- data/lib/starter_web/_rack/config.ru +7 -0
- data/lib/starter_web/_rack/dot.env +48 -0
- data/lib/starter_web/_rack/dot.gitignore +34 -0
- data/lib/starter_web/_rack/heroku.config_set +12 -0
- data/lib/starter_web/_rack/puma.rb +200 -0
- data/lib/starter_web/_sass/README.md +16 -0
- data/lib/starter_web/apps/calendar/index.adoc +71 -0
- data/lib/starter_web/apps/link_checker/index.html +24 -0
- data/lib/starter_web/assets/apps/link-checker/assets/img/main/img22.jpg +0 -0
- data/lib/starter_web/assets/apps/link-checker/assets/img/main/img22.png +0 -0
- data/lib/starter_web/assets/apps/link-checker/index.html +125 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/css/bootstrap.min.css +1560 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/js/bootstrap.min.js +7 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/LICENSE.md +11 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/README.md +105 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/css/font-awesome.css +2337 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/css/font-awesome.min.css +4 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/FontAwesome.otf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.eot +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.svg +2671 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.woff +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/How_to_use_webfonts.html +230 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular-demo.html +372 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.eot +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.svg +621 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.woff +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/Roboto-Regular-cleartype.png +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/grid_12-825-55-15.css +129 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/specimen_stylesheet.css +396 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/stylesheet.css +12 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/css/link-checker.css +87 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/backbone.1.3.2.js +1920 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/backbone.min.js +37 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/html5shiv.min.js +4 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/iframeResizer.contentWindow.min.js +9 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/jquery.min.js +6 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/jsuri-1.1.1.min.js +2 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/link-checker.js +333 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/underscore.min.js +31 -0
- data/lib/starter_web/assets/data/animate.json +120 -0
- data/lib/starter_web/assets/data/ascii_code_table.json +1794 -0
- data/lib/starter_web/assets/data/authclient.html +371 -0
- data/lib/starter_web/assets/data/banner.html +350 -0
- data/lib/starter_web/assets/data/carousel.json +95 -0
- data/lib/starter_web/assets/data/colors.json +42 -0
- data/lib/starter_web/assets/data/font_sizes.json +42 -0
- data/lib/starter_web/assets/data/fontawesome_icons.json +5525 -0
- data/lib/starter_web/assets/data/footer.html +230 -0
- data/lib/starter_web/assets/data/galleries.json +143 -0
- data/lib/starter_web/assets/data/mdi_icons.json +14324 -0
- data/lib/starter_web/assets/data/menu.html +470 -0
- data/lib/starter_web/assets/data/objects.json +458 -0
- data/lib/starter_web/assets/data/panel.html +529 -0
- data/lib/starter_web/assets/data/search.json +114 -0
- data/lib/starter_web/assets/data/themes.json +59 -0
- data/lib/starter_web/assets/data/twa_v1.json +6978 -0
- data/lib/starter_web/assets/data/twa_v2.json +12812 -0
- data/lib/starter_web/assets/images/backgrounds/bg-1.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-2.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-3.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-4.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-7.jpg +0 -0
- data/lib/starter_web/assets/images/blog/featured/img3.jpg +0 -0
- data/lib/starter_web/assets/images/blog/featured/jekyll.1200x400.png +0 -0
- data/lib/starter_web/assets/images/blog/featured/jekyll.png +0 -0
- data/lib/starter_web/assets/images/blog/featured/staticgen.jpg +0 -0
- data/lib/starter_web/assets/images/blog/featured/what-is-a-baseurl.jpg +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/j1_docker_banner.1280x500.png +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/kinematic_alpha.1280x600.png +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/kinematic_j1.1280x300.png +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/windows_docker_banner.1280x500.png +0 -0
- data/lib/starter_web/assets/images/blog/wikipedia/columbia-river.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/blog/wikipedia/minneapolis.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/blog/wikipedia/narcise-snake-pits.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-1.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-2.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-3.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-4.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-5.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-6.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-7.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-8.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-1.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-2.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-3.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-4.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-5.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6791628438_affaa19e10_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6798453217_72dea2d06e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6806687375_07d2b7a1f9_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6840627709_92ed52fb41_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6876412479_6268c6e2aa_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6880502467_d4b3c4b2a8_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/13824322785_104dc0968c_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/13824674674_ca1e482394_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/16961685188_f130144d60_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/23753792354_bd75d8dabc_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/24014174029_2cfa940264_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/24096687789_c37d45712f_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6791628438_affaa19e10_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6798453217_72dea2d06e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6806687375_07d2b7a1f9_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6812090617_5fd5bbdda0_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6840627709_92ed52fb41_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6841267340_855273fd7e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6876412479_6268c6e2aa_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6880502467_d4b3c4b2a8_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6916180091_9c9559e463_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7002395006_29fdc85f7a_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7062575651_b23918b11a_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7822678460_ee98ff1f69_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7948632554_01f6ae6b6f_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8157236803_78aa1698b6_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8400794773_932654a20e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8811828736_88392f614a_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8842312290_f310d491f4_b.jpg +0 -0
- data/lib/starter_web/assets/images/icons/asciidoc/logo-512x512.png +0 -0
- data/lib/starter_web/assets/images/icons/bootstrap/bootstrap-solid-32x32.png +0 -0
- data/lib/starter_web/assets/images/icons/bootstrap/bs-docs-masthead-pattern.png +0 -0
- data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-outline.svg +20 -0
- data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-punchout.svg +18 -0
- data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-solid.svg +17 -0
- data/lib/starter_web/assets/images/icons/components/angular.ui.png +0 -0
- data/lib/starter_web/assets/images/icons/components/angularjs.png +0 -0
- data/lib/starter_web/assets/images/icons/components/aws.png +0 -0
- data/lib/starter_web/assets/images/icons/components/bootstrap.png +0 -0
- data/lib/starter_web/assets/images/icons/components/c9.png +0 -0
- data/lib/starter_web/assets/images/icons/components/chai.png +0 -0
- data/lib/starter_web/assets/images/icons/components/emmet.png +0 -0
- data/lib/starter_web/assets/images/icons/components/express.png +0 -0
- data/lib/starter_web/assets/images/icons/components/git.png +0 -0
- data/lib/starter_web/assets/images/icons/components/github.png +0 -0
- data/lib/starter_web/assets/images/icons/components/gulp.png +0 -0
- data/lib/starter_web/assets/images/icons/components/heroku.png +0 -0
- data/lib/starter_web/assets/images/icons/components/htmlcss-1.png +0 -0
- data/lib/starter_web/assets/images/icons/components/htmlcss-2.png +0 -0
- data/lib/starter_web/assets/images/icons/components/jasmine.png +0 -0
- data/lib/starter_web/assets/images/icons/components/javascript.png +0 -0
- data/lib/starter_web/assets/images/icons/components/jquery.png +0 -0
- data/lib/starter_web/assets/images/icons/components/kanban.png +0 -0
- data/lib/starter_web/assets/images/icons/components/leanux.png +0 -0
- data/lib/starter_web/assets/images/icons/components/linkedin.png +0 -0
- data/lib/starter_web/assets/images/icons/components/mean.png +0 -0
- data/lib/starter_web/assets/images/icons/components/mongodb.png +0 -0
- data/lib/starter_web/assets/images/icons/components/node.png +0 -0
- data/lib/starter_web/assets/images/icons/components/postgresql.png +0 -0
- data/lib/starter_web/assets/images/icons/components/protractor.png +0 -0
- data/lib/starter_web/assets/images/icons/components/rails.png +0 -0
- data/lib/starter_web/assets/images/icons/components/ruby.png +0 -0
- data/lib/starter_web/assets/images/icons/components/sass.png +0 -0
- data/lib/starter_web/assets/images/icons/components/scrum.png +0 -0
- data/lib/starter_web/assets/images/icons/components/twitter.png +0 -0
- data/lib/starter_web/assets/images/icons/j1/favicon.ico +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1-32x32.ico +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1-512x512.png +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1-64x64.png +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1.ico +0 -0
- data/lib/starter_web/assets/images/icons/j1/scalable/j1.svg +2037 -0
- data/lib/starter_web/assets/images/icons/social/amazon.png +0 -0
- data/lib/starter_web/assets/images/icons/social/behance.png +0 -0
- data/lib/starter_web/assets/images/icons/social/blogger.png +0 -0
- data/lib/starter_web/assets/images/icons/social/deviantart.png +0 -0
- data/lib/starter_web/assets/images/icons/social/dribbble.png +0 -0
- data/lib/starter_web/assets/images/icons/social/dropbox.png +0 -0
- data/lib/starter_web/assets/images/icons/social/evernote.png +0 -0
- data/lib/starter_web/assets/images/icons/social/facebook.png +0 -0
- data/lib/starter_web/assets/images/icons/social/forrst.png +0 -0
- data/lib/starter_web/assets/images/icons/social/github.png +0 -0
- data/lib/starter_web/assets/images/icons/social/googleplus.png +0 -0
- data/lib/starter_web/assets/images/icons/social/instagram.png +0 -0
- data/lib/starter_web/assets/images/icons/social/jolicloud.png +0 -0
- data/lib/starter_web/assets/images/icons/social/last-fm.png +0 -0
- data/lib/starter_web/assets/images/icons/social/linkedin.png +0 -0
- data/lib/starter_web/assets/images/icons/social/picasa.png +0 -0
- data/lib/starter_web/assets/images/icons/social/pintrest.png +0 -0
- data/lib/starter_web/assets/images/icons/social/rss.png +0 -0
- data/lib/starter_web/assets/images/icons/social/skype.png +0 -0
- data/lib/starter_web/assets/images/icons/social/spotify.png +0 -0
- data/lib/starter_web/assets/images/icons/social/stumbleupon.png +0 -0
- data/lib/starter_web/assets/images/icons/social/tumblr.png +0 -0
- data/lib/starter_web/assets/images/icons/social/twitter.png +0 -0
- data/lib/starter_web/assets/images/icons/social/vimeo.png +0 -0
- data/lib/starter_web/assets/images/icons/social/vk.png +0 -0
- data/lib/starter_web/assets/images/icons/social/wordpress.png +0 -0
- data/lib/starter_web/assets/images/icons/social/xing.png +0 -0
- data/lib/starter_web/assets/images/icons/social/yahoo.png +0 -0
- data/lib/starter_web/assets/images/icons/social/youtube.png +0 -0
- data/lib/starter_web/assets/images/lightbox/close.png +0 -0
- data/lib/starter_web/assets/images/lightbox/loading.gif +0 -0
- data/lib/starter_web/assets/images/lightbox/next.png +0 -0
- data/lib/starter_web/assets/images/lightbox/prev.png +0 -0
- data/lib/starter_web/assets/images/master_header/aaron-burden-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/alexey-ruban-slider.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/chuttersnap-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/clark-tibbs-do-something.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/docker_banner_l.1280x500.png +0 -0
- data/lib/starter_web/assets/images/master_header/docker_banner_r.1280x500.png +0 -0
- data/lib/starter_web/assets/images/master_header/homehead-default-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/ideas-start-here.1200x800.png +0 -0
- data/lib/starter_web/assets/images/master_header/ideas-start-here.1920x1200.png +0 -0
- data/lib/starter_web/assets/images/master_header/ideas-start-here.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/maarten-van-den-heuvel-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/pagehead-default-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/stefan-stefancik-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/water-journal-1200.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/avatar.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/bg7.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/blog1.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/blog5.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/blog6.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-blog2.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-blog3.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-profile1.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-profile4.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-profile5-square.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/kendall.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/kendall.png +0 -0
- data/lib/starter_web/assets/images/md-kit/marc.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/office1.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_01.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_02.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_03.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_04.jpg +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/001_menubar_example.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/005_navbar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/005_navigation_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/006_navigation_side_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/006_searchbar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/007_sidebar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/008_navbar_blank.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/010_nav_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/010_top_search.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/012_top_search.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/015_quicklink_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/017_side_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/020_menu_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/2-tier-architecture-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/3-tier-architecture-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/download_image_create_starter.800x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-icon.1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-signin.1280x700.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-signout.1280x700.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-disqus-comment-dialog.1280x500.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1_development_system-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1_runtime_system-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/rack_based_web_app-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/rack_based_web_app.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/run_container_build_start_web.800x400.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/run_starter_web.800x700.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/130_layout_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/content_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/content_inheritance_thumb.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/html_layout.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1-quickstart-windows.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1-template-theme.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1_layout.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/jekyll-minima-theme.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/lane_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/layout_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/modals/01_frame_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/modals/02_site_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/modals/03_central_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/modals/04_fluid_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/previewer/bs-color-palette.png +0 -0
- data/lib/starter_web/assets/images/pages/previewer/material-design-color-palette.jpg +0 -0
- data/lib/starter_web/assets/images/pages/previewer/material-design-color-palette.png +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-1.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-2.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-3.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-4.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-5.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/tables-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-1.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-2.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-3.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-4.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-5.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/cards-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/icon-fonts-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/meeting.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/theme-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/typography-1920.jpg +0 -0
- data/lib/starter_web/assets/images/patterns/1x1.png +0 -0
- data/lib/starter_web/assets/images/patterns/gridtile.png +0 -0
- data/lib/starter_web/assets/images/quotes/default.png +0 -0
- data/lib/starter_web/assets/images/quotes/people.png +0 -0
- data/lib/starter_web/assets/images/spinner/loader1.gif +0 -0
- data/lib/starter_web/assets/images/spinner/loader2.gif +0 -0
- data/lib/starter_web/assets/images/widescreen/featured-1920x800.jpg +0 -0
- data/lib/starter_web/assets/images/widescreen/people.jpg +0 -0
- data/lib/starter_web/assets/themes/j1/core/css/bootstrap.css +6328 -0
- data/lib/starter_web/assets/themes/j1/core/css/bootstrap.min.css +6 -0
- data/lib/starter_web/assets/themes/j1/core/css/custom.scss +28 -0
- data/lib/starter_web/assets/themes/j1/core/css/theme_extensions.css +3333 -0
- data/lib/starter_web/assets/themes/j1/core/css/theme_extensions.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/core/css/uno.css +11580 -0
- data/lib/starter_web/assets/themes/j1/core/css/uno.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/core/css/uno.scss +28 -0
- data/lib/starter_web/assets/themes/j1/core/css/vendor.css +34598 -0
- data/lib/starter_web/assets/themes/j1/core/css/vendor.min.css +8 -0
- data/lib/starter_web/assets/themes/j1/core/css/vendor.scss +28 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.svg +990 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.svg +363 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.svg +1413 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.json +26790 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.yml +9088 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.json +2302 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.yml +292 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.svg +6369 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/license.md +97 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.json +8186 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.yml +5857 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/OpenSansEmoji.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Black.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BlackItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BoldItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Italic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-LightItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-MediumItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-ThinItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold-ascii.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold_italic-ascii.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-italic-ascii.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-regular-ascii-conums.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1p-regular-fallback.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold_italic-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-italic-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-regular-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/back2top.js +141 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/bs_gallery.js +282 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/cookiebar.js +112 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/custom.js +92 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/iframer.js +99 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/lightbox.js +95 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/logger.js +153 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/master_header.js +488 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/navigator.js +687 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/scroller.js +110 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/searcher.js +111 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/switcher.js +113 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/template.js +608 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/toccer.js +295 -0
- data/lib/starter_web/assets/themes/j1/core/js/template.js +79 -0
- data/lib/starter_web/assets/themes/j1/core/js/template.js.map +1 -0
- data/lib/starter_web/assets/themes/j1/core/js/template.min.js +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel.css +81 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel_transitions.css +184 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel_transitions.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.css +190 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/ajax-loader.gif +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/grabbing.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/owl-logo.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/owl.video.play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/js/carousel.js +1517 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/js/carousel.min.js +57 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/js/j1_adapter_carousel.js +228 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_asc.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_asc_disabled.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_both.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_desc.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_desc_disabled.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/datatables.css +1113 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/datatables.min.css +136 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/theme/uno.css +473 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/js/datatables.js +95360 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/js/datatables.min.js +533 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.absolute.html +86 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.content.html +58 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.hover.html +51 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.nested.html +68 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.textarea.html +46 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.tolerance.html +79 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/index.html +70 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/two.html +71 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.js +1104 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.map +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.min.js +10 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.css +103 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.min.css +8 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/theme/uno.css +23 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/j1_adapter_justified_gallery.js +262 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.3.6.3.js +1145 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.js +1147 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.min.js +9 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/less/.csslintrc +19 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/less/justifiedGallery.less +113 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-fb-comment-box.css +57 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-fb-comment-box.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-transitions.css +777 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-transitions.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lightgallery.css +980 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lightgallery.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/theme/uno.css +330 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.eot +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.svg +47 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.woff +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/animation-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/customize-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/dynamic-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/facebook-icon.svg +10 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/googleplus-icon.svg +30 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/html5-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/linked-in.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/module-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/play-button.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/responsive-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/thumb-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/touch-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/twitter-icon.svg +15 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/twitter.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/video1-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/zoom-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/zoom.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/loading.gif +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/video-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/vimeo-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/youtube-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-autoplay.js +206 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-autoplay.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-fullscreen.js +116 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-fullscreen.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-hash.js +101 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-hash.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-pager.js +105 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-pager.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-share.js +107 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-share.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-thumbnail.js +478 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-thumbnail.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-video.js +331 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-video.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-zoom.js +527 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-zoom.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lightgallery.js +1364 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lightgallery.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.dark/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.light/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai.dark/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai.light/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized.dark/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized.light/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/colorful/theme.css +170 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/github/theme.css +209 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox.dark/theme.css +84 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox.light/theme.css +84 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox/theme.css +84 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/igorpro/theme.css +32 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/molokai/theme.css +208 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/monokai.sublime/theme.css +187 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/monokai/theme.css +210 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/pastie/theme.css +146 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/thankful_eyes/theme.css +173 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/tulip/theme.css +164 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/font/vjs.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/font/vjs.woff +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.4.12.15.css +1011 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.4.12.15.min.css +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/js/video.4.12.15.min.js +203 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo_player/js/froogaloop2.min.js +4 -0
- data/lib/starter_web/assets/videos/gallery/video1-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video1-thumb.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video2-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video2-thumb.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_adele-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_gaga-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_gwen-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_michelle-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/headers/still/underground-broadway.png +0 -0
- data/lib/starter_web/assets/videos/headers/still/victoria-oskolovich-on-vimeo.png +0 -0
- data/lib/starter_web/collections/_biography/a-life-in-questions.adoc +76 -0
- data/lib/starter_web/collections/_biography/born-to-run.adoc +73 -0
- data/lib/starter_web/collections/_biography/forty-autumns.adoc +70 -0
- data/lib/starter_web/collections/_biography/not-dead-yet.adoc +64 -0
- data/lib/starter_web/collections/_biography/princess-diarist-the.adoc +67 -0
- data/lib/starter_web/collections/_biography/when-breath-becomes-air.adoc +68 -0
- data/lib/starter_web/collections/_fantasy/harry-potter-deathly-hallows.adoc +59 -0
- data/lib/starter_web/collections/_fantasy/harry-potter-philosophers-stone.adoc +59 -0
- data/lib/starter_web/collections/_fantasy/mistborn-trilogy.adoc +57 -0
- data/lib/starter_web/collections/_fantasy/ready-player-one.adoc +58 -0
- data/lib/starter_web/collections/_fantasy/sword-of-destiny.adoc +57 -0
- data/lib/starter_web/collections/_fantasy/terry-pratchet-diary-2017.adoc +55 -0
- data/lib/starter_web/collections/_featured/static-site-generators.adoc +43 -0
- data/lib/starter_web/collections/_romance/breath-of-snow-and-ashes-a.adoc +62 -0
- data/lib/starter_web/collections/_romance/dressmaker-the.adoc +56 -0
- data/lib/starter_web/collections/_romance/fiery-cross-the.adoc +64 -0
- data/lib/starter_web/collections/_romance/it-ends-with-us.adoc +61 -0
- data/lib/starter_web/collections/_romance/outlander-novel.adoc +73 -0
- data/lib/starter_web/collections/_romance/virgins-outlander-short-story.adoc +57 -0
- data/lib/starter_web/collections/posts/featured/_posts/0000-00-00-welcome-to-j1-template.adoc.erb +60 -0
- data/lib/starter_web/collections/posts/featured/_posts/000_includes/attributes.asciidoc +15 -0
- data/lib/starter_web/collections/posts/featured/_posts/2017-05-01-confusion-about-base-url.adoc +102 -0
- data/lib/starter_web/collections/posts/featured/_posts/2017-06-01-top-open-source-static-site-generators.adoc +79 -0
- data/lib/starter_web/collections/posts/featured/_posts/2017-07-01-what-is-a-static-site.adoc +146 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/attributes.asciidoc +66 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/documents/100-docker-using-shared-folders.asciidoc +415 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/documents/loop.sh +28 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/tables/debug_variables.asciidoc +47 -0
- data/lib/starter_web/collections/posts/series/_posts/2018-11-01-docker-using-shared-folders.adoc +94 -0
- data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-20-minneapolis.adoc +112 -0
- data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-24-narcisse-snake-pits.adoc +81 -0
- data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-26-columbia-river.adoc +68 -0
- data/lib/starter_web/favicon.ico +0 -0
- data/lib/starter_web/index.html +57 -0
- data/lib/starter_web/package.json +104 -0
- data/lib/starter_web/pages/about/about_site.adoc +40 -0
- data/lib/starter_web/pages/about/about_you.adoc +103 -0
- data/lib/starter_web/pages/blog/navigator/archive.html +97 -0
- data/lib/starter_web/pages/blog/navigator/archive_by_category.html +135 -0
- data/lib/starter_web/pages/blog/navigator/archive_by_date.html +115 -0
- data/lib/starter_web/pages/blog/navigator/archive_by_tag.html +168 -0
- data/lib/starter_web/pages/blog/navigator/index.html +41 -0
- data/lib/starter_web/pages/bookshelf/100_about_jekyll_collections.adoc +264 -0
- data/lib/starter_web/pages/bookshelf/200_book_shelf_biography.adoc +41 -0
- data/lib/starter_web/pages/bookshelf/300_book_shelf_fantasy.adoc +43 -0
- data/lib/starter_web/pages/bookshelf/400_book_shelf_romance.adoc +43 -0
- data/lib/starter_web/pages/legal/de/100_impress.adoc +80 -0
- data/lib/starter_web/pages/legal/de/200_terms_of_use.adoc +48 -0
- data/lib/starter_web/pages/legal/de/300_privacy.adoc +233 -0
- data/lib/starter_web/pages/legal/de/400_license_agreement.adoc +388 -0
- data/lib/starter_web/pages/legal/de/500_support.adoc +13 -0
- data/lib/starter_web/pages/legal/en/100_impress.adoc +80 -0
- data/lib/starter_web/pages/legal/en/200_terms_of_use.adoc +44 -0
- data/lib/starter_web/pages/legal/en/300_privacy.adoc +269 -0
- data/lib/starter_web/pages/legal/en/400_license_agreement.adoc +430 -0
- data/lib/starter_web/pages/legal/en/500_support.adoc +13 -0
- data/lib/starter_web/pages/panel/100_intro_panel.adoc +151 -0
- data/lib/starter_web/pages/previewer/000_includes/attributes.asciidoc +75 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/100_absolute_sizes.asciidoc +39 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc +47 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/120_relative_sizes.asciidoc +87 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/200_rotate.asciidoc +71 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/300_flip.asciidoc +30 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/400_spin_pulsed.asciidoc +39 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/500_bw_color_palette.asciidoc +60 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/510_bs_color_palette.asciidoc +54 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/600_md_color_palette.asciidoc +94 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/601_md_color_palette_indigo.asciidoc +94 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/602_md_color_palette_pink.asciidoc +94 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc +46 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/100_relative_sizes.asciidoc +46 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/200_rotate.asciidoc +70 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/300_flip.asciidoc +29 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/400_spin_pulsed.asciidoc +30 -0
- data/lib/starter_web/pages/previewer/bootstrap_theme.adoc +1820 -0
- data/lib/starter_web/pages/previewer/justified_gallery.html +353 -0
- data/lib/starter_web/pages/previewer/mdi_icons_preview.adoc +314 -0
- data/lib/starter_web/pages/previewer/twitter_emoji_preview.adoc +181 -0
- data/lib/starter_web/pages/start/000_includes/attributes.asciidoc +30 -0
- data/lib/starter_web/pages/start/change_me_first.adoc +54 -0
- data/lib/starter_web/pages/start/dm920hd.adoc +467 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/attributes.asciidoc +72 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/documents/200_library_features.asciidoc +285 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/001_menu_bar_example.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/005_navbar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/005_navigation_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/006_navigation_side_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/006_searchbar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/007_sidebar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/008_navbar_blank.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/010_nav_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/010_top_search.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/012_top_search.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/015_quicklink_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/017_side_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/020_menu_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/400_master_header.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/410_text_header.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/411_text_header.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/412_header_anatomy.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/415_image_header_caption.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/snagit/412_header_anatomy.snag +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/000_text_sizes.asciidoc +50 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/410_common_header_parameters.asciidoc +120 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/420_common_image_header_parameters.asciidoc +52 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/421_additional_image_header_parameters.asciidoc +36 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/430_video_header_parameters.asciidoc +26 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/440_image_and_video_transitions.asciidoc +36 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/450_image_and_video_header_defaults.asciidoc +82 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/451_additional_image_and_video_header_defaults.asciidoc +23 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/100_header.adoc +452 -0
- data/lib/starter_web/pages/start/documentation/user_guide/240_auth_manager/000_includes/attributes.asciidoc +119 -0
- data/lib/starter_web/pages/start/documentation/user_guide/240_auth_manager/100_auth_manager.adoc +539 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/000_includes/attributes.asciidoc +26 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/000_includes/tables/100_quickstart_installation_packages.asciidoc +20 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/100_linux_starter.adoc +566 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/200_macos_starter.adoc +742 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/300_windows_starter.adoc +742 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/quickstart.adoc +104 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/attributes.asciidoc +24 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/collections.adoc +268 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/configuration.adoc +780 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/directory_structure.adoc +106 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/jekyll_commandline.adoc +94 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/layout_inheritance.adoc +305 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/manage_pages.adoc +365 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/manage_posts.adoc +203 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/pagination.adoc +228 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/plugins.adoc +777 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/templates.adoc +249 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/variables.adoc +175 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/100_introduction.adoc +169 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/110_preparations.adoc +177 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/120_getting_started.adoc +180 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/20_j1_anatomy.asciidoc +97 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/30_j1_configure_your_site.asciidoc +48 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/40_j1_create_content.asciidoc +48 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/50_j1_customize_your_pages.asciidoc +48 -0
- data/lib/starter_web/pages/start/read_me_first.adoc +102 -0
- data/lib/starter_web/pages/start/roundtrip/000_includes/attributes.asciidoc +49 -0
- data/lib/starter_web/pages/start/roundtrip/000_includes/documents/100_gistblock.asciidoc +27 -0
- data/lib/starter_web/pages/start/roundtrip/100_present_images.adoc +411 -0
- data/lib/starter_web/pages/start/roundtrip/200_cards.adoc +769 -0
- data/lib/starter_web/pages/start/roundtrip/300_typography.adoc +518 -0
- data/lib/starter_web/pages/start/roundtrip/400_icon_fonts.adoc +182 -0
- data/lib/starter_web/pages/start/roundtrip/500_asciidoc_extensions.adoc +462 -0
- data/lib/starter_web/pages/start/roundtrip/600_themes.adoc +75 -0
- data/lib/starter_web/pages/start/roundtrip/700_additional_modals.adoc +1369 -0
- data/lib/starter_web/pages/teaser/100_core.adoc +31 -0
- data/lib/starter_web/pages/teaser/200_components.adoc +30 -0
- data/lib/starter_web/pages/teaser/300_modules.adoc +32 -0
- data/screenshot.png +0 -0
- metadata +925 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
[cols="3,2,2,5",options="header", role="table-responsive mt-3"]
|
|
2
|
+
|=======================================================================
|
|
3
|
+
|Parameter |Type |Default |Description
|
|
4
|
+
|
|
5
|
+
|`background_color`
|
|
6
|
+
|Hash
|
|
7
|
+
|
|
|
8
|
+
|The *background_color hash* contains a pair of colors to control the header
|
|
9
|
+
background as a gradient.
|
|
10
|
+
|
|
11
|
+
|`background_color.color_1`
|
|
12
|
+
|Symbolic color \| RGB valuess
|
|
13
|
+
|`md_indigo`
|
|
14
|
+
|Start value (color) for the gradient used for the header box background.
|
|
15
|
+
Alternatively, the color can be configured as (hexadecimal) RGB valuess of
|
|
16
|
+
the form `#RRGGBB`
|
|
17
|
+
|
|
18
|
+
|`background_color.color_2`
|
|
19
|
+
|Symbolic color \| RGB valuess
|
|
20
|
+
|`md_indigo`
|
|
21
|
+
|End value (color) for the gradient used for the header box background.
|
|
22
|
+
Alternatively, the color can be configured as (hexadecimal) RGB valuess of
|
|
23
|
+
the form `#RRGGBB`
|
|
24
|
+
|
|
25
|
+
|`margin_bottom`
|
|
26
|
+
|Integer
|
|
27
|
+
|`50`
|
|
28
|
+
|Determine the distance, measured in pixel (px) from bottom position of the
|
|
29
|
+
the *header box* to the first position of the following content
|
|
30
|
+
|
|
31
|
+
|`padding_bottom`
|
|
32
|
+
|Integer
|
|
33
|
+
|`50`
|
|
34
|
+
|Determines the distance, measured in pixel (px), from bottom position of the
|
|
35
|
+
the *overlay container* to the bottom of the header box. In combination with
|
|
36
|
+
`padding_top` the total size of the header box is determined.
|
|
37
|
+
|
|
38
|
+
|`padding_top`
|
|
39
|
+
|Integer
|
|
40
|
+
|`200`
|
|
41
|
+
|Determines the distance, measured in pixel (px), from top position of the
|
|
42
|
+
page and the *overlay container* that contains the title and tagline. In
|
|
43
|
+
combination with `padding_bottom` the total size of the header box is
|
|
44
|
+
determined.
|
|
45
|
+
|
|
46
|
+
|`raised_level`
|
|
47
|
+
|integer
|
|
48
|
+
|`15`
|
|
49
|
+
|Uplifting of the header element. Valid values are out of `[ 0 .. 24]`.
|
|
50
|
+
As higher the number as more the header is uplifted.
|
|
51
|
+
|
|
52
|
+
|`tagline`
|
|
53
|
+
|Hash
|
|
54
|
+
|n/a
|
|
55
|
+
|The *tagline hash* contains all name\|value pairs to control how the page
|
|
56
|
+
*tagline* is appears with the header
|
|
57
|
+
|
|
58
|
+
|`tagline.align`
|
|
59
|
+
|Position name (CSS)
|
|
60
|
+
|`left`
|
|
61
|
+
|Alignment of the tagline inside the overlay-container. Valid values are out of
|
|
62
|
+
`left` \| `center` \| `right`
|
|
63
|
+
|
|
64
|
+
|`tagline.animate`
|
|
65
|
+
|String
|
|
66
|
+
|`fadeInRight`
|
|
67
|
+
|Type of animation for the tagline. Valid values are all values supported
|
|
68
|
+
by AnimateCSS. See https://daneden.github.io/animate.css/[Animate.css home page]
|
|
69
|
+
for details.
|
|
70
|
+
|
|
71
|
+
|`tagline.color`
|
|
72
|
+
|Symbolic color \| RGB values
|
|
73
|
+
|`rgba_lighten_800`
|
|
74
|
+
| The text color. Should be given as an *symbolic color name*. Alternatively, the
|
|
75
|
+
color can be configured as (hexadecimal) RGB valuess of the form `#RRGGBB`
|
|
76
|
+
|
|
77
|
+
|`tagline.size`
|
|
78
|
+
|String
|
|
79
|
+
|`larger`
|
|
80
|
+
|Symbolic value for the text size. Valid values are out of [`xxxsmall` .. `xxxlarge`]
|
|
81
|
+
See size definitions with <<Text sizes>>
|
|
82
|
+
|
|
83
|
+
|`text_emphasis`
|
|
84
|
+
|String
|
|
85
|
+
|`stronger`
|
|
86
|
+
|Symbolic value for the text shadowing. Valid values are out of
|
|
87
|
+
[`strong`, `stronger`, `strongest`]
|
|
88
|
+
|
|
89
|
+
|`title`
|
|
90
|
+
|Hash
|
|
91
|
+
|n/a
|
|
92
|
+
|The *title hash* contains all name\|value pairs to control how the page
|
|
93
|
+
*title* appears with the header
|
|
94
|
+
|
|
95
|
+
|`title.align`
|
|
96
|
+
|Position name (CSS)
|
|
97
|
+
|`left`
|
|
98
|
+
|Alignment of the title inside the overlay-container. Valid values are out of
|
|
99
|
+
`left` \| `center` \| `right`
|
|
100
|
+
|
|
101
|
+
|`title.animate`
|
|
102
|
+
|String
|
|
103
|
+
|`fadeInLeft`
|
|
104
|
+
|Type of animation for the title. Valid values are all values supported
|
|
105
|
+
by AnimateCSS. See https://daneden.github.io/animate.css/[Animate.css home page]
|
|
106
|
+
for details.
|
|
107
|
+
|
|
108
|
+
|`title.color`
|
|
109
|
+
|Symbolic color \| RGB value
|
|
110
|
+
|`rgba_lighten_800`
|
|
111
|
+
|The text color. Should be given as an *symbolic color name*. Alternatively, the
|
|
112
|
+
color can be configured as (hexadecimal) RGB values of the form `#RRGGBB`
|
|
113
|
+
|
|
114
|
+
|`title.size`
|
|
115
|
+
|String
|
|
116
|
+
|`xxxlarge`
|
|
117
|
+
|Symbolic value for the text size. Valid values are out of [`xxxsmall` .. `xxxlarge`]
|
|
118
|
+
See size definitions with <<Text sizes>>
|
|
119
|
+
|
|
120
|
+
|=======================================================================
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
|
|
2
|
+
[cols="3,2,2,5",options="header", role="table-responsive mt-3"]
|
|
3
|
+
|=======================================================================
|
|
4
|
+
|Name |Type |Default |Description
|
|
5
|
+
|
|
6
|
+
|`alignX`
|
|
7
|
+
|Float or String
|
|
8
|
+
|`0.5`
|
|
9
|
+
|This parameter controls the horizontal alignment of the image.
|
|
10
|
+
Can be one of `center`, `left`, `right` or any number between 0.0 and 1.0
|
|
11
|
+
|
|
12
|
+
|`alignY`
|
|
13
|
+
|Float or String
|
|
14
|
+
|`0.5`
|
|
15
|
+
|This parameter controls the vertical alignment of the image.
|
|
16
|
+
Can be one of `center`, `top`, `bottom` or any number between 0.0 and 1.0
|
|
17
|
+
|
|
18
|
+
|`alt`
|
|
19
|
+
|String
|
|
20
|
+
|n/a
|
|
21
|
+
|The alternative text for this image (for screen readers)
|
|
22
|
+
|
|
23
|
+
|`duration`
|
|
24
|
+
|Integer
|
|
25
|
+
|`5000`
|
|
26
|
+
|The amount of time in between slides, when using Backstretch as a slideshow,
|
|
27
|
+
expressed as the number of milliseconds
|
|
28
|
+
|
|
29
|
+
|`scale`
|
|
30
|
+
|String
|
|
31
|
+
|`cover`
|
|
32
|
+
|Controls the scaling mode. Can be one of [`cover` \| `fit` \| `fit-smaller` \| `fill`]
|
|
33
|
+
|
|
34
|
+
|`transition`
|
|
35
|
+
|String or Array
|
|
36
|
+
|`fade`
|
|
37
|
+
|Type of transition to use. If multiple are specified, then it will be chosen
|
|
38
|
+
randomly
|
|
39
|
+
|
|
40
|
+
|`transitionDuration`
|
|
41
|
+
|Integer or String
|
|
42
|
+
|`0`
|
|
43
|
+
|This is the duration at which the image will transition in. Integers in
|
|
44
|
+
milliseconds are accepted, as well as standard jQuery speed strings like
|
|
45
|
+
`slow`, `normal` or `fast`
|
|
46
|
+
|
|
47
|
+
|`url`
|
|
48
|
+
|String
|
|
49
|
+
|n/a
|
|
50
|
+
|The url of the image or video
|
|
51
|
+
|
|
52
|
+
|=======================================================================
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
.Additional Image Header Parameter
|
|
2
|
+
[cols="3,2,2,5",options="header", role="table-responsive mt-3"]
|
|
3
|
+
|=======================================================================
|
|
4
|
+
|Name |Type |Default |Description
|
|
5
|
+
|
|
6
|
+
|`caption`
|
|
7
|
+
|String
|
|
8
|
+
|n/a
|
|
9
|
+
|A caption text for e.g. Website, Copyright and \| or Author information
|
|
10
|
+
|
|
11
|
+
|`caption_color`
|
|
12
|
+
|Symbolic color \| RGB value
|
|
13
|
+
|`rgba_lighten_800`
|
|
14
|
+
| The `caption` text color. Should be given as an *symbolic color name*.
|
|
15
|
+
Alternatively, the color can be configured as (hexadecimal) RGB values
|
|
16
|
+
of the form `#RRGGBB`
|
|
17
|
+
|
|
18
|
+
|`caption_href`
|
|
19
|
+
|URL
|
|
20
|
+
|n/a
|
|
21
|
+
|A URL that points e.g. to the image source, or a website for Copyright
|
|
22
|
+
and \| or Author information
|
|
23
|
+
|
|
24
|
+
|`opacity`
|
|
25
|
+
|Float
|
|
26
|
+
|n/a
|
|
27
|
+
|Opacity of the header image. Possible values are floats between 0.0 and 1.0
|
|
28
|
+
|
|
29
|
+
|`spinner`
|
|
30
|
+
|String
|
|
31
|
+
|`false`
|
|
32
|
+
|To indicate that header images are being loaded, a spinner can be displayed.
|
|
33
|
+
Spinners are defined by the CSS file ~/framework/jquery/backstretch/css/backstretch.css.
|
|
34
|
+
Spinner options are `pulsed` \| `rotor` \| `rotated-dots` \| `cycled-dots`
|
|
35
|
+
|
|
36
|
+
|=======================================================================
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[cols="3,2,2,5",options="header", role="table-responsive mt-3"]
|
|
2
|
+
|=======================================================================
|
|
3
|
+
|Name |Type |Default |Description
|
|
4
|
+
|
|
5
|
+
|`isVideo`
|
|
6
|
+
|Boolean
|
|
7
|
+
|`false`
|
|
8
|
+
|Pass source type *video* to the plugin, if cannot be recognized automatically
|
|
9
|
+
|
|
10
|
+
|`loop`
|
|
11
|
+
|Boolean
|
|
12
|
+
|`false`
|
|
13
|
+
|Enables\|Disables looping on videos. If `true`, `duration` is used to
|
|
14
|
+
determine when to stop the video
|
|
15
|
+
|
|
16
|
+
|`mute`
|
|
17
|
+
|Boolean
|
|
18
|
+
|`true`
|
|
19
|
+
|Enables \| Disables sound on videos
|
|
20
|
+
|
|
21
|
+
|`poster`
|
|
22
|
+
|String
|
|
23
|
+
|n/a
|
|
24
|
+
|Specifying the `poster` attribute on standard tags
|
|
25
|
+
|
|
26
|
+
|=======================================================================
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
[cols="4,8",options="header", role="table-responsive mt-3"]
|
|
3
|
+
|=======================================================================
|
|
4
|
+
|Transition | Description
|
|
5
|
+
|
|
6
|
+
|`coverDown`
|
|
7
|
+
|
|
|
8
|
+
|
|
9
|
+
|`coverLeft`
|
|
10
|
+
|
|
|
11
|
+
|
|
12
|
+
|`coverRight`
|
|
13
|
+
|
|
|
14
|
+
|
|
15
|
+
|`coverUp`
|
|
16
|
+
|
|
|
17
|
+
|
|
18
|
+
|`fade`
|
|
19
|
+
|
|
|
20
|
+
|
|
21
|
+
|`fadeInOut`
|
|
22
|
+
|
|
|
23
|
+
|
|
24
|
+
|`pushDown`
|
|
25
|
+
|
|
|
26
|
+
|
|
27
|
+
|`pushLeft`
|
|
28
|
+
|
|
|
29
|
+
|
|
30
|
+
|`pushRight`
|
|
31
|
+
|
|
|
32
|
+
|
|
33
|
+
|`pushUp`
|
|
34
|
+
|
|
|
35
|
+
|
|
36
|
+
|=======================================================================
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
[cols="4,3,5",options="header", role="table-responsive mt-3"]
|
|
2
|
+
|=======================================================================
|
|
3
|
+
|Parameter |Default |Description
|
|
4
|
+
|
|
5
|
+
|alignX
|
|
6
|
+
|`0.5`
|
|
7
|
+
|The horizontal-alignment for the image, can be
|
|
8
|
+
`left` \| `center` \| `right` or any number between [ 0.0 .. 1.0]
|
|
9
|
+
|
|
10
|
+
|alignY
|
|
11
|
+
|`0.5`
|
|
12
|
+
|The vertical-alignment for the image, can be on of `top` \| `center`
|
|
13
|
+
\| `bottom` or any number between [ 0.0 .. 1.0]
|
|
14
|
+
|
|
15
|
+
|alwaysTestWindowResolution
|
|
16
|
+
|`false`
|
|
17
|
+
|Test against the window width instead of the element width
|
|
18
|
+
|
|
19
|
+
|animateFirst
|
|
20
|
+
|`true`
|
|
21
|
+
|If set to true, the first image will transition in like all the
|
|
22
|
+
others (slideshows only)
|
|
23
|
+
|
|
24
|
+
|bypassCss
|
|
25
|
+
|`false`
|
|
26
|
+
|Avoid to add any CSS styles to the IMG element
|
|
27
|
+
|
|
28
|
+
|duration
|
|
29
|
+
|`5000`
|
|
30
|
+
|Time in between slides (if slideshow)
|
|
31
|
+
|
|
32
|
+
|isVideo
|
|
33
|
+
|`false`
|
|
34
|
+
|Pass source type video to the plugin, if cannot be recognized automatically
|
|
35
|
+
|
|
36
|
+
|loop
|
|
37
|
+
|`false`
|
|
38
|
+
|Enables \| Disables looping on videos. If true, duration is used to
|
|
39
|
+
determine when to stop
|
|
40
|
+
|
|
41
|
+
|mute
|
|
42
|
+
|`false`
|
|
43
|
+
|Enables \| Disables sound on videos
|
|
44
|
+
|
|
45
|
+
|paused
|
|
46
|
+
|`false`
|
|
47
|
+
|Whether the images should slide after given duration
|
|
48
|
+
|
|
49
|
+
|preload
|
|
50
|
+
|`2`
|
|
51
|
+
|Controls how many images preload at a time
|
|
52
|
+
|
|
53
|
+
|preloadSize
|
|
54
|
+
|`1`
|
|
55
|
+
|Controls how many images are preloaded in parallel
|
|
56
|
+
|
|
57
|
+
|scale
|
|
58
|
+
|`cover`
|
|
59
|
+
|Controls the scaling mode. Can be one of `cover` \| `fit` \| `fit-smaller` \| `fill`
|
|
60
|
+
|
|
61
|
+
|resolutionRefreshRate
|
|
62
|
+
|`2500`
|
|
63
|
+
|Controls how long to wait before switching the resolution
|
|
64
|
+
|
|
65
|
+
|resolutionChangeRatioThreshold
|
|
66
|
+
|`0.1`
|
|
67
|
+
|Controls how much a change should it be before switching resolution
|
|
68
|
+
|
|
69
|
+
|start
|
|
70
|
+
|`0`
|
|
71
|
+
|Index of the first image to show
|
|
72
|
+
|
|
73
|
+
|transition
|
|
74
|
+
|`fade`
|
|
75
|
+
|Type of transition between slides
|
|
76
|
+
|
|
77
|
+
|transitionDuration
|
|
78
|
+
|`normal`
|
|
79
|
+
|Duration at which the image will transition in.Integers in milliseconds are
|
|
80
|
+
accepted, as well as standard jQuery speed strings as `slow`, `normal` or `fast`
|
|
81
|
+
|
|
82
|
+
|=======================================================================
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[cols="4,3,5",options="header", role="table-responsive mt-3"]
|
|
2
|
+
|=======================================================================
|
|
3
|
+
|Parameter |Default |Description
|
|
4
|
+
|
|
5
|
+
|caption
|
|
6
|
+
|n/a
|
|
7
|
+
|The caption text placed on a image
|
|
8
|
+
|
|
9
|
+
|caption_color
|
|
10
|
+
|`rgba_lighten`
|
|
11
|
+
|Color of the caption text
|
|
12
|
+
|
|
13
|
+
|caption_href
|
|
14
|
+
|n/a
|
|
15
|
+
|Link to the image source or copyright statement
|
|
16
|
+
|
|
17
|
+
|spinner
|
|
18
|
+
|`false`
|
|
19
|
+
|To indicate images are being loaded for a header, a spinner can be placed on.
|
|
20
|
+
Spinners are defined by the CSS file ~/framework/jquery/backstretch/css/backstretch.css.
|
|
21
|
+
A spinner an be one of `pulsed` \| `rotor` \| `rotated-dots` \| `cycled-dots
|
|
22
|
+
|
|
23
|
+
|=======================================================================
|
|
@@ -0,0 +1,452 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Header Module
|
|
3
|
+
tagline: Template User Guide
|
|
4
|
+
description: Header Module
|
|
5
|
+
|
|
6
|
+
tags: [ Masthead, Header, Template, Modules ]
|
|
7
|
+
resources: [ lightbox ]
|
|
8
|
+
permalink: /user_guide/modules/header/
|
|
9
|
+
regenerate: false
|
|
10
|
+
|
|
11
|
+
resource_options:
|
|
12
|
+
|
|
13
|
+
- toccer:
|
|
14
|
+
collapseDepth: 3
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
// Enable the Liquid Preprocessor
|
|
18
|
+
// -----------------------------------------------------------------------------
|
|
19
|
+
:page-liquid:
|
|
20
|
+
|
|
21
|
+
// Set other global page attributes here
|
|
22
|
+
// -----------------------------------------------------------------------------
|
|
23
|
+
|
|
24
|
+
// Liquid procedures
|
|
25
|
+
// -----------------------------------------------------------------------------
|
|
26
|
+
{% capture set_env_entry_document %}themes/{{site.template.name}}/procedures/global/set_env_entry_document.proc{%endcapture%}
|
|
27
|
+
|
|
28
|
+
// Initialize entry document paths
|
|
29
|
+
// -----------------------------------------------------------------------------
|
|
30
|
+
{% include {{set_env_entry_document}} init_folders=all %}
|
|
31
|
+
|
|
32
|
+
// Load tags and urls
|
|
33
|
+
// -----------------------------------------------------------------------------
|
|
34
|
+
include::{includedir}/attributes.asciidoc[tag=tags]
|
|
35
|
+
include::{includedir}/attributes.asciidoc[tag=urls]
|
|
36
|
+
include::{includedir}/attributes.asciidoc[tag=data]
|
|
37
|
+
|
|
38
|
+
// Additional Asciidoc page attributes goes here
|
|
39
|
+
// -----------------------------------------------------------------------------
|
|
40
|
+
:jquery-backstretch-home: http://www.jquery-backstretch.com/
|
|
41
|
+
:jquery-backstretch-github: https://github.com/jquery-backstretch/jquery-backstretch
|
|
42
|
+
|
|
43
|
+
// Include sub-documents
|
|
44
|
+
// -----------------------------------------------------------------------------
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
J1 Template ships with a *header* module for all content pages of a site.
|
|
48
|
+
A header always gets placed at the very top position of a page.
|
|
49
|
+
|
|
50
|
+
////
|
|
51
|
+
TBD: What is a master header (in compare to a so-called *header*)? For the
|
|
52
|
+
following the term *header* is used for *master header* ...
|
|
53
|
+
|
|
54
|
+
Actually, there is no such thing like a ``master header''. The terms header
|
|
55
|
+
and masthead are pretty much used synonymously.
|
|
56
|
+
////
|
|
57
|
+
|
|
58
|
+
All header types provide a simple yet powerful text overlay technique to
|
|
59
|
+
present animated text taken from your content pages (title and tagline)
|
|
60
|
+
automatically.
|
|
61
|
+
|
|
62
|
+
The jQuery plugin _jquery-backstretch_ is used as the core library for image-
|
|
63
|
+
and video-based headers. The full documentation plus several examples can be
|
|
64
|
+
found at {jquery-backstretch-home}[Backstretch Home Page]. The Git repository
|
|
65
|
+
can be found at {jquery-backstretch-github}[Github].
|
|
66
|
+
|
|
67
|
+
== Types of Headers
|
|
68
|
+
|
|
69
|
+
Headers are available as simple, text-based headers as well as headers
|
|
70
|
+
displaying images – supporting all common image formats like PNG (png), JPEG
|
|
71
|
+
(jpg) and GIF (gif). Besides static images, video clips (online videos and
|
|
72
|
+
HTML5 videos) are supported for image-based headers as well.
|
|
73
|
+
|
|
74
|
+
=== Text-based Header
|
|
75
|
+
|
|
76
|
+
A simple, text-based header is quite useful for common content pages. This
|
|
77
|
+
header type supports a colored background and animated text overlays for both
|
|
78
|
+
the title and the tagline of a page.
|
|
79
|
+
|
|
80
|
+
.Text Header Example for J1 Template
|
|
81
|
+
imageblock::410_text_header.png[]
|
|
82
|
+
|
|
83
|
+
=== Image-based Header
|
|
84
|
+
|
|
85
|
+
An image-based header is characterized by dynamically-resizable,
|
|
86
|
+
slideshow-capable background images or videos. The image (or video) stretches
|
|
87
|
+
the width full-size and will get resized automatically, if the size of the
|
|
88
|
+
page changes.
|
|
89
|
+
Image-based headers are fully responsive and get displayed in an excellent
|
|
90
|
+
quality on any device like desktop computers, tablets or mobiles.
|
|
91
|
+
|
|
92
|
+
.Image Header Example for J1 Template
|
|
93
|
+
imageblock::400_master_header.png[]
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
== Header Configuration
|
|
97
|
+
|
|
98
|
+
The header module of J1 Template allows _multiple_ headers for your Web.
|
|
99
|
+
Generally, a header is related to a layout and can also be individualized on
|
|
100
|
+
a per page basis.
|
|
101
|
+
|
|
102
|
+
////
|
|
103
|
+
and ... also = bad construction – though colloquially acceptable, the second
|
|
104
|
+
phrase goes beyond what's described in the first phrase in the sense of
|
|
105
|
+
"plus", "furthermore", "additionally". Therefore, the two phrases are no
|
|
106
|
+
longer equal.
|
|
107
|
+
////
|
|
108
|
+
|
|
109
|
+
The module supports setting up as many different headers as layouts exist.
|
|
110
|
+
Thus, the header on the home page (layout *HOME*) may be _different_ from the
|
|
111
|
+
header used for pages (layout *page*), posts (layout *post*) or collections
|
|
112
|
+
(layout *collection*).
|
|
113
|
+
|
|
114
|
+
While you can provide a _common_ header for all content pages that
|
|
115
|
+
belong to a certain _layout_, you can further _individualize_ your header
|
|
116
|
+
configuration on a _per page_ basis for pages that you like to have a unique
|
|
117
|
+
header for.
|
|
118
|
+
|
|
119
|
+
Configuration parameters are being processed in the following order:
|
|
120
|
+
|
|
121
|
+
. Default values
|
|
122
|
+
. Layout-specific values
|
|
123
|
+
. Page-specific values
|
|
124
|
+
|
|
125
|
+
=== General Header Configuration
|
|
126
|
+
|
|
127
|
+
In J1 Template the header module gets configured by the YAML data file
|
|
128
|
+
`_data/modules/j1_header.yml`. The data file consists of 3 sections:
|
|
129
|
+
|
|
130
|
+
. Default header settings (text- and image-based headers)
|
|
131
|
+
. Default image settings (image-based headers only)
|
|
132
|
+
. Layout specific header settings (text- and image-based headers)
|
|
133
|
+
|
|
134
|
+
.J1 Header Configuration File `j1_header.yml`
|
|
135
|
+
[source, yaml]
|
|
136
|
+
----
|
|
137
|
+
# ------------------------------------------------------------------------------
|
|
138
|
+
# 1. Default settings (all header)
|
|
139
|
+
#
|
|
140
|
+
defaults:
|
|
141
|
+
# 1.1 General settings (text- and image-based header)
|
|
142
|
+
#
|
|
143
|
+
globals:
|
|
144
|
+
debug: false
|
|
145
|
+
icon_family: ZMDI
|
|
146
|
+
icon_color: md_grey
|
|
147
|
+
icon_size: default
|
|
148
|
+
|
|
149
|
+
# 1.2 Common header default settings (text- and image-based header)
|
|
150
|
+
#
|
|
151
|
+
header:
|
|
152
|
+
raised_level: 15
|
|
153
|
+
text_emphasis: stronger
|
|
154
|
+
...
|
|
155
|
+
|
|
156
|
+
# ------------------------------------------------------------------------------
|
|
157
|
+
# 1.3 Image Header default settings (image-based header only)
|
|
158
|
+
#
|
|
159
|
+
image_header:
|
|
160
|
+
caption: ""
|
|
161
|
+
caption_href: ""
|
|
162
|
+
caption_color: rgba_lighten
|
|
163
|
+
...
|
|
164
|
+
# ------------------------------------------------------------------------------
|
|
165
|
+
# 2. Layout specific header settings
|
|
166
|
+
#
|
|
167
|
+
headers:
|
|
168
|
+
|
|
169
|
+
# ------------------------------------------------------------------
|
|
170
|
+
# Home (page) header (image-based)
|
|
171
|
+
#
|
|
172
|
+
- header:
|
|
173
|
+
enabled: true
|
|
174
|
+
id: homehead
|
|
175
|
+
layout: [ home ]
|
|
176
|
+
...
|
|
177
|
+
----
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
=== Layout-specific Header Configuration
|
|
181
|
+
|
|
182
|
+
The configuration of layout-specific headers is quite simple and can be found
|
|
183
|
+
in the second section of the header config file.
|
|
184
|
+
Layout-specific headers are organized by the the `headers` array. This array
|
|
185
|
+
consists of `header` hashes (key-value pairs) – one per layout – in which each
|
|
186
|
+
header gets configured by a unique header `id` and a dedicated `layout`.
|
|
187
|
+
|
|
188
|
+
[NOTE]
|
|
189
|
+
====
|
|
190
|
+
Layout-specific headers use the *same* key-value pairs as specified by the
|
|
191
|
+
*default section*. Technically, a layout-specific header configuration
|
|
192
|
+
*overloads* the parameters (by key) already specified by their defaults.
|
|
193
|
+
====
|
|
194
|
+
|
|
195
|
+
.Layout-specific Header Configuration
|
|
196
|
+
[source, yaml]
|
|
197
|
+
----
|
|
198
|
+
# ------------------------------------------------------------------------------
|
|
199
|
+
# 2. Layout specific header settings
|
|
200
|
+
#
|
|
201
|
+
headers:
|
|
202
|
+
|
|
203
|
+
# ------------------------------------------------------------------
|
|
204
|
+
# Home (page) header
|
|
205
|
+
#
|
|
206
|
+
- header:
|
|
207
|
+
enabled: true
|
|
208
|
+
id: homehead
|
|
209
|
+
layout: [ home ]
|
|
210
|
+
padding_top: 300
|
|
211
|
+
margin_bottom: 0
|
|
212
|
+
...
|
|
213
|
+
|
|
214
|
+
# ------------------------------------------------------------------
|
|
215
|
+
# Page header
|
|
216
|
+
#
|
|
217
|
+
- header:
|
|
218
|
+
enabled: true
|
|
219
|
+
id: pagehead
|
|
220
|
+
layout: [ page ]
|
|
221
|
+
text_emphasis: strong
|
|
222
|
+
title:
|
|
223
|
+
color: rgba_lighten_800
|
|
224
|
+
tagline:
|
|
225
|
+
color: rgba_lighten_800
|
|
226
|
+
...
|
|
227
|
+
----
|
|
228
|
+
|
|
229
|
+
=== Page-specific Header Configuration
|
|
230
|
+
|
|
231
|
+
The config data (key-value pairs) for a page-specific configuration of a header
|
|
232
|
+
are to be set in the _frontmatter_ of a page. In order to pass individual
|
|
233
|
+
config data to a header, the element `master_header` in the `resource_options`
|
|
234
|
+
array is used.
|
|
235
|
+
|
|
236
|
+
Following is an example of how a page-specific config may look like. Here the
|
|
237
|
+
image gets altered and an individual caption text is configured (photographer
|
|
238
|
+
credits).
|
|
239
|
+
|
|
240
|
+
.Page-specific Header Configuration
|
|
241
|
+
[source, yaml]
|
|
242
|
+
----
|
|
243
|
+
resource_options:
|
|
244
|
+
- master_header:
|
|
245
|
+
slides:
|
|
246
|
+
# Image: Pile of Books
|
|
247
|
+
- url: /assets/images/books_r.jpg
|
|
248
|
+
alt: Pile of Books
|
|
249
|
+
transition: fadeInOut
|
|
250
|
+
transitionDuration: 1500
|
|
251
|
+
caption: Photo by Kimberly Farmer on Unsplash
|
|
252
|
+
caption_href: "https://unsplash.com/@kimberlyfarmer"
|
|
253
|
+
caption_color: rgba_lighten_800
|
|
254
|
+
----
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
== Configuration Parameters
|
|
258
|
+
|
|
259
|
+
A header always gets placed at the very top position of a page. Both header
|
|
260
|
+
types – text and image headers – have some configuration parameters in
|
|
261
|
+
common. See below for the general anatomy of a header.
|
|
262
|
+
|
|
263
|
+
The common configuration parameters influence the following:
|
|
264
|
+
|
|
265
|
+
* Size
|
|
266
|
+
* Uplifting
|
|
267
|
+
* Background color
|
|
268
|
+
* Space between header and content
|
|
269
|
+
* Placement, color and emphasis of title and tagline
|
|
270
|
+
|
|
271
|
+
=== Anatomy of a Header
|
|
272
|
+
|
|
273
|
+
Find all these configuration parameters visually displayed in the following
|
|
274
|
+
image. It might be helpful for a better understanding of the common header
|
|
275
|
+
parameters described in <<Common Header Configuration Parameters>>.
|
|
276
|
+
|
|
277
|
+
.Anatomy of a header
|
|
278
|
+
imageblock::412_header_anatomy.png[]
|
|
279
|
+
|
|
280
|
+
[NOTE]
|
|
281
|
+
====
|
|
282
|
+
The menu bar is placed as an overlay on top of the header. For details
|
|
283
|
+
how to configure the overlay style of the menu-bar with a header, see the
|
|
284
|
+
NAV module documentation.
|
|
285
|
+
====
|
|
286
|
+
|
|
287
|
+
=== Common Header Configuration Parameters
|
|
288
|
+
|
|
289
|
+
Common header parameters are used for both text-based headers _and_
|
|
290
|
+
image-based headers. If _no_ image configuration is given, the header is
|
|
291
|
+
treated as a text-based header. Therefore, common header parameters can be
|
|
292
|
+
regarded as _Text Header Parameters_.
|
|
293
|
+
|
|
294
|
+
In J1 Template the _header module_ parameters get configured in the
|
|
295
|
+
YAML data file `_data/modules/j1_header.yml`. The default values are
|
|
296
|
+
configured as follows:
|
|
297
|
+
|
|
298
|
+
.Default Header Configuration Parameters
|
|
299
|
+
[source, yaml]
|
|
300
|
+
----
|
|
301
|
+
header_defaults:
|
|
302
|
+
raised_level: 15
|
|
303
|
+
text_emphasis: stronger
|
|
304
|
+
padding_top: 200
|
|
305
|
+
padding_bottom: 50
|
|
306
|
+
margin_bottom: 50
|
|
307
|
+
|
|
308
|
+
title:
|
|
309
|
+
size: xxxlarge
|
|
310
|
+
color: rgba_lighten_800
|
|
311
|
+
animate: fadeInLeft
|
|
312
|
+
align: left
|
|
313
|
+
|
|
314
|
+
tagline:
|
|
315
|
+
size: larger
|
|
316
|
+
color: rgba_lighten_800
|
|
317
|
+
animate: fadeInRight
|
|
318
|
+
align: left
|
|
319
|
+
|
|
320
|
+
background_color:
|
|
321
|
+
color_1: md_indigo
|
|
322
|
+
color_2: md_indigo
|
|
323
|
+
----
|
|
324
|
+
|
|
325
|
+
[NOTE]
|
|
326
|
+
====
|
|
327
|
+
For many configuration parameters _symbolic_ values are used like `large`,
|
|
328
|
+
`larger` or `xlarge` for sizes or e.g `md_indigo` or `md_red_300` for colors.
|
|
329
|
+
For best results regarding responsiveness, sizes should be configured as
|
|
330
|
+
_symbolic_ values. For a better reading (and standardisation) colors should
|
|
331
|
+
be configured by using their _names_ taken from the template's color scheme.
|
|
332
|
+
For example: the RGB value for `md_indigo` is `#3F51B5` – one out of 16
|
|
333
|
+
billion possible RGB values most people won't be able to remember by heart.
|
|
334
|
+
====
|
|
335
|
+
|
|
336
|
+
See the following table for common header parameters – including a description
|
|
337
|
+
what they are there for, what type they are and what values are possible for
|
|
338
|
+
their configuration.
|
|
339
|
+
|
|
340
|
+
.Common Header Configuration Parameters
|
|
341
|
+
include::{tabledir}/410_common_header_parameters.asciidoc[]
|
|
342
|
+
|
|
343
|
+
=== Image Header Configuration Parameters
|
|
344
|
+
|
|
345
|
+
The header component of J1 Templates integrates the jQuery plugin
|
|
346
|
+
``Backstretch'' for image- or video headers. Hence, image and video
|
|
347
|
+
parameter belong to the Backstretch library.
|
|
348
|
+
|
|
349
|
+
.Image Header Configuration Parameters
|
|
350
|
+
include::{tabledir}/420_common_image_header_parameters.asciidoc[]
|
|
351
|
+
|
|
352
|
+
==== Additional Image Header Configuration Parameters
|
|
353
|
+
|
|
354
|
+
Images from 3rd party sources are usually protected by copyright laws.
|
|
355
|
+
Depending on the respective license you might be allowed to use them, if the
|
|
356
|
+
author or photographer is attributed in a proper way. As for most Creative
|
|
357
|
+
Commons Licenses you need to mention the name of the author, the title of the
|
|
358
|
+
work, if available and a URL that is associated with the work – in case of Web
|
|
359
|
+
uses a link to the source.
|
|
360
|
+
|
|
361
|
+
You can achieve this by placing a caption text for a configurable URL on the
|
|
362
|
+
image.
|
|
363
|
+
|
|
364
|
+
.Image Header using a caption text
|
|
365
|
+
imageblock::415_image_header_caption.png[]
|
|
366
|
+
|
|
367
|
+
.Additional Image Header Configuration Parameters
|
|
368
|
+
include::{tabledir}/421_additional_image_header_parameters.asciidoc[Additional Image Header Configuration Parameters]
|
|
369
|
+
|
|
370
|
+
=== Video Header Configuration Parameters
|
|
371
|
+
|
|
372
|
+
For video-based headers some additional configuration parameters control the
|
|
373
|
+
video processing – like sound or the duration the video is playing.
|
|
374
|
+
|
|
375
|
+
.Video Header Configuration Parameters
|
|
376
|
+
include::{tabledir}/430_video_header_parameters.asciidoc[]
|
|
377
|
+
|
|
378
|
+
=== Image and Video Transitions
|
|
379
|
+
|
|
380
|
+
If more than one image or video is given for a header, the header plays the
|
|
381
|
+
configured items as a (slide) show.
|
|
382
|
+
|
|
383
|
+
.Image and Video Transitions
|
|
384
|
+
include::{tabledir}/440_image_and_video_transitions.asciidoc[]
|
|
385
|
+
|
|
386
|
+
==== Multiple Transitions
|
|
387
|
+
|
|
388
|
+
If multiple transitions are specified for the parameter `transition`,
|
|
389
|
+
the transition is chosen randomly. This might be helpful for e.g.
|
|
390
|
+
a demo.
|
|
391
|
+
|
|
392
|
+
.Multiple Transitions
|
|
393
|
+
[source, yaml]
|
|
394
|
+
----
|
|
395
|
+
- url: /assets/videos/headers/still/ocean.png
|
|
396
|
+
transition: "push_left|push_right|cover_up|cover_down|fade|fadeInOut"
|
|
397
|
+
...
|
|
398
|
+
----
|
|
399
|
+
|
|
400
|
+
== Tables
|
|
401
|
+
|
|
402
|
+
For experienced users and quick access all configuration parameters for the
|
|
403
|
+
header module are summarized in tables.
|
|
404
|
+
|
|
405
|
+
=== Text Header Defaults
|
|
406
|
+
|
|
407
|
+
Common (text) header defaults are shown visually at <<Anatomy of a Header>>.
|
|
408
|
+
Check out this section to see all parameters for a better understanding. Find
|
|
409
|
+
all common parameters and their defaults for the header listed below:
|
|
410
|
+
|
|
411
|
+
.Common (Text) Header Defaults
|
|
412
|
+
include::{tabledir}/410_common_header_parameters.asciidoc[]
|
|
413
|
+
|
|
414
|
+
=== Image Header Defaults
|
|
415
|
+
|
|
416
|
+
Find all parameter and their defaults for a image header listed
|
|
417
|
+
below:
|
|
418
|
+
|
|
419
|
+
.Image Header Defaults
|
|
420
|
+
include::{tabledir}/450_image_and_video_header_defaults.asciidoc[]
|
|
421
|
+
|
|
422
|
+
==== Additional Image Header Defaults
|
|
423
|
+
|
|
424
|
+
Find all parameters and their defaults for an image header listed
|
|
425
|
+
below:
|
|
426
|
+
|
|
427
|
+
.Additional Image Header Defaults
|
|
428
|
+
include::{tabledir}/451_additional_image_and_video_header_defaults.asciidoc[]
|
|
429
|
+
|
|
430
|
+
=== Video Header Defaults
|
|
431
|
+
|
|
432
|
+
Find all parameters and their defaults for a image header listed
|
|
433
|
+
below:
|
|
434
|
+
|
|
435
|
+
.Video Header Defaults
|
|
436
|
+
include::{tabledir}/430_video_header_parameters.asciidoc[]
|
|
437
|
+
|
|
438
|
+
=== Image Header Transitions
|
|
439
|
+
|
|
440
|
+
Find all available transition types for a image header listed
|
|
441
|
+
below:
|
|
442
|
+
|
|
443
|
+
.Image Header Transitions
|
|
444
|
+
include::{tabledir}/440_image_and_video_transitions.asciidoc[]
|
|
445
|
+
|
|
446
|
+
=== Text sizes
|
|
447
|
+
|
|
448
|
+
Find all *symbolic* text *sizes* and their respective *CSS values*
|
|
449
|
+
listed below:
|
|
450
|
+
|
|
451
|
+
.Text sizes
|
|
452
|
+
include::{tabledir}/000_text_sizes.asciidoc[]
|