j1-template 2020.0.0
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/blocks/footer/boxes/about_box.proc +46 -0
- data/_includes/themes/j1/blocks/footer/boxes/about_box.proc.org +40 -0
- data/_includes/themes/j1/blocks/footer/boxes/contacts_box.proc +55 -0
- data/_includes/themes/j1/blocks/footer/boxes/issue.proc +38 -0
- data/_includes/themes/j1/blocks/footer/boxes/legal_statements.proc +63 -0
- data/_includes/themes/j1/blocks/footer/boxes/links_box.proc +50 -0
- data/_includes/themes/j1/blocks/footer/boxes/news_box.proc +61 -0
- data/_includes/themes/j1/blocks/footer/boxes/social_media_icons.proc +37 -0
- data/_includes/themes/j1/blocks/footer/generator.html +145 -0
- data/_includes/themes/j1/layouts/content_generator_app.html +32 -0
- data/_includes/themes/j1/layouts/content_generator_blog_archive.html +242 -0
- data/_includes/themes/j1/layouts/content_generator_collection.html +131 -0
- data/_includes/themes/j1/layouts/content_generator_page.html +138 -0
- data/_includes/themes/j1/layouts/content_generator_post.html +228 -0
- data/_includes/themes/j1/layouts/content_generator_raw.html +33 -0
- data/_includes/themes/j1/layouts/layout_metadata_generator.html +118 -0
- data/_includes/themes/j1/layouts/layout_module_generator.html +46 -0
- data/_includes/themes/j1/layouts/layout_resource_generator.html +49 -0
- data/_includes/themes/j1/modules/attics/generator.html +153 -0
- data/_includes/themes/j1/modules/boards/news_pin_board.html +183 -0
- data/_includes/themes/j1/modules/connectors/ad/custom-provider.html +33 -0
- data/_includes/themes/j1/modules/connectors/ad/google-adsense.html +38 -0
- data/_includes/themes/j1/modules/connectors/ads +50 -0
- data/_includes/themes/j1/modules/connectors/analytic/custom-provider.html +32 -0
- data/_includes/themes/j1/modules/connectors/analytic/google-analytics.html +38 -0
- data/_includes/themes/j1/modules/connectors/analytics +45 -0
- data/_includes/themes/j1/modules/connectors/comment/custom-provider.html +31 -0
- data/_includes/themes/j1/modules/connectors/comment/disqus.html +61 -0
- data/_includes/themes/j1/modules/connectors/comment/facebook.html +31 -0
- data/_includes/themes/j1/modules/connectors/comments +46 -0
- data/_includes/themes/j1/modules/connectors/sharing +29 -0
- data/_includes/themes/j1/modules/connectors/translator +45 -0
- data/_includes/themes/j1/modules/connectors/translators/custom-translator.html +32 -0
- data/_includes/themes/j1/modules/connectors/translators/google-translator.html +49 -0
- data/_includes/themes/j1/modules/navigator/generator.html +202 -0
- data/_includes/themes/j1/modules/navigator/procedures/topsearch.proc +114 -0
- data/_includes/themes/j1/modules/search/algolia.html +181 -0
- data/_includes/themes/j1/modules/search/docsearch.html +42 -0
- data/_includes/themes/j1/procedures/collections/create_collection_article_preview.proc +69 -0
- data/_includes/themes/j1/procedures/global/collect_frontmatter_options.proc +60 -0
- data/_includes/themes/j1/procedures/global/collect_page_options.proc +66 -0
- data/_includes/themes/j1/procedures/global/create_bs_button.proc +129 -0
- data/_includes/themes/j1/procedures/global/create_word_cloud.proc +95 -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 +69 -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 +82 -0
- data/_includes/themes/j1/procedures/global/select_location.proc +119 -0
- data/_includes/themes/j1/procedures/global/set_base_vars_folders.proc +37 -0
- data/_includes/themes/j1/procedures/global/set_env_entry_document.proc +94 -0
- data/_includes/themes/j1/procedures/global/set_image_block.proc +50 -0
- data/_includes/themes/j1/procedures/global/setup.proc +53 -0
- data/_includes/themes/j1/procedures/layouts/content_writer.proc +112 -0
- data/_includes/themes/j1/procedures/layouts/default_writer.proc +162 -0
- data/_includes/themes/j1/procedures/layouts/module_writer.proc +270 -0
- data/_includes/themes/j1/procedures/layouts/resource_writer.proc +194 -0
- data/_includes/themes/j1/procedures/posts/collate_calendar.proc +221 -0
- data/_includes/themes/j1/procedures/posts/collate_list.proc +96 -0
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +226 -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/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 +348 -0
- data/_layouts/home.html +90 -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/assets/README.md +0 -0
- data/assets/data/authclient.html +373 -0
- data/assets/data/banner.html +432 -0
- data/assets/data/carousel.json +109 -0
- data/assets/data/colors.json +42 -0
- data/assets/data/cookie_consent.html +223 -0
- data/assets/data/font_sizes.json +42 -0
- data/assets/data/footer.html +238 -0
- data/assets/data/galleries.json +127 -0
- data/assets/data/gallery_customizer.html +150 -0
- data/assets/data/jupyter/notebooks/_html/template.full.head.html +75 -0
- data/assets/data/jupyter/notebooks/_html/visualisation.html +968 -0
- data/assets/data/jupyter/notebooks/html/template.html +50 -0
- data/assets/data/jupyter/notebooks/html/visualisation.ok.html +949 -0
- data/assets/data/jupyter/notebooks/tutorial.ipynb +169 -0
- data/assets/data/jupyter/notebooks/visualisation.ipynb +9413 -0
- data/assets/data/mdi_icons.json +14641 -0
- data/assets/data/menu.html +469 -0
- data/assets/data/messages.yml +131 -0
- data/assets/data/panel.html +518 -0
- data/assets/data/quicklinks.html +225 -0
- data/assets/data/search.yml +131 -0
- data/assets/data/sidebar.html +261 -0
- data/assets/data/themes.json +59 -0
- data/assets/data/twa_v1.json +6978 -0
- data/assets/error_pages/HTTP204.html +70 -0
- data/assets/error_pages/HTTP400.html +66 -0
- data/assets/error_pages/HTTP401.html +67 -0
- data/assets/error_pages/HTTP403.html +66 -0
- data/assets/error_pages/HTTP404.html +66 -0
- data/assets/error_pages/HTTP500.html +66 -0
- data/assets/error_pages/HTTP501.html +66 -0
- data/assets/error_pages/HTTP502.html +66 -0
- data/assets/error_pages/HTTP503.html +67 -0
- data/assets/error_pages/HTTP520.html +66 -0
- data/assets/error_pages/HTTP521.html +66 -0
- data/assets/error_pages/HTTP533.html +66 -0
- data/assets/themes/j1/core/css/bootstrap.css +7139 -0
- data/assets/themes/j1/core/css/bootstrap.min.css +6 -0
- data/assets/themes/j1/core/css/custom.scss +28 -0
- data/assets/themes/j1/core/css/globals.css +14523 -0
- data/assets/themes/j1/core/css/globals.min.css +1 -0
- data/assets/themes/j1/core/css/globals.scss +28 -0
- data/assets/themes/j1/core/css/theme_extensions.css +11565 -0
- data/assets/themes/j1/core/css/theme_extensions.min.css +1 -0
- data/assets/themes/j1/core/css/uno.css +11830 -0
- data/assets/themes/j1/core/css/uno.min.css +1 -0
- data/assets/themes/j1/core/css/uno.scss +28 -0
- data/assets/themes/j1/core/css/vendor.css +46751 -0
- data/assets/themes/j1/core/css/vendor.min.css +14 -0
- data/assets/themes/j1/core/css/vendor.scss +28 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.eot +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.svg +3459 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.ttf +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff2 +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.eot +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.svg +803 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.ttf +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff2 +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.eot +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.svg +4527 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.ttf +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff2 +0 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.json +26790 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.yml +9088 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.json +2302 -0
- data/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.yml +292 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.eot +0 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.svg +10188 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.ttf +0 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff +0 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff2 +0 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/license.md +97 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.json +8186 -0
- data/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.yml +5857 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/OpenSansEmoji.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Black.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BlackItalic.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.eot +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff2 +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BoldItalic.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Italic.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.eot +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff2 +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-LightItalic.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.eot +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff2 +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-MediumItalic.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.eot +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff2 +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.eot +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff2 +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/Roboto-ThinItalic.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold-ascii.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold_italic-ascii.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-italic-ascii.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-regular-ascii-conums.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/mplus1p-regular-fallback.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold-subset.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold_italic-subset.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/notoserif-italic-subset.ttf +0 -0
- data/assets/themes/j1/core/fonts/roboto/fonts/notoserif-regular-subset.ttf +0 -0
- data/assets/themes/j1/core/js/template.js +143 -0
- data/assets/themes/j1/core/js/template.js.map +1 -0
- data/assets/themes/j1/core/js/template.min.js +1 -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 +72 -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 +105 -0
- data/lib/j1_app/j1_auth_manager/auth_manager.rb +1367 -0
- data/lib/j1_app/j1_auth_manager/commands.rb +18 -0
- data/lib/j1_app/j1_auth_manager/config.rb +238 -0
- data/lib/j1_app/j1_auth_manager/error_pages.rb +44 -0
- data/lib/j1_app/j1_auth_manager/helpers.rb +166 -0
- data/lib/j1_app/j1_auth_manager/helpers_disqus.rb +29 -0
- data/lib/j1_app/j1_auth_manager/helpers_facebook.rb +29 -0
- data/lib/j1_app/j1_auth_manager/helpers_github.rb +112 -0
- data/lib/j1_app/j1_auth_manager/helpers_patreon.rb +29 -0
- data/lib/j1_app/j1_auth_manager/helpers_twitter.rb +30 -0
- data/lib/j1_app/j1_auth_manager/views/auth_manager_ui.erb +389 -0
- data/lib/j1_app/j1_auth_manager/views/auth_manager_ui.erb.kapott +234 -0
- data/lib/j1_app/j1_auth_manager/views/auth_manager_ui.new.erb +297 -0
- data/lib/j1_app/j1_auth_manager/warden_omniauth.rb +153 -0
- data/lib/j1_app/j1_site_manager/static_site.rb +94 -0
- data/lib/j1_app/log4r/yamlconfigurator.rb +195 -0
- data/lib/j1_app/omniauth/facebook/signed_request.rb +52 -0
- data/lib/j1_app/omniauth/strategies/disqus.rb +113 -0
- data/lib/j1_app/omniauth/strategies/facebook.rb +212 -0
- data/lib/j1_app/omniauth/strategies/github.rb +141 -0
- data/lib/j1_app/omniauth/strategies/patreon.rb +129 -0
- data/lib/j1_app/omniauth/strategies/twitter.rb +156 -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 +213 -0
- data/lib/starter_web/_config.yml +978 -0
- data/lib/starter_web/_data/_defaults/categories.yml +36 -0
- data/lib/starter_web/_data/_defaults/colors.yml +612 -0
- data/lib/starter_web/_data/_defaults/font_sizes.yml +29 -0
- data/lib/starter_web/_data/_defaults/j1_light_gallery.yml +110 -0
- data/lib/starter_web/_data/_defaults/resources.yml +942 -0
- data/lib/starter_web/_data/_defaults/template_settings.yml +258 -0
- data/lib/starter_web/_data/apps/carousel.yml +515 -0
- data/lib/starter_web/_data/apps/defaults/carousel.yml +223 -0
- data/lib/starter_web/_data/apps/defaults/gallery_customizer.yml +50 -0
- data/lib/starter_web/_data/apps/defaults/justified_gallery.yml +72 -0
- data/lib/starter_web/_data/apps/defaults/light_gallery.yml +115 -0
- data/lib/starter_web/_data/apps/defaults/lightbox.yml +181 -0
- data/lib/starter_web/_data/apps/gallery_customizer.yml +47 -0
- data/lib/starter_web/_data/apps/justified_gallery.yml +317 -0
- data/lib/starter_web/_data/apps/light_gallery.yml +114 -0
- data/lib/starter_web/_data/apps/lightbox.yml +181 -0
- data/lib/starter_web/_data/blocks/banner.yml +366 -0
- data/lib/starter_web/_data/blocks/defaults/banner.yml +253 -0
- data/lib/starter_web/_data/blocks/defaults/footer.yml +180 -0
- data/lib/starter_web/_data/blocks/defaults/panel.yml +256 -0
- data/lib/starter_web/_data/blocks/footer.yml +189 -0
- data/lib/starter_web/_data/blocks/panel.yml +348 -0
- data/lib/starter_web/_data/builder/blog_navigator.yml +211 -0
- data/lib/starter_web/_data/categories.yml +36 -0
- data/lib/starter_web/_data/colors.yml +612 -0
- data/lib/starter_web/_data/font_sizes.yml +30 -0
- data/lib/starter_web/_data/layouts/app.yml +160 -0
- data/lib/starter_web/_data/layouts/blog_archive.yml +160 -0
- data/lib/starter_web/_data/layouts/collection.yml +187 -0
- data/lib/starter_web/_data/layouts/default.yml +232 -0
- data/lib/starter_web/_data/layouts/home.yml +270 -0
- data/lib/starter_web/_data/layouts/page.yml +186 -0
- data/lib/starter_web/_data/layouts/post.yml +187 -0
- data/lib/starter_web/_data/layouts/raw.yml +160 -0
- data/lib/starter_web/_data/modules/attics.yml +220 -0
- data/lib/starter_web/_data/modules/authentication.yml +254 -0
- data/lib/starter_web/_data/modules/back2top.yml +40 -0
- data/lib/starter_web/_data/modules/cookie_consent.yml +128 -0
- data/lib/starter_web/_data/modules/cookiebar.yml +32 -0
- data/lib/starter_web/_data/modules/defaults/attics.yml +220 -0
- data/lib/starter_web/_data/modules/defaults/authentication.yml +263 -0
- data/lib/starter_web/_data/modules/defaults/back2top.yml +147 -0
- data/lib/starter_web/_data/modules/defaults/cookie_consent.yml +69 -0
- data/lib/starter_web/_data/modules/defaults/cookiebar.yml +79 -0
- data/lib/starter_web/_data/modules/defaults/framer.yml +274 -0
- data/lib/starter_web/_data/modules/defaults/jekyll_search.yml +149 -0
- data/lib/starter_web/_data/modules/defaults/log4javascript.yml +131 -0
- data/lib/starter_web/_data/modules/defaults/log4r.yml +171 -0
- data/lib/starter_web/_data/modules/defaults/navigator.yml +174 -0
- data/lib/starter_web/_data/modules/defaults/smooth_scroll.yml +169 -0
- data/lib/starter_web/_data/modules/defaults/stickybits.yml +37 -0
- data/lib/starter_web/_data/modules/defaults/themer.yml +168 -0
- data/lib/starter_web/_data/modules/defaults/toccer.yml +172 -0
- data/lib/starter_web/_data/modules/framer.yml +52 -0
- data/lib/starter_web/_data/modules/jekyll_search.yml +51 -0
- data/lib/starter_web/_data/modules/log4javascript.yml +131 -0
- data/lib/starter_web/_data/modules/log4r.yml +171 -0
- data/lib/starter_web/_data/modules/navigator.yml +162 -0
- data/lib/starter_web/_data/modules/navigator_menu.yml +276 -0
- data/lib/starter_web/_data/modules/smooth_scroll.yml +169 -0
- data/lib/starter_web/_data/modules/themer.yml +147 -0
- data/lib/starter_web/_data/modules/toccer.yml +172 -0
- data/lib/starter_web/_data/pages/builder.yml +87 -0
- data/lib/starter_web/_data/plugins/defaults/notebooks.yml +61 -0
- data/lib/starter_web/_data/plugins/defaults/paginator.yml +92 -0
- data/lib/starter_web/_data/plugins/notebooks.yml +70 -0
- data/lib/starter_web/_data/plugins/paginator.yml +52 -0
- data/lib/starter_web/_data/private.yml +231 -0
- data/lib/starter_web/_data/resources.yml +861 -0
- data/lib/starter_web/_data/template_settings.yml +294 -0
- data/lib/starter_web/_data/utilities/defaults/util_srv.yml +41 -0
- data/lib/starter_web/_data/utilities/util_srv.yml +97 -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/callout.rb +9 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/carousel-block.rb +46 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/conum.rb +9 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/fab-icon-inline.rb +33 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/fas-icon-inline.rb +33 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/gallery-block.rb +44 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/gist-block.rb +52 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/iconify-icon-inline.rb +33 -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/mdi-icon-inline.rb +33 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/shout-block.rb +47 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/twitter-emoji-inline.rb +37 -0
- data/lib/starter_web/_plugins/debug.rb +63 -0
- data/lib/starter_web/_plugins/filters.rb +320 -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 +52 -0
- data/lib/starter_web/apps/public/cc +1650 -0
- data/lib/starter_web/assets/images/collections/blog/featured/jekyll.1200x400.png +0 -0
- data/lib/starter_web/assets/images/collections/blog/featured/jekyll.png +0 -0
- data/lib/starter_web/assets/images/collections/blog/featured/staticgen.jpg +0 -0
- data/lib/starter_web/assets/images/collections/blog/featured/welcome-to-j1-template.jpg +0 -0
- data/lib/starter_web/assets/images/collections/blog/featured/what-is-a-baseurl.jpg +0 -0
- data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/j1_docker_banner.1280x500.png +0 -0
- data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/kinematic_alpha.1280x600.png +0 -0
- data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/kinematic_j1.1280x300.png +0 -0
- data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/windows_docker_banner.1280x500.png +0 -0
- data/lib/starter_web/assets/images/collections/blog/wikipedia/columbia-river.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/collections/blog/wikipedia/minneapolis.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/collections/blog/wikipedia/narcise-snake-pits.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/aditya-joshi-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/admin-dashboard-bootstrap-1280x600.png +0 -0
- data/lib/starter_web/assets/images/modules/attics/alex-holyoake-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/anaya-katlego-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/antonella-lombardi-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/antonino-visalli-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/admin-dashboard-bootstrap-1280x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/docker-1280x600-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/jekyll.1200x600-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/library-1920x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/signpost-1920x800-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/water-journal-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/banner/write-1280x600-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/brandon-mowinkel-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/building-blocks-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/cookies-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/daniel-jensen-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/giammarco-boscaro-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/go-up-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/ian-schneider-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/ideas-start-here-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/jason-rosewell-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/jessica-ruscello-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/lianhao-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/library-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mu-Vf9gbsLZyf0-unsplash.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mue-1920x1280-v.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/mae-mue-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/matthaeus-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/nousnou-iwasaki-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/premium-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/robert-v-ruggiero-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/romain-vignes-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/runner-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/spider-web-1920x1200-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/the-place-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/welcome-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-1.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-2.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-3.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-4.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-5.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-6.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-7.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/cats/cat-8.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/andreas-brucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/denys-nevozhai-1_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/denys-nevozhai-2_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/luca-bravo_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/carousel/mega_cities/thomas-tucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/andreas-brucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/banter-snaps_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-1_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-2-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/denys-nevozhai-2_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/emmad-mazhari_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/ethan-brooke_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/federico-rizzarelli_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/gints-gailis_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/johan-mouchet_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/luca-bravo_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/oskars-sylwan_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/steven-diaz_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/thomas-tucker-bw.jpg +0 -0
- data/lib/starter_web/assets/images/modules/gallery/mega_cities/thomas-tucker_b.jpg +0 -0
- data/lib/starter_web/assets/images/modules/icons/algolia/search-by-algolia.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/asciidoc/logo-512x512.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/bootstrap/bootstrap-solid-32x32.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/bootstrap/bs-docs-masthead-pattern.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/bootstrap/scalable/bootstrap-outline.svg +20 -0
- data/lib/starter_web/assets/images/modules/icons/bootstrap/scalable/bootstrap-punchout.svg +18 -0
- data/lib/starter_web/assets/images/modules/icons/bootstrap/scalable/bootstrap-solid.svg +17 -0
- data/lib/starter_web/assets/images/modules/icons/components/angular.ui.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/angularjs.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/aws.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/bootstrap.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/c9.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/chai.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/emmet.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/express.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/git.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/github.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/gulp.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/heroku.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/htmlcss-1.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/htmlcss-2.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/jasmine.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/javascript.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/jquery.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/kanban.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/leanux.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/linkedin.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/mean.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/mongodb.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/node.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/postgresql.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/protractor.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/rails.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/ruby.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/sass.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/scrum.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/components/twitter.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/d1-256x256.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/d1-32x32.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/d1-512x512.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/d1-64x64.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/d1.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/favicon.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/scalable/d1.svg +2020 -0
- data/lib/starter_web/assets/images/modules/icons/j1/favicon.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/j1/j1-256x256.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/j1/j1-32x32.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/j1/j1-512x512.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/j1/j1-64x64.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/j1/j1..ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/j1/scalable/j1.svg +2027 -0
- data/lib/starter_web/assets/images/modules/icons/netlify/nf-logo.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/favicon.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/p1-256x256.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/p1-32x32.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/p1-512x512.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/p1-64x64.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/p1.ico +0 -0
- data/lib/starter_web/assets/images/modules/icons/p1/scalable/p1.svg +2020 -0
- data/lib/starter_web/assets/images/modules/icons/patreon/favicon-16x16.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/patreon/favicon-32x32.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/amazon.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/behance.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/blogger.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/deviantart.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/dribbble.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/dropbox.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/evernote.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/facebook.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/forrst.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/github.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/googleplus.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/instagram.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/jolicloud.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/last-fm.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/linkedin.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/picasa.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/pintrest.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/rss.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/skype.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/spotify.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/stumbleupon.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/tumblr.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/twitter.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/vimeo.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/vk.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/wordpress.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/xing.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/yahoo.png +0 -0
- data/lib/starter_web/assets/images/modules/icons/social/youtube.png +0 -0
- data/lib/starter_web/assets/images/modules/lightbox/close.png +0 -0
- data/lib/starter_web/assets/images/modules/lightbox/loading.gif +0 -0
- data/lib/starter_web/assets/images/modules/lightbox/next.png +0 -0
- data/lib/starter_web/assets/images/modules/lightbox/prev.png +0 -0
- data/lib/starter_web/assets/images/modules/patterns/1x1.png +0 -0
- data/lib/starter_web/assets/images/modules/patterns/gridtile.png +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/000_browser_console-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/001_smee_channel-1280x400.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/002_gh_repo_settings-1280x800.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/003_gh_webhook_settings-1280x1000.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/004_gh_webhook_settings-post-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/005_smee_channel_ping_receive-1280x800.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/006_gh_redeliver_payload-1280x900.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/007_receive_redelivered_payload-1280x800.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/000_browser_console.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/000_smee_channel.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/002_gh_repo-settings.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/003_gh_webhook_settings.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/004_gh_webhook_settings-post.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/005_smee_channel_ping_received.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/006_gh_redeliver_payload.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/007_receive_redelivered_payload.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/base/webhook_flow.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/flows/webhook_flow-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/scaleable/webhook_flow.svg +432 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/uml/auth_mgmr_signin_request_flow.uxf +632 -0
- data/lib/starter_web/assets/images/pages/j1_webhooks/uml/webhook_flow.uxf +648 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/get-started-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/130_layout_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/content_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/content_inheritance_thumb.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/html_layout.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/j1-quickstart-windows.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/j1-template-theme.jpg +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/j1_layout.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/jekyll-minima-theme.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/lane_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/intro/layout_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/preparations/msys_installation.jpg +0 -0
- data/lib/starter_web/assets/images/pages/log4j/apache-log4j-logo.png +0 -0
- data/lib/starter_web/assets/images/pages/log4r/code-1920x600.jpg +0 -0
- data/lib/starter_web/assets/images/pages/log4r/log4r-logo.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_000.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_001.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_002.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_003.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_004.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_005.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_006.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_007.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_008.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_009.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_010.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_011.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_012.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_013.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_014.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_015.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_016.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_017.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_018.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_019.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_020.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_021.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_022.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_023.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_024.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_025.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_026.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_027.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_028.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_029.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_030.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_031.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_032.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_033.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_034.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_035.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_036.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_037.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_038.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_039.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_040.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_041.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_042.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_043.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_044.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_045.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_046.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_047.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_048.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_049.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_050.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_051.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_052.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_053.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_054.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_055.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_056.png +0 -0
- data/lib/starter_web/assets/images/pages/log_expert/image_057.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/pen/jquery/jQuery-logo.png +0 -0
- data/lib/starter_web/assets/images/pages/pen/jquery/jquery-banner-1280x600.jpg +0 -0
- data/lib/starter_web/assets/images/pages/pen/jquery/jquery-banner-1920x800.jpg +0 -0
- data/lib/starter_web/assets/images/pages/pen/jquery/src/JQuery-Logo.svg +122 -0
- data/lib/starter_web/assets/images/pages/pen/jquery/src/banner.psd +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/lightbox-image-1.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/lightbox-image-2.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/lightbox-image-3.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/lightbox-thumb-1.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/lightbox-thumb-2.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/lightbox-thumb-3.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/410_bs_modals_extentions/avatar.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/410_bs_modals_extentions/marc.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/bootstrap-1920x1000-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/cards-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/emojies-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/icon-fonts-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/images-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/puzzle-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/tables-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/themes-1920x1280-bw.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/typography-1920x1280-bw.jpg +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/themes/j1/adapter/js/attic.js +563 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/back2top.js +227 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/carousel.js +313 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/cookie_consent.js +259 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/framer.js +208 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/gallery_customizer.js +427 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/j1.js +2034 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/justified_gallery.js +403 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/lightbox.js +181 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/logger.js +316 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/navigator.js +782 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/scroller.js +177 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/searcher.js +193 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/themer.js +357 -0
- data/lib/starter_web/assets/themes/j1/adapter/js/toccer.js +353 -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 +191 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.min.css +16 -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/iconify/js/iconify.min.js +13 -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/LICENSE +22 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/README.md +273 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/css/justifiedGallery.css +110 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/css/justifiedGallery.min.css +110 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/css/theme/uno.css +23 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/js/justifiedGallery.3.7.0.js +1229 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/js/justifiedGallery.js +1229 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/js/justifiedGallery.min.js +8 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/less/.csslintrc +20 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v3.7.0/less/justifiedGallery.less +113 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v4.0.0/css/justifiedGallery.css +110 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v4.0.0/css/justifiedGallery.min.css +110 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v4.0.0/css/theme/uno.css +23 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v4.0.0/js/jquery.justifiedGallery.js +1229 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/_versions/v4.0.0/js/jquery.justifiedGallery.min.js +8 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.css +110 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.min.css +110 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/theme/uno.css +38 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/theme/uno.min.css +38 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.js +1229 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.min.js +8 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/core/lg-fb-comment-box.css +58 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/core/lg-fb-comment-box.min.css +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/core/lg-transitions.css +778 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/core/lg-transitions.min.css +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/core/lightgallery.css +981 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/core/lightgallery.min.css +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/fonts/lg.eot +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/fonts/lg.svg +47 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/fonts/lg.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/fonts/lg.woff +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/img/loading.gif +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/img/video-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/img/vimeo-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/img/youtube-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/animation-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/customize-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/dynamic-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/facebook-icon.svg +10 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/googleplus-icon.svg +30 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/html5-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/linked-in.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/module-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/play-button.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/responsive-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/thumb-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/touch-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/twitter-icon.svg +15 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/twitter.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/video1-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/zoom-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/icons/zoom.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/uno.css +263 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/themes/uno.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/core/lightgallery.js +1362 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/core/lightgallery.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/j1/j1-video.js +402 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/j1/j1-video.min.js +8 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-autoplay.js +206 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-autoplay.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-fullscreen.js +126 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-fullscreen.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-hash.js +101 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-hash.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-pager.js +105 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-pager.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-share.js +107 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-share.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-thumbnail.js +478 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-thumbnail.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-video.js +342 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-video.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-zoom.js +527 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/modules/lg-zoom.min.js +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/log4javascript/log4javascript.js +5826 -0
- data/lib/starter_web/assets/themes/j1/extensions/log4javascript/log4javascript.min.js +266 -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/themes/city.css +147 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/city.min.css +6 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/fantasy.css +113 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/fantasy.min.css +6 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/forest.css +165 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/forest.min.css +6 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/sea.css +72 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/themes/sea.min.css +6 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.css +1663 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/js/video.js +55690 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/js/video.min.js +28 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo/froogaloop/js/froogaloop2.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo/player/js/player.js +2138 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo/player/js/player.js.map +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo/player/js/player.min.js +2 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo/player/js/player.min.js.map +1 -0
- data/lib/starter_web/assets/videos/gallery/adriana-lima-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/kick-it-old-school-poster.jpg +0 -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/posts/private/readme +0 -0
- data/lib/starter_web/collections/posts/protected/readme +0 -0
- data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1-template.adoc.erb +160 -0
- data/lib/starter_web/collections/posts/public/featured/_posts/000_includes/attributes.asciidoc +47 -0
- data/lib/starter_web/collections/posts/public/featured/_posts/000_includes/unsplash-badge.asciidoc +31 -0
- data/lib/starter_web/collections/posts/public/featured/_posts/2019-05-01-top-open-source-static-site-generators.adoc +97 -0
- data/lib/starter_web/collections/posts/public/featured/_posts/2019-06-01-about-cookies.adoc +197 -0
- data/lib/starter_web/collections/posts/public/jekyll/_posts/2018-05-01-confusion-about-base-url.adoc +105 -0
- data/lib/starter_web/collections/posts/public/series/_posts/000_includes/attributes.asciidoc +66 -0
- data/lib/starter_web/collections/posts/public/series/_posts/000_includes/documents/100-docker-using-shared-folders.asciidoc +430 -0
- data/lib/starter_web/collections/posts/public/series/_posts/000_includes/documents/loop.sh +28 -0
- data/lib/starter_web/collections/posts/public/series/_posts/000_includes/tables/debug_variables.asciidoc +48 -0
- data/lib/starter_web/collections/posts/public/series/_posts/2018-11-01-docker-using-shared-folders.adoc +504 -0
- data/lib/starter_web/collections/posts/public/wikipedia/_posts/000_includes/attributes.asciidoc +46 -0
- data/lib/starter_web/collections/posts/public/wikipedia/_posts/000_includes/tables/debug_variables.asciidoc +48 -0
- data/lib/starter_web/collections/posts/public/wikipedia/_posts/2016-11-20-minneapolis.adoc +126 -0
- data/lib/starter_web/collections/posts/public/wikipedia/_posts/2016-11-24-narcisse-snake-dens.adoc +88 -0
- data/lib/starter_web/collections/posts/public/wikipedia/_posts/2016-11-26-columbia-river.adoc +86 -0
- data/lib/starter_web/config.ru +24 -0
- data/lib/starter_web/dot.gitattributes +31 -0
- data/lib/starter_web/dot.gitignore +55 -0
- data/lib/starter_web/dot.nojekyll +19 -0
- data/lib/starter_web/favicon.ico +0 -0
- data/lib/starter_web/index.html +68 -0
- data/lib/starter_web/package.json +136 -0
- data/lib/starter_web/pages/private/readme +0 -0
- data/lib/starter_web/pages/protected/readme +0 -0
- data/lib/starter_web/pages/public/about/about_site.adoc +40 -0
- data/lib/starter_web/pages/public/about/become_a_patron.adoc +50 -0
- data/lib/starter_web/pages/public/blog/navigator/archive.html +111 -0
- data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +153 -0
- data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +133 -0
- data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +187 -0
- data/lib/starter_web/pages/public/blog/navigator/index.html +47 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/attributes.asciidoc +174 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/documents/100_meet_and_greet_jekyll.asciidoc +31 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/documents/200_preparations.asciidoc +14 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/documents/300_first_awesome_web.asciidoc +12 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/000_includes/parts.asciidoc +193 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/100_meet_and_greet_jekyll.adoc +79 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/200_preparations.adoc +72 -0
- data/lib/starter_web/pages/public/learn/kickstarter/web_in_a_day/300_first_awesome_web.adoc +70 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_bs_tour.1.asciidoc +121 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_bs_tour.adoc +145 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_bs_tour_api.adoc +644 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/attributes.asciidoc +117 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/100_gistblock.asciidoc +27 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_bottom_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_bottom_left_warning.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_bottom_right_danger.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_central_success.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_full_height_left_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_full_height_right_success.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_table_3_column.asciidoc +47 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_top_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_top_left_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/410_top_right_success.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/roundtrip/000_includes/documents/419_advanced_modals_html.asciidoc +928 -0
- data/lib/starter_web/pages/public/learn/roundtrip/100_present_images.adoc +304 -0
- data/lib/starter_web/pages/public/learn/roundtrip/100_present_videos.adoc +152 -0
- data/lib/starter_web/pages/public/learn/roundtrip/200_typography.adoc +524 -0
- data/lib/starter_web/pages/public/learn/roundtrip/300_icon_fonts.adoc +435 -0
- data/lib/starter_web/pages/public/learn/roundtrip/400_asciidoc_extensions.adoc +536 -0
- data/lib/starter_web/pages/public/learn/roundtrip/410_bs_modals_extentions.adoc +128 -0
- data/lib/starter_web/pages/public/learn/roundtrip/420_responsive_tables_extensions.adoc +281 -0
- data/lib/starter_web/pages/public/learn/roundtrip/500_themes.adoc +138 -0
- data/lib/starter_web/pages/public/learn/roundtrip/bs_tour.js +98 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/attributes.asciidoc +117 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/100_gistblock.asciidoc +27 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_bottom_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_bottom_left_warning.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_bottom_right_danger.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_central_success.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_full_height_left_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_full_height_right_success.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_table_3_column.asciidoc +47 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_top_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_top_left_info.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/410_top_right_success.asciidoc +11 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_includes/documents/419_advanced_modals_html.asciidoc +928 -0
- data/lib/starter_web/pages/public/learn/vtutorials/000_test_youtube_video.adoc +141 -0
- data/lib/starter_web/pages/public/learn/vtutorials/100_basic_video.adoc +109 -0
- data/lib/starter_web/pages/public/learn/whats_up.adoc +117 -0
- data/lib/starter_web/pages/public/legal/de/100_impress.adoc +97 -0
- data/lib/starter_web/pages/public/legal/de/200_terms_of_use.adoc +54 -0
- data/lib/starter_web/pages/public/legal/de/300_privacy.adoc +300 -0
- data/lib/starter_web/pages/public/legal/de/400_license_agreement.adoc +394 -0
- data/lib/starter_web/pages/public/legal/de/500_support.adoc +19 -0
- data/lib/starter_web/pages/public/legal/en/000_copyright.adoc +89 -0
- data/lib/starter_web/pages/public/legal/en/100_impress.adoc +51 -0
- data/lib/starter_web/pages/public/legal/en/200_terms_of_use.adoc +48 -0
- data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +394 -0
- data/lib/starter_web/pages/public/legal/en/400_license_agreement.adoc +432 -0
- data/lib/starter_web/pages/public/legal/en/500_support.adoc +19 -0
- data/lib/starter_web/pages/public/legal/en/eu/cookie.policy.asciidoc +55 -0
- data/lib/starter_web/pages/public/panels/intro_panel/panel.adoc +158 -0
- data/lib/starter_web/pages/public/previewer/000_includes/attributes.asciidoc +116 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/100_absolute_sizes.asciidoc +39 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc +47 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/120_relative_sizes.asciidoc +87 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/200_rotate.asciidoc +71 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/300_flip.asciidoc +31 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/400_spin_pulsed.asciidoc +39 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/500_bw_color_palette.asciidoc +61 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/510_bs_color_palette.asciidoc +55 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/600_md_color_palette.asciidoc +95 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/601_md_color_palette_indigo.asciidoc +95 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/mdi_icons/602_md_color_palette_pink.asciidoc +95 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc +47 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/100_relative_sizes.asciidoc +47 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/200_rotate.asciidoc +71 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/300_flip.asciidoc +30 -0
- data/lib/starter_web/pages/public/previewer/000_includes/tables/twitter_emoji/400_spin_pulsed.asciidoc +31 -0
- data/lib/starter_web/pages/public/previewer/bootstrap_theme.adoc +1858 -0
- data/lib/starter_web/pages/public/previewer/iframer.adoc +83 -0
- data/lib/starter_web/pages/public/previewer/justified_gallery.html +33 -0
- data/lib/starter_web/pages/public/previewer/mdi_icons_preview.adoc +295 -0
- data/lib/starter_web/pages/public/previewer/twitter_emoji_preview.adoc +195 -0
- data/lib/starter_web/utilsrv/_defaults/package.json +52 -0
- data/lib/starter_web/utilsrv/package.json +52 -0
- data/lib/starter_web/utilsrv/server.js +601 -0
- metadata +1213 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# ------------------------------------------------------------------------------
|
|
2
|
+
# ~/_plugins/prettify.rb
|
|
3
|
+
# Liquid filter for J1 Template to beautify HTML code
|
|
4
|
+
#
|
|
5
|
+
# Product/Info:
|
|
6
|
+
# http://jekyll.one
|
|
7
|
+
#
|
|
8
|
+
# Copyright (C) 2020 Juergen Adams
|
|
9
|
+
#
|
|
10
|
+
# J1 Template is licensed under the MIT License.
|
|
11
|
+
# See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
|
|
12
|
+
#
|
|
13
|
+
# ------------------------------------------------------------------------------
|
|
14
|
+
#
|
|
15
|
+
# NOTE:
|
|
16
|
+
# CustomFilters cannot be used in SAFE mode (e.g not usable for
|
|
17
|
+
# rendering pages with Jekyll on GitHub
|
|
18
|
+
#
|
|
19
|
+
# USAGE:
|
|
20
|
+
# {% capture cache_name %}
|
|
21
|
+
#
|
|
22
|
+
# liquid code to generate HTML output goes here
|
|
23
|
+
#
|
|
24
|
+
# {% endcapture %}
|
|
25
|
+
# {{ cache_name | pretty_print }}
|
|
26
|
+
#
|
|
27
|
+
# ------------------------------------------------------------------------------
|
|
28
|
+
require 'nokogiri'
|
|
29
|
+
require 'nokogiri-pretty'
|
|
30
|
+
require 'htmlbeautifier'
|
|
31
|
+
|
|
32
|
+
module Jekyll
|
|
33
|
+
module PrettyPrint
|
|
34
|
+
def pretty_print(input)
|
|
35
|
+
# 1st_stage cleanup
|
|
36
|
+
content = Nokogiri::HTML input
|
|
37
|
+
parsed_content = content.to_html
|
|
38
|
+
# 2nd_stage cleanup
|
|
39
|
+
pretty = HtmlBeautifier.beautify(parsed_content)
|
|
40
|
+
pretty = pretty.sub('\s*<!DOCTYPE html>.*','<!DOCTYPE html>')
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
Liquid::Template.register_filter(Jekyll::PrettyPrint)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# ------------------------------------------------------------------------------
|
|
2
|
+
# ~/_plugins/simple_search_filter.rb
|
|
3
|
+
# Liquid filter's to be used with JekyllSimple Search
|
|
4
|
+
#
|
|
5
|
+
# Product/Info:
|
|
6
|
+
# http://jekyll.one
|
|
7
|
+
#
|
|
8
|
+
# Copyright (C) 2020 Juergen Adams
|
|
9
|
+
#
|
|
10
|
+
# J1 Template is licensed under the MIT License.
|
|
11
|
+
# See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
|
|
12
|
+
#
|
|
13
|
+
# ------------------------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
module Jekyll
|
|
16
|
+
module CharFilter
|
|
17
|
+
def remove_chars(input)
|
|
18
|
+
input.gsub! '\\','\'
|
|
19
|
+
input.gsub! /\t/, ' '
|
|
20
|
+
input.strip_control_and_extended_characters
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
Liquid::Template.register_filter(Jekyll::CharFilter)
|
|
26
|
+
|
|
27
|
+
class String
|
|
28
|
+
def strip_control_and_extended_characters()
|
|
29
|
+
chars.each_with_object("") do |char, str|
|
|
30
|
+
str << char if char.ascii_only? and char.ord.between?(32,126)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# ------------------------------------------------------------------------------
|
|
2
|
+
# ~/_plugins/symlink_watcher
|
|
3
|
+
# jekyll-watch extension to listen for changes in symlinked folders
|
|
4
|
+
#
|
|
5
|
+
# Product/Info:
|
|
6
|
+
# https://github.com/willnorris/willnorris.com/tree/master/src/_plugins/
|
|
7
|
+
# https://jekyll.one
|
|
8
|
+
#
|
|
9
|
+
# Copyright (C) 2002-2014 Will Norris
|
|
10
|
+
# Copyright (C) 2020 Juergen Adams
|
|
11
|
+
#
|
|
12
|
+
# symlink_watcher is licensed under the MIT license
|
|
13
|
+
# See: https://github.com/willnorris/willnorris.com/blob/master/LICENSE
|
|
14
|
+
# J1 Template is licensed under the MIT License.
|
|
15
|
+
# See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
|
|
16
|
+
#
|
|
17
|
+
# ------------------------------------------------------------------------------
|
|
18
|
+
# NOTE:
|
|
19
|
+
# The symlink_watcher plugin extends jekyll-watch to listen also
|
|
20
|
+
# for changes in any symlinked sub-directory.
|
|
21
|
+
#
|
|
22
|
+
# For example, in _drafts directory is a symlink to a directory
|
|
23
|
+
# elsewhere on the filesystem. This plugin will cause jekyll to
|
|
24
|
+
# regenerate the site when ANY file change in the drafts folder.
|
|
25
|
+
# ------------------------------------------------------------------------------
|
|
26
|
+
require "find"
|
|
27
|
+
require "jekyll-watch"
|
|
28
|
+
|
|
29
|
+
module Jekyll
|
|
30
|
+
module Watcher
|
|
31
|
+
def build_listener_with_symlinks(site, options)
|
|
32
|
+
src = options["source"]
|
|
33
|
+
dirs = [src]
|
|
34
|
+
Find.find(src).each do |f|
|
|
35
|
+
next if f == "#{src}/_drafts" and not options["show_drafts"]
|
|
36
|
+
# TODO: willnorris, filter ignored files
|
|
37
|
+
dirs << f if File.directory?(f) and File.symlink?(f)
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
require "listen"
|
|
41
|
+
Listen.to(
|
|
42
|
+
*dirs,
|
|
43
|
+
:ignore => listen_ignore_paths(options),
|
|
44
|
+
:force_polling => options['force_polling'],
|
|
45
|
+
&(listen_handler(site))
|
|
46
|
+
)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
alias_method :build_listener_without_symlinks, :build_listener
|
|
50
|
+
alias_method :build_listener, :build_listener_with_symlinks
|
|
51
|
+
end
|
|
52
|
+
end
|
|
@@ -0,0 +1,1650 @@
|
|
|
1
|
+
# ------------------------------------------------------------------------------
|
|
2
|
+
# ~/admin/config/config.yml
|
|
3
|
+
# Netlify CMS configuration for J1 Template
|
|
4
|
+
#
|
|
5
|
+
# Product/Info:
|
|
6
|
+
# https://jekyll.one
|
|
7
|
+
#
|
|
8
|
+
# Copyright (C) 2020 Juergen Adams
|
|
9
|
+
#
|
|
10
|
+
# J1 Template is licensed under the MIT License.
|
|
11
|
+
# See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
|
|
12
|
+
#
|
|
13
|
+
# ------------------------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
# ==============================================================================
|
|
16
|
+
# Global settings
|
|
17
|
+
#
|
|
18
|
+
|
|
19
|
+
# ------------------------------------------------------------------------------
|
|
20
|
+
# Backend settings (Repo|OAuth Client)
|
|
21
|
+
#
|
|
22
|
+
# publish_mode: editorial_workflow
|
|
23
|
+
#
|
|
24
|
+
backend:
|
|
25
|
+
# git-gateway
|
|
26
|
+
name: github
|
|
27
|
+
# path to your GitHub repository (w/o https://github.com/)
|
|
28
|
+
repo: your-repo
|
|
29
|
+
# e.g master | develop
|
|
30
|
+
branch: your-repo-branch
|
|
31
|
+
# url of 'external' oauth client (e.g. j1 utility server at: http://localhost:44444)
|
|
32
|
+
# base_url: http://localhost:44444 # web
|
|
33
|
+
# base_url: http://localhost:5000 # app
|
|
34
|
+
# base_url: http:/your.domain:port # app
|
|
35
|
+
# NOTE: for domain localhost, baseurl could be set to EMPTY
|
|
36
|
+
base_url:
|
|
37
|
+
|
|
38
|
+
# ------------------------------------------------------------------------------
|
|
39
|
+
# Site (production) settings
|
|
40
|
+
#
|
|
41
|
+
# logo_url: your-logo-url
|
|
42
|
+
# site_url: your-site-url
|
|
43
|
+
# display_url: your-display-url
|
|
44
|
+
#
|
|
45
|
+
show_preview_links: false
|
|
46
|
+
|
|
47
|
+
# ------------------------------------------------------------------------------
|
|
48
|
+
# Media (asset) settings
|
|
49
|
+
#
|
|
50
|
+
# media_library:
|
|
51
|
+
# name: uploadcare
|
|
52
|
+
# config:
|
|
53
|
+
# publicKey: demopublickey
|
|
54
|
+
#
|
|
55
|
+
media_folder: /assets/images/public
|
|
56
|
+
public_folder: /assets/uploads/
|
|
57
|
+
|
|
58
|
+
# ------------------------------------------------------------------------------
|
|
59
|
+
# File (name) settings
|
|
60
|
+
#
|
|
61
|
+
# The slug option allows you to change how filenames for entries are
|
|
62
|
+
# created and sanitized. For modifying the actual data in a slug, see
|
|
63
|
+
# the per-collection option below.
|
|
64
|
+
#
|
|
65
|
+
slug:
|
|
66
|
+
encoding: unicode
|
|
67
|
+
clean_accents: true
|
|
68
|
+
sanitize_replacement: "_"
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# ==============================================================================
|
|
73
|
+
# Collection (files and folders) settings
|
|
74
|
+
#
|
|
75
|
+
collections:
|
|
76
|
+
|
|
77
|
+
# ----------------------------------------------------------------------------
|
|
78
|
+
# Site Configuration
|
|
79
|
+
#
|
|
80
|
+
- label: Site Configuration
|
|
81
|
+
name: site_config
|
|
82
|
+
files:
|
|
83
|
+
|
|
84
|
+
# ------------------------------------------------------------------------
|
|
85
|
+
# Global Site Configuration
|
|
86
|
+
#
|
|
87
|
+
- label: Global Settings
|
|
88
|
+
name: global_site_config
|
|
89
|
+
file: _cc_test_data/_config.yml
|
|
90
|
+
fields:
|
|
91
|
+
|
|
92
|
+
# --------------------------------------------------------------------
|
|
93
|
+
# About this configuration (used for J1 CC only)
|
|
94
|
+
#
|
|
95
|
+
- label: about
|
|
96
|
+
name: about_config
|
|
97
|
+
widget: object
|
|
98
|
+
fields:
|
|
99
|
+
- { label: title, name: title, widget: string, hint: General site settings to customize how a site is built }
|
|
100
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
101
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
102
|
+
|
|
103
|
+
# --------------------------------------------------------------------
|
|
104
|
+
# BUILD configuration
|
|
105
|
+
#
|
|
106
|
+
- { label: environment, name: environment, widget: string, hint: TBD }
|
|
107
|
+
- { label: version, name: version, widget: string, hint: TBD }
|
|
108
|
+
|
|
109
|
+
# --------------------------------------------------------------------
|
|
110
|
+
# THEME configuration
|
|
111
|
+
#
|
|
112
|
+
- { label: theme, name: theme, widget: string, hint: TBD }
|
|
113
|
+
- label: template
|
|
114
|
+
name: template
|
|
115
|
+
widget: object
|
|
116
|
+
fields:
|
|
117
|
+
- { label: name, name: name, widget: string, hint: TBD }
|
|
118
|
+
- { label: config, name: config, widget: string, hint: TBD }
|
|
119
|
+
|
|
120
|
+
# --------------------------------------------------------------------
|
|
121
|
+
# SITE configuration
|
|
122
|
+
#
|
|
123
|
+
- { label: language, name: language, widget: string, hint: TBD }
|
|
124
|
+
- { label: coding, name: coding, widget: string, hint: TBD }
|
|
125
|
+
- { label: doctype, name: doctype, widget: string, hint: TBD }
|
|
126
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
127
|
+
- { label: slogan, name: slogan, widget: string, hint: TBD }
|
|
128
|
+
- { label: description, name: description, widget: string, hint: TBD }
|
|
129
|
+
- { label: keywords, name: keywords, widget: text, hint: TBD }
|
|
130
|
+
|
|
131
|
+
- label: author
|
|
132
|
+
name: author
|
|
133
|
+
widget: object
|
|
134
|
+
fields:
|
|
135
|
+
- { label: name, name: name, widget: string, hint: TBD }
|
|
136
|
+
- { label: email, name: email, widget: string, hint: TBD }
|
|
137
|
+
- { label: github, name: github, widget: string, hint: TBD }
|
|
138
|
+
- { label: twitter, name: twitter, widget: string, hint: TBD }
|
|
139
|
+
|
|
140
|
+
- label: robots
|
|
141
|
+
name: robots
|
|
142
|
+
widget: object
|
|
143
|
+
fields:
|
|
144
|
+
- { label: index, name: name, widget: boolean, hint: TBD }
|
|
145
|
+
- { label: follow, name: email, widget: boolean, hint: TBD }
|
|
146
|
+
|
|
147
|
+
# --------------------------------------------------------------------
|
|
148
|
+
# BRAND configuration
|
|
149
|
+
#
|
|
150
|
+
- label: brand
|
|
151
|
+
name: brand
|
|
152
|
+
widget: object
|
|
153
|
+
fields:
|
|
154
|
+
- { label: image, name: image, widget: string, hint: TBD }
|
|
155
|
+
- { label: image_height, name: image_height, widget: string, hint: TBD }
|
|
156
|
+
- { label: text, name: text, widget: string, hint: TBD }
|
|
157
|
+
- { label: text_color, name: text_color, widget: string, hint: TBD }
|
|
158
|
+
|
|
159
|
+
- label: favicon
|
|
160
|
+
name: favicon
|
|
161
|
+
widget: object
|
|
162
|
+
fields:
|
|
163
|
+
- { label: image, name: image, widget: string, hint: TBD }
|
|
164
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
165
|
+
|
|
166
|
+
# --------------------------------------------------------------------
|
|
167
|
+
# JEKYLL specific site configuration
|
|
168
|
+
#
|
|
169
|
+
- { label: permalink, name: permalink, widget: string, hint: TBD }
|
|
170
|
+
- { label: url, name: url, widget: string, hint: TBD }
|
|
171
|
+
- { label: baseurl, name: baseurl, widget: string, hint: TBD }
|
|
172
|
+
- { label: base_path, name: base_path, widget: string, hint: TBD }
|
|
173
|
+
- { label: protocol, name: protocol, widget: string, hint: TBD }
|
|
174
|
+
- { label: host, name: host, widget: string, hint: TBD }
|
|
175
|
+
- { label: port, name: port, widget: string, hint: TBD }
|
|
176
|
+
- { label: detach, name: detach, widget: boolean, hint: TBD }
|
|
177
|
+
- { label: encoding, name: encoding, widget: string, hint: TBD }
|
|
178
|
+
- { label: show_dir_listing, name: show_dir_listing, widget: boolean, hint: TBD }
|
|
179
|
+
|
|
180
|
+
# --------------------------------------------------------------------
|
|
181
|
+
# PATH configuration
|
|
182
|
+
#
|
|
183
|
+
- { label: source, name: source, widget: string, hint: TBD }
|
|
184
|
+
- { label: destination, name: destination, widget: string, hint: TBD }
|
|
185
|
+
- { label: plugins_dir, name: plugins_dir, widget: string, hint: TBD }
|
|
186
|
+
- { label: layouts_dir, name: layouts_dir, widget: string, hint: TBD }
|
|
187
|
+
- { label: data_dir, name: data_dir, widget: string, hint: TBD }
|
|
188
|
+
- { label: includes_dir, name: includes_dir, widget: string, hint: TBD }
|
|
189
|
+
- { label: collections_dir, name: collections_dir, widget: string, hint: TBD }
|
|
190
|
+
|
|
191
|
+
# --------------------------------------------------------------------
|
|
192
|
+
# FILES configuration
|
|
193
|
+
#
|
|
194
|
+
- { label: include, name: include, widget: list, hint: TBD }
|
|
195
|
+
- { label: exclude, name: exclude, widget: list, hint: TBD }
|
|
196
|
+
- { label: keep_files, name: keep_files, widget: list, hint: TBD }
|
|
197
|
+
- { label: safe, name: safe, widget: boolean, hint: TBD }
|
|
198
|
+
- { label: strict_front_matter, name: strict_front_matter, widget: boolean, hint: TBD }
|
|
199
|
+
|
|
200
|
+
# --------------------------------------------------------------------
|
|
201
|
+
# SASS conversion options
|
|
202
|
+
#
|
|
203
|
+
- label: sass
|
|
204
|
+
name: sass
|
|
205
|
+
widget: object
|
|
206
|
+
fields:
|
|
207
|
+
- { label: sass_dir, name: sass_dir, widget: string, hint: General J1 Template settings to specify ALL resources used by a site or a layout }
|
|
208
|
+
- { label: style, name: style, widget: select, options: [ compact,compressed,expanded,nested ], hint: TBD }
|
|
209
|
+
|
|
210
|
+
# --------------------------------------------------------------------
|
|
211
|
+
# WEBRICK customizations
|
|
212
|
+
#
|
|
213
|
+
# - label: webrick
|
|
214
|
+
# name: webrick
|
|
215
|
+
# widget: object
|
|
216
|
+
# hint: WEBRICK customizations
|
|
217
|
+
# fields:
|
|
218
|
+
# - label: headers
|
|
219
|
+
# name: headers
|
|
220
|
+
# widget: object
|
|
221
|
+
# fields:
|
|
222
|
+
# - { label: My-Header, name: My-Header, widget: string, hint: TBD }
|
|
223
|
+
|
|
224
|
+
# --------------------------------------------------------------------
|
|
225
|
+
# POSTS Management
|
|
226
|
+
#
|
|
227
|
+
- { label: future, name: future, widget: boolean, hint: TBD }
|
|
228
|
+
- { label: show_drafts, name: show_drafts, widget: boolean, hint: TBD }
|
|
229
|
+
- { label: unpublished, name: unpublished, widget: boolean, hint: TBD }
|
|
230
|
+
- { label: limit_posts, name: limit_posts, widget: number, min: 10, max: 100 , hint: TBD }
|
|
231
|
+
|
|
232
|
+
# --------------------------------------------------------------------
|
|
233
|
+
# LIQUID template engine
|
|
234
|
+
#
|
|
235
|
+
- label: LIQUID template engine
|
|
236
|
+
name: liquid
|
|
237
|
+
widget: object
|
|
238
|
+
fields:
|
|
239
|
+
- { label: error mode, name: error_mode, widget: select, options: [ lax,warn,strict ], hint: TBD }
|
|
240
|
+
- { label: strict_filters, name: strict_filters, widget: boolean, hint: TBD }
|
|
241
|
+
|
|
242
|
+
# --------------------------------------------------------------------
|
|
243
|
+
# PLUGIN configuration
|
|
244
|
+
#
|
|
245
|
+
- { label: PLUGIN configuration, name: plugins, widget: list, hint: TBD }
|
|
246
|
+
|
|
247
|
+
# --------------------------------------------------------------------
|
|
248
|
+
# JEKYLL FEED
|
|
249
|
+
#
|
|
250
|
+
- label: JEKYLL FEED
|
|
251
|
+
name: feed
|
|
252
|
+
widget: object
|
|
253
|
+
fields:
|
|
254
|
+
- { label: path, name: path, widget: string, hint: TBD }
|
|
255
|
+
|
|
256
|
+
# --------------------------------------------------------------------
|
|
257
|
+
# MARKDOWN
|
|
258
|
+
#
|
|
259
|
+
- { label: markdown mode, name: markdown, widget: string, hint: TBD }
|
|
260
|
+
- { label: markdown_ext, name: markdown_ext, widget: string, hint: TBD }
|
|
261
|
+
- label: MARKDOWN settings
|
|
262
|
+
name: kramdown
|
|
263
|
+
widget: object
|
|
264
|
+
fields:
|
|
265
|
+
- { label: input, name: input, widget: string, hint: TBD }
|
|
266
|
+
- { label: auto_ids, name: auto_ids, widget: string, hint: TBD }
|
|
267
|
+
- { label: footnote nr, name: footnote_nr, widget: string, hint: TBD }
|
|
268
|
+
- { label: entity_output, name: entity_output, widget: string, hint: TBD }
|
|
269
|
+
- { label: toc levels, name: toc_levels, widget: string, hint: TBD }
|
|
270
|
+
- { label: smart quotes, name: smart_quotes, widget: string, hint: TBD }
|
|
271
|
+
- { label: syntax_highlighter, name: syntax_highlighter, widget: string, hint: TBD }
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
# --------------------------------------------------------------------
|
|
275
|
+
# ASCIIDOCTOR
|
|
276
|
+
#
|
|
277
|
+
- label: asciidoc attributes
|
|
278
|
+
name: asciidoc_attributes
|
|
279
|
+
widget: object
|
|
280
|
+
fields:
|
|
281
|
+
- { label: hardbreaks-option, name: hardbreaks-option, widget: boolean, hint: TBD }
|
|
282
|
+
- { label: source-highlighter, name: source-highlighter, widget: string, hint: TBD }
|
|
283
|
+
- { label: icons, name: icons, widget: string, hint: TBD }
|
|
284
|
+
- { label: imagesdir, name: imagesdir, widget: string, hint: TBD }
|
|
285
|
+
- { label: iconsdir, name: iconsdir, widget: string, hint: TBD }
|
|
286
|
+
|
|
287
|
+
- label: asciidoc processing
|
|
288
|
+
name: asciidoc
|
|
289
|
+
widget: object
|
|
290
|
+
fields:
|
|
291
|
+
- { label: processor, name: processor, widget: string, hint: TBD }
|
|
292
|
+
- { label: require_front_matter_header, name: require_front_matter_header, widget: string, hint: TBD }
|
|
293
|
+
- { label: ext, name: ext, widget: string, hint: TBD }
|
|
294
|
+
|
|
295
|
+
- label: asciidoctor settings
|
|
296
|
+
name: asciidoctor
|
|
297
|
+
widget: object
|
|
298
|
+
fields:
|
|
299
|
+
- { label: safe, name: safe, widget: select, options: [ safe,unsafe ], hint: TBD }
|
|
300
|
+
- { label: template_dir, name: template_dir, widget: string, hint: TBD }
|
|
301
|
+
- { label: attributes, name: attributes, widget: object, hint: TBD }
|
|
302
|
+
|
|
303
|
+
# --------------------------------------------------------------------
|
|
304
|
+
# ALGOLIA Search
|
|
305
|
+
#
|
|
306
|
+
- label: ALGOLIA Search
|
|
307
|
+
name: algolia
|
|
308
|
+
widget: object
|
|
309
|
+
fields:
|
|
310
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
311
|
+
- { label: application_id, name: application_id, widget: string, hint: TBD }
|
|
312
|
+
- { label: search_only_api_key, name: search_only_api_key, widget: string, hint: TBD }
|
|
313
|
+
- { label: index_name, name: index_name, widget: string, hint: TBD }
|
|
314
|
+
- { label: extensions_to_index, name: extensions_to_index, widget: list, hint: TBD }
|
|
315
|
+
- { label: files_to_exclude, name: files_to_exclude, widget: list, hint: TBD }
|
|
316
|
+
|
|
317
|
+
# --------------------------------------------------------------------
|
|
318
|
+
# AUTH Manager
|
|
319
|
+
#
|
|
320
|
+
- label: AUTH Manager
|
|
321
|
+
name: j1_auth
|
|
322
|
+
widget: object
|
|
323
|
+
fields:
|
|
324
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
325
|
+
- { label: ssl, name: ssl, widget: boolean, hint: TBD }
|
|
326
|
+
- label: CONTENT filter settings
|
|
327
|
+
name: content
|
|
328
|
+
widget: object
|
|
329
|
+
fields:
|
|
330
|
+
- { label: public, name: public, widget: list, hint: TBD }
|
|
331
|
+
- { label: protected, name: protected, widget: list, hint: TBD }
|
|
332
|
+
- { label: private, name: private, widget: list, hint: TBD }
|
|
333
|
+
- label: PROVIDER settings
|
|
334
|
+
name: providers
|
|
335
|
+
widget: object
|
|
336
|
+
fields:
|
|
337
|
+
- { label: activated, name: activated, widget: list, hint: TBD }
|
|
338
|
+
- label: disqus
|
|
339
|
+
name: disqus
|
|
340
|
+
widget: object
|
|
341
|
+
fields:
|
|
342
|
+
- { label: provider_url, name: provider_url, widget: string, hint: TBD }
|
|
343
|
+
- { label: strategy, name: strategy, widget: string, hint: TBD }
|
|
344
|
+
- { label: scope, name: scope, widget: list, hint: TBD }
|
|
345
|
+
- { label: users, name: users, widget: list, hint: TBD }
|
|
346
|
+
- { label: permissions, name: permissions, widget: list, hint: TBD }
|
|
347
|
+
- { label: data_fields, name: data_fields, widget: list, hint: TBD }
|
|
348
|
+
- label: conditions
|
|
349
|
+
name: conditions
|
|
350
|
+
widget: object
|
|
351
|
+
fields:
|
|
352
|
+
- label: protected
|
|
353
|
+
name: protected
|
|
354
|
+
widget: object
|
|
355
|
+
fields:
|
|
356
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
357
|
+
- label: users
|
|
358
|
+
name: users
|
|
359
|
+
widget: object
|
|
360
|
+
fields:
|
|
361
|
+
- { label: blacklist, name: blacklist, widget: list, hint: TBD }
|
|
362
|
+
- label: private
|
|
363
|
+
name: private
|
|
364
|
+
widget: object
|
|
365
|
+
fields:
|
|
366
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
367
|
+
- label: users
|
|
368
|
+
name: users
|
|
369
|
+
widget: object
|
|
370
|
+
fields:
|
|
371
|
+
- { label: whitelist, name: blacklist, widget: list, hint: TBD }
|
|
372
|
+
- { label: blacklist, name: blacklist, widget: list, hint: TBD }
|
|
373
|
+
|
|
374
|
+
# --------------------------------------------------------------------
|
|
375
|
+
# SAFEMODE
|
|
376
|
+
#
|
|
377
|
+
- { label: SAFEMODE settings, name: whitelist, widget: list, hint: TBD }
|
|
378
|
+
|
|
379
|
+
# --------------------------------------------------------------------
|
|
380
|
+
# PAGE configuration
|
|
381
|
+
#
|
|
382
|
+
# EXCERPT settings
|
|
383
|
+
- { label: EXCERPT settings, name: excerpt_separator, widget: string, hint: TBD }
|
|
384
|
+
|
|
385
|
+
# ---------------------------------------------------------------------
|
|
386
|
+
# PAGINATION settings (Jekyll Paginate V2)
|
|
387
|
+
#
|
|
388
|
+
- label: PAGINATION settings
|
|
389
|
+
name: pagination
|
|
390
|
+
widget: object
|
|
391
|
+
fields:
|
|
392
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
393
|
+
- { label: permalink, name: permalink, widget: string, hint: TBD }
|
|
394
|
+
- { label: per_page, name: per_page, widget: number, min: 1, max: 100 , hint: TBD }
|
|
395
|
+
- { label: limit, name: limit, widget: number, min: 0, max: 100 , hint: TBD }
|
|
396
|
+
- { label: sort_reverse, name: sort_reverse, widget: boolean, hint: TBD }
|
|
397
|
+
- label: trail
|
|
398
|
+
name: trail
|
|
399
|
+
widget: object
|
|
400
|
+
fields:
|
|
401
|
+
- { label: before, name: before, widget: number, min: 1, max: 10 , hint: TBD }
|
|
402
|
+
- { label: after, name: after, widget: number, min: 1, max: 10 , hint: TBD }
|
|
403
|
+
|
|
404
|
+
# AUTOPAGE settings
|
|
405
|
+
#
|
|
406
|
+
- label: AUTOPAGE settings
|
|
407
|
+
name: autopages
|
|
408
|
+
widget: object
|
|
409
|
+
fields:
|
|
410
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
411
|
+
- label: tags
|
|
412
|
+
name: tags
|
|
413
|
+
widget: object
|
|
414
|
+
fields:
|
|
415
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
416
|
+
- { label: layouts, name: layouts, widget: list, hint: TBD }
|
|
417
|
+
- label: categories
|
|
418
|
+
name: categories
|
|
419
|
+
widget: object
|
|
420
|
+
fields:
|
|
421
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
422
|
+
- { label: layouts, name: layouts, widget: list, hint: TBD }
|
|
423
|
+
- label: collections
|
|
424
|
+
name: collections
|
|
425
|
+
widget: object
|
|
426
|
+
fields:
|
|
427
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
428
|
+
- { label: layouts, name: layouts, widget: list, hint: TBD }
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
# --------------------------------------------------------------------
|
|
432
|
+
# COLLECTION settings
|
|
433
|
+
#
|
|
434
|
+
- label: COLLECTION settings
|
|
435
|
+
name: collections
|
|
436
|
+
widget: object
|
|
437
|
+
fields:
|
|
438
|
+
# ----------------------------------------------------------------
|
|
439
|
+
# Featured articles
|
|
440
|
+
#
|
|
441
|
+
- label: featured
|
|
442
|
+
name: featured
|
|
443
|
+
widget: object
|
|
444
|
+
fields:
|
|
445
|
+
- { label: output, name: output, widget: boolean, hint: TBD }
|
|
446
|
+
- { label: permalink, name: permalink, widget: string, hint: TBD }
|
|
447
|
+
|
|
448
|
+
# --------------------------------------------------------------------
|
|
449
|
+
# FRONTMATTER defaults
|
|
450
|
+
#
|
|
451
|
+
- label: FRONTMATTER defaults
|
|
452
|
+
name: defaults
|
|
453
|
+
widget: list
|
|
454
|
+
fields:
|
|
455
|
+
# ----------------------------------------------------------------
|
|
456
|
+
# Pages
|
|
457
|
+
#
|
|
458
|
+
- label: Pages
|
|
459
|
+
name: name
|
|
460
|
+
widget: string
|
|
461
|
+
- label: Scope
|
|
462
|
+
name: scope
|
|
463
|
+
widget: object
|
|
464
|
+
fields:
|
|
465
|
+
- { label: path, name: path, widget: string, hint: TBD }
|
|
466
|
+
- { label: type, name: type, widget: select, options: [ pages, posts ], hint: TBD }
|
|
467
|
+
- label: values
|
|
468
|
+
name: values
|
|
469
|
+
widget: object
|
|
470
|
+
fields:
|
|
471
|
+
- { label: layout, name: layout, widget: string, hint: TBD }
|
|
472
|
+
- { label: author, name: author, widget: string, hint: TBD }
|
|
473
|
+
- { label: toc, name: toc, widget: boolean, hint: TBD }
|
|
474
|
+
- { label: resources, name: resources, widget: string, hint: TBD }
|
|
475
|
+
- { label: analytics, name: analytics, widget: boolean, hint: TBD }
|
|
476
|
+
- { label: advertising, name: advertising, widget: boolean, hint: TBD }
|
|
477
|
+
- { label: comments, name: comments, widget: boolean, hint: TBD }
|
|
478
|
+
- { label: scrollbar, name: scrollbar, widget: boolean, hint: TBD }
|
|
479
|
+
- { label: indexed, name: indexed, widget: boolean, hint: TBD }
|
|
480
|
+
- label: robots
|
|
481
|
+
name: robots
|
|
482
|
+
widget: object
|
|
483
|
+
fields:
|
|
484
|
+
- { label: index, name: index, widget: boolean, hint: TBD }
|
|
485
|
+
- { label: follow, name: follow, widget: boolean, hint: TBD }
|
|
486
|
+
- label: icons
|
|
487
|
+
name: icons
|
|
488
|
+
widget: object
|
|
489
|
+
fields:
|
|
490
|
+
- { label: family, name: family, widget: string, hint: TBD }
|
|
491
|
+
- { label: color, name: color, widget: string, hint: TBD }
|
|
492
|
+
- { label: size, name: size, widget: string, hint: TBD }
|
|
493
|
+
- label: images
|
|
494
|
+
name: images
|
|
495
|
+
widget: object
|
|
496
|
+
fields:
|
|
497
|
+
- { label: dir, name: dir, widget: string, hint: TBD }
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
# --------------------------------------------------------------------
|
|
501
|
+
# LAYOUT configuration
|
|
502
|
+
#
|
|
503
|
+
|
|
504
|
+
# ----------------------------------------------------------------
|
|
505
|
+
# COMPRESS (HTML) settings
|
|
506
|
+
#
|
|
507
|
+
- label: COMPRESS settings
|
|
508
|
+
name: compress_html
|
|
509
|
+
widget: object
|
|
510
|
+
fields:
|
|
511
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
512
|
+
- { label: profile, name: profile, widget: boolean, hint: TBD }
|
|
513
|
+
- { label: blanklines, name: blanklines, widget: boolean, hint: TBD }
|
|
514
|
+
- { label: comments, name: comments, widget: list, hint: TBD }
|
|
515
|
+
- { label: startings, name: startings, widget: list, hint: TBD }
|
|
516
|
+
- { label: clippings, name: clippings, widget: list, hint: TBD }
|
|
517
|
+
- { label: endings, name: endings, widget: list, hint: TBD }
|
|
518
|
+
- label: IGNORE settings
|
|
519
|
+
name: ignore
|
|
520
|
+
widget: object
|
|
521
|
+
fields:
|
|
522
|
+
- { label: envs, name: envs, widget: list, hint: TBD }
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
# ------------------------------------------------------------------------
|
|
526
|
+
# Resource settings
|
|
527
|
+
#
|
|
528
|
+
- label: Resource Settings
|
|
529
|
+
name: site_resource_settings
|
|
530
|
+
file: _cc_test_data/_data/resources.yml
|
|
531
|
+
fields:
|
|
532
|
+
|
|
533
|
+
# --------------------------------------------------------------------
|
|
534
|
+
# About this configuration (used for J1 CC only)
|
|
535
|
+
#
|
|
536
|
+
- label: about
|
|
537
|
+
name: about_config
|
|
538
|
+
widget: object
|
|
539
|
+
fields:
|
|
540
|
+
- { label: title, name: title, widget: string, hint: General J1 Template settings to specify ALL resources used by a site or a layout }
|
|
541
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
542
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
543
|
+
|
|
544
|
+
# --------------------------------------------------------------------
|
|
545
|
+
# Global settings
|
|
546
|
+
#
|
|
547
|
+
- label: user settings
|
|
548
|
+
name: globals
|
|
549
|
+
widget: object
|
|
550
|
+
fields:
|
|
551
|
+
- label: asset base path
|
|
552
|
+
name: base_path
|
|
553
|
+
widget: string
|
|
554
|
+
hint: Base path for all J1 Template assets (e.g. images)
|
|
555
|
+
- label: preferred location
|
|
556
|
+
name: location
|
|
557
|
+
widget: select
|
|
558
|
+
options: [ local, remote ]
|
|
559
|
+
default: local
|
|
560
|
+
hint: For J1 template, resources can be loaded from LOCAL assets folders or from REMOTE using e.g. a CDN on the internet
|
|
561
|
+
- label: extensions
|
|
562
|
+
name: extensions
|
|
563
|
+
widget: object
|
|
564
|
+
hint: For CSS and JS resources, NO extention (.css|.js) are given. EXTENSIONS are calculated AUTOMATICALLY based on the MODE (development|production) detected for a BUILD.
|
|
565
|
+
fields:
|
|
566
|
+
- { label: css extention development, name: css_dev, widget: select, options: [ css, min.css ], default: css, hint: TBD }
|
|
567
|
+
- { label: css extention production, name: css_prod, widget: select, options: [ css, min.css ], default: min.css, hint: TBD }
|
|
568
|
+
- { label: js extention development, name: js_dev, widget: select, options: [ js, min.js ], default: js, hint: TBD }
|
|
569
|
+
- { label: js extention production, name: js_prod, widget: select, options: [ js, min.js ], default: js.css, hint: TBD }
|
|
570
|
+
|
|
571
|
+
# --------------------------------------------------------------------
|
|
572
|
+
# Resource properties
|
|
573
|
+
#
|
|
574
|
+
- label: Resource Settings
|
|
575
|
+
name: resources
|
|
576
|
+
widget: list
|
|
577
|
+
fields:
|
|
578
|
+
- label: resource name
|
|
579
|
+
name: name
|
|
580
|
+
widget: string
|
|
581
|
+
hint: Arbitrary name of a resource
|
|
582
|
+
- label: resource
|
|
583
|
+
name: resource
|
|
584
|
+
widget: object
|
|
585
|
+
hint: Specifies all properties of a resource
|
|
586
|
+
fields:
|
|
587
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
588
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
589
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
590
|
+
- { label: region, name: region, widget: select, options: [ head, body-footer ], hint: TBD }
|
|
591
|
+
- { label: layout, name: layout, widget: select, options: [ home, page, post, collection, blog_archive, app, raw, all ], default: page, multiple: true, hint: TBD }
|
|
592
|
+
- { label: required, name: required, widget: select, options: [ always, ondemand ], hint: TBD }
|
|
593
|
+
- { label: script load, name: script_load, widget: select, options: [ sync, async, defer ], hint: TBD }
|
|
594
|
+
- { label: pass init data, name: pass_init_data, widget: boolean, hint: TBD }
|
|
595
|
+
- label: data
|
|
596
|
+
name: data
|
|
597
|
+
widget: object
|
|
598
|
+
fields:
|
|
599
|
+
- { label: css files, name: css, widget: "list", field: {label: CSS resource file} }
|
|
600
|
+
- { label: files, name: files, widget: "list", field: {label: General resource file} }
|
|
601
|
+
- { label: js files, name: js, widget: "list", field: {label: JS resource file} }
|
|
602
|
+
- { label: init functions, name: init_function, widget: "list", field: {label: JS initializer function} }
|
|
603
|
+
|
|
604
|
+
# ----------------------------------------------------------------------------
|
|
605
|
+
# Default Component Settings
|
|
606
|
+
#
|
|
607
|
+
- label: Component Configuration
|
|
608
|
+
name: component_default_settings
|
|
609
|
+
hint: Folder the configuration file is stored
|
|
610
|
+
files:
|
|
611
|
+
|
|
612
|
+
# ------------------------------------------------------------------------
|
|
613
|
+
# Banner settings
|
|
614
|
+
#
|
|
615
|
+
- label: Banner Settings
|
|
616
|
+
name: banner_settings
|
|
617
|
+
file: _cc_test_data/_data/blocks/banner.yml
|
|
618
|
+
fields:
|
|
619
|
+
|
|
620
|
+
# --------------------------------------------------------------------
|
|
621
|
+
# About this configuration (used for J1 CC only)
|
|
622
|
+
#
|
|
623
|
+
- label: about
|
|
624
|
+
name: about_config
|
|
625
|
+
widget: object
|
|
626
|
+
fields:
|
|
627
|
+
- { label: title, name: title, widget: string, hint: General J1 Template settings to specify ALL resources used by a site or a layout }
|
|
628
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
629
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
630
|
+
|
|
631
|
+
# --------------------------------------------------------------------
|
|
632
|
+
# USER settings
|
|
633
|
+
#
|
|
634
|
+
- label: User settings
|
|
635
|
+
name: settings
|
|
636
|
+
widget: object
|
|
637
|
+
fields:
|
|
638
|
+
# ----------------------------------------------------------------
|
|
639
|
+
# Divider Banner properties
|
|
640
|
+
#
|
|
641
|
+
- label: Divider Banner
|
|
642
|
+
name: divider
|
|
643
|
+
widget: list
|
|
644
|
+
fields:
|
|
645
|
+
- label: banner name
|
|
646
|
+
name: name
|
|
647
|
+
widget: string
|
|
648
|
+
hint: Arbitrary name of a resource
|
|
649
|
+
- label: Properties
|
|
650
|
+
name: banner
|
|
651
|
+
widget: object
|
|
652
|
+
hint: Specifies all properties of a banner
|
|
653
|
+
fields:
|
|
654
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
655
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
656
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
657
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
658
|
+
|
|
659
|
+
# ----------------------------------------------------------------
|
|
660
|
+
# Teaser Banner properties
|
|
661
|
+
#
|
|
662
|
+
- label: Teaser Banner
|
|
663
|
+
name: teaser
|
|
664
|
+
widget: list
|
|
665
|
+
fields:
|
|
666
|
+
- label: banner name
|
|
667
|
+
name: name
|
|
668
|
+
widget: string
|
|
669
|
+
hint: Arbitrary name of a banner
|
|
670
|
+
- label: Properties
|
|
671
|
+
name: banner
|
|
672
|
+
widget: object
|
|
673
|
+
hint: Specifies all properties of a banner
|
|
674
|
+
fields:
|
|
675
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
676
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
677
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
678
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
679
|
+
- { label: Icon Family, name: icon_family, widget: select, options: [ MDI, FA ], hint: Default Icon Family for the Navigation Module }
|
|
680
|
+
- { label: style, name: style, widget: select, options: [ light, dark ], hint: TBD }
|
|
681
|
+
- { label: background color 1, name: background_color_1, widget: string, hint: TBD }
|
|
682
|
+
- { label: background color 2, name: background_color_2, widget: string, hint: TBD }
|
|
683
|
+
- { label: lane span, name: lane_span, widget: select, options: [ fixed, fluid ], hint: TBD }
|
|
684
|
+
- { label: helper classes, name: helper_classes, widget: string, hint: Unique resource ID }
|
|
685
|
+
- label: Cards
|
|
686
|
+
name: cards
|
|
687
|
+
widget: list
|
|
688
|
+
hint: Specifies the content portion of a banner
|
|
689
|
+
fields:
|
|
690
|
+
- label: Content
|
|
691
|
+
name: name
|
|
692
|
+
widget: string
|
|
693
|
+
- label: Properties
|
|
694
|
+
name: card
|
|
695
|
+
widget: object
|
|
696
|
+
fields:
|
|
697
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
698
|
+
- { label: width, name: width, widget: number, min: 3, max: 12, hint: TBD }
|
|
699
|
+
- { label: type, name: type, widget: select, options: [ text ], hint: TBD }
|
|
700
|
+
- { label: animate, name: animate, widget: select, options: [ fadeInUp ], hint: TBD }
|
|
701
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
702
|
+
- { label: description, name: description, widget: text, hint: TBD }
|
|
703
|
+
- { label: tagline, name: tagline, widget: string, hint: TBD }
|
|
704
|
+
- label: Buttons
|
|
705
|
+
name: buttons
|
|
706
|
+
widget: list
|
|
707
|
+
hint: Defines all buttons
|
|
708
|
+
fields:
|
|
709
|
+
- label: Button Name
|
|
710
|
+
name: name
|
|
711
|
+
widget: string
|
|
712
|
+
- label: Button settings
|
|
713
|
+
name: button
|
|
714
|
+
widget: object
|
|
715
|
+
hint: Specifies buttons used this teaser
|
|
716
|
+
fields:
|
|
717
|
+
- { label: text, name: text, widget: string, hint: TBD }
|
|
718
|
+
- { label: class, name: class, widget: string, hint: TBD }
|
|
719
|
+
- { label: icon, name: icon, widget: string, hint: TBD }
|
|
720
|
+
- { label: icon_color, name: icon_color, widget: string, hint: TBD }
|
|
721
|
+
- { label: icon_size, name: icon_size, widget: string, hint: TBD }
|
|
722
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
# ----------------------------------------------------------------
|
|
726
|
+
# Image Banner properties
|
|
727
|
+
#
|
|
728
|
+
- label: Image Banner
|
|
729
|
+
name: image
|
|
730
|
+
widget: list
|
|
731
|
+
fields:
|
|
732
|
+
- label: banner name
|
|
733
|
+
name: name
|
|
734
|
+
widget: string
|
|
735
|
+
hint: Arbitrary name of a banner
|
|
736
|
+
- label: Properties
|
|
737
|
+
name: banner
|
|
738
|
+
widget: object
|
|
739
|
+
hint: Specifies all properties of a banner
|
|
740
|
+
fields:
|
|
741
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
742
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
743
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
744
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
745
|
+
- { label: background color 1, name: background_color_1, widget: string, hint: TBD }
|
|
746
|
+
- { label: background color 2, name: background_color_2, widget: string, hint: TBD }
|
|
747
|
+
- { label: lane span, name: lane_span, widget: select, options: [ fixed, fluid ], hint: TBD }
|
|
748
|
+
- { label: helper classes, name: helper_classes, widget: string, hint: Unique resource ID }
|
|
749
|
+
- label: Cards
|
|
750
|
+
name: cards
|
|
751
|
+
widget: list
|
|
752
|
+
hint: Specifies the content portion of a banner
|
|
753
|
+
fields:
|
|
754
|
+
- label: Content
|
|
755
|
+
name: name
|
|
756
|
+
widget: string
|
|
757
|
+
- label: Properties
|
|
758
|
+
name: card
|
|
759
|
+
widget: object
|
|
760
|
+
fields:
|
|
761
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
762
|
+
- { label: gridify, name: gridify, widget: boolean, hint: TBD }
|
|
763
|
+
- { label: size_y, name: size_y, widget: number, min: 300, max: 600, hint: TBD }
|
|
764
|
+
- { label: darken, name: darken, widget: number, min: 1, max: 10, hint: TBD }
|
|
765
|
+
- { label: background image, name: background_image, widget: string, hint: TBD }
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
# ----------------------------------------------------------------
|
|
769
|
+
# Parallax Banner
|
|
770
|
+
#
|
|
771
|
+
- label: Parallax Banner
|
|
772
|
+
name: parallax
|
|
773
|
+
widget: list
|
|
774
|
+
fields:
|
|
775
|
+
- label: banner name
|
|
776
|
+
name: name
|
|
777
|
+
widget: string
|
|
778
|
+
hint: Arbitrary name of a resource
|
|
779
|
+
- label: Properties
|
|
780
|
+
name: banner
|
|
781
|
+
widget: object
|
|
782
|
+
hint: Specifies all properties of a banner
|
|
783
|
+
fields:
|
|
784
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
785
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
786
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
787
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
788
|
+
- { label: style, name: style, widget: string, hint: TBD }
|
|
789
|
+
- { label: background color 1, name: background_color_1, widget: string, hint: TBD }
|
|
790
|
+
- { label: background color 2, name: background_color_2, widget: string, hint: TBD }
|
|
791
|
+
- { label: lane span, name: lane_span, widget: select, options: [ fixed, fluid ], hint: TBD }
|
|
792
|
+
- { label: helper classes, name: helper_classes, widget: string, hint: Unique resource ID }
|
|
793
|
+
- label: Cards
|
|
794
|
+
name: cards
|
|
795
|
+
widget: list
|
|
796
|
+
hint: Specifies the content portion of a banner
|
|
797
|
+
fields:
|
|
798
|
+
- label: Content
|
|
799
|
+
name: name
|
|
800
|
+
widget: string
|
|
801
|
+
- label: Properties
|
|
802
|
+
name: card
|
|
803
|
+
widget: object
|
|
804
|
+
fields:
|
|
805
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
806
|
+
- { label: type, name: type, widget: select, options: [ quote ], hint: TBD }
|
|
807
|
+
- { label: cite, name: cite, widget: string, hint: TBD }
|
|
808
|
+
- { label: cite text, name: cite_text, widget: text, hint: TBD }
|
|
809
|
+
- { label: cite color, name: cite_color, widget: string, hint: TBD }
|
|
810
|
+
- { label: gridify, name: gridify, widget: boolean, hint: TBD }
|
|
811
|
+
- { label: size_y, name: size_y, widget: number, min: 300, max: 600, hint: TBD }
|
|
812
|
+
- { label: darken, name: darken, widget: number, min: 1, max: 10, hint: TBD }
|
|
813
|
+
- { label: background_image, name: background_image, widget: string, hint: TBD }
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
# ------------------------------------------------------------------------
|
|
817
|
+
# Panel settings
|
|
818
|
+
#
|
|
819
|
+
- label: Panel Settings
|
|
820
|
+
name: panel_settings
|
|
821
|
+
file: _cc_test_data/_data/blocks/panel.yml
|
|
822
|
+
fields:
|
|
823
|
+
|
|
824
|
+
# --------------------------------------------------------------------
|
|
825
|
+
# About this configuration (used for J1 CC only)
|
|
826
|
+
#
|
|
827
|
+
- label: about
|
|
828
|
+
name: about_config
|
|
829
|
+
widget: object
|
|
830
|
+
fields:
|
|
831
|
+
- { label: title, name: title, widget: string, hint: General J1 Template settings to specify ALL resources used by a site or a layout }
|
|
832
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
833
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
834
|
+
|
|
835
|
+
# --------------------------------------------------------------------
|
|
836
|
+
# USER settings
|
|
837
|
+
#
|
|
838
|
+
- label: User settings
|
|
839
|
+
name: settings
|
|
840
|
+
widget: object
|
|
841
|
+
fields:
|
|
842
|
+
|
|
843
|
+
# ----------------------------------------------------------------
|
|
844
|
+
# INTRO Panel properties
|
|
845
|
+
#
|
|
846
|
+
- label: Intro Panel
|
|
847
|
+
name: intro
|
|
848
|
+
widget: list
|
|
849
|
+
fields:
|
|
850
|
+
- label: panel name
|
|
851
|
+
name: name
|
|
852
|
+
widget: string
|
|
853
|
+
hint: Arbitrary name of a panel
|
|
854
|
+
- label: Properties
|
|
855
|
+
name: panel
|
|
856
|
+
widget: object
|
|
857
|
+
hint: Specifies all properties of a panel
|
|
858
|
+
fields:
|
|
859
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
860
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
861
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
862
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
863
|
+
- { label: Icon Family, name: icon_family, widget: select, options: [ MDI, FA ], hint: Default Icon Family for the Navigation Module }
|
|
864
|
+
- { label: style, name: style, widget: select, options: [ flat, raised ], hint: TBD }
|
|
865
|
+
- { label: lane span, name: lane_span, widget: select, options: [ fixed, fluid ], hint: TBD }
|
|
866
|
+
- label: Cards
|
|
867
|
+
name: cards
|
|
868
|
+
widget: list
|
|
869
|
+
hint: Specifies the content portion of a panel
|
|
870
|
+
fields:
|
|
871
|
+
- label: Content
|
|
872
|
+
name: name
|
|
873
|
+
widget: string
|
|
874
|
+
- label: Properties
|
|
875
|
+
name: card
|
|
876
|
+
widget: object
|
|
877
|
+
fields:
|
|
878
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
879
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
880
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
881
|
+
- { label: tagline, name: tagline, widget: string, hint: TBD }
|
|
882
|
+
- { label: icon, name: icon, widget: string, hint: TBD }
|
|
883
|
+
- { label: icon_size, name: icon_size, widget: string, hint: TBD }
|
|
884
|
+
- { label: icon color, name: icon_color, widget: string, hint: TBD }
|
|
885
|
+
- { label: text, name: text, widget: text, hint: TBD }
|
|
886
|
+
- label: Buttons
|
|
887
|
+
name: buttons
|
|
888
|
+
widget: list
|
|
889
|
+
hint: Defines all buttons
|
|
890
|
+
fields:
|
|
891
|
+
- label: Button Name
|
|
892
|
+
name: name
|
|
893
|
+
widget: string
|
|
894
|
+
- label: Button settings
|
|
895
|
+
name: button
|
|
896
|
+
widget: object
|
|
897
|
+
hint: Specifies buttons used this teaser
|
|
898
|
+
fields:
|
|
899
|
+
- { label: text, name: text, widget: string, hint: TBD }
|
|
900
|
+
- { label: class, name: class, widget: string, hint: TBD }
|
|
901
|
+
- { label: icon, name: icon, widget: string, hint: TBD }
|
|
902
|
+
- { label: icon_color, name: icon_color, widget: string, hint: TBD }
|
|
903
|
+
- { label: icon_size, name: icon_size, widget: string, hint: TBD }
|
|
904
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
# ----------------------------------------------------------------
|
|
908
|
+
# SERVICE Panel properties
|
|
909
|
+
#
|
|
910
|
+
- label: Service Panel
|
|
911
|
+
name: service
|
|
912
|
+
widget: list
|
|
913
|
+
fields:
|
|
914
|
+
- label: panel name
|
|
915
|
+
name: name
|
|
916
|
+
widget: string
|
|
917
|
+
hint: Arbitrary name of a panel
|
|
918
|
+
- label: Properties
|
|
919
|
+
name: panel
|
|
920
|
+
widget: object
|
|
921
|
+
hint: Specifies all properties of a panel
|
|
922
|
+
fields:
|
|
923
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
924
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
925
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
926
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
927
|
+
- { label: Icon Family, name: icon_family, widget: select, options: [ MDI, FA ], hint: Default Icon Family for the Navigation Module }
|
|
928
|
+
- { label: style, name: style, widget: select, options: [ flat, raised ], hint: TBD }
|
|
929
|
+
- { label: lane span, name: lane_span, widget: select, options: [ fixed, fluid ], hint: TBD }
|
|
930
|
+
- label: Header
|
|
931
|
+
name: header
|
|
932
|
+
widget: object
|
|
933
|
+
fields:
|
|
934
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
935
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
936
|
+
- { label: description, name: description, widget: text, hint: TBD }
|
|
937
|
+
- label: Cards
|
|
938
|
+
name: cards
|
|
939
|
+
widget: list
|
|
940
|
+
hint: Specifies the content portion of a panel
|
|
941
|
+
fields:
|
|
942
|
+
- label: Content
|
|
943
|
+
name: name
|
|
944
|
+
widget: string
|
|
945
|
+
- label: Properties
|
|
946
|
+
name: card
|
|
947
|
+
widget: object
|
|
948
|
+
fields:
|
|
949
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
950
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
951
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
952
|
+
- { label: tagline, name: tagline, widget: string, hint: TBD }
|
|
953
|
+
- { label: icon, name: icon, widget: string, hint: TBD }
|
|
954
|
+
- { label: icon_size, name: icon_size, widget: string, hint: TBD }
|
|
955
|
+
- { label: icon color, name: icon_color, widget: string, hint: TBD }
|
|
956
|
+
- { label: text, name: text, widget: text, hint: TBD }
|
|
957
|
+
- label: Services
|
|
958
|
+
name: services
|
|
959
|
+
widget: list
|
|
960
|
+
hint: Specifies a list of services
|
|
961
|
+
fields:
|
|
962
|
+
- label: Service Name
|
|
963
|
+
name: name
|
|
964
|
+
widget: string
|
|
965
|
+
- label: Service Details
|
|
966
|
+
name: service
|
|
967
|
+
widget: object
|
|
968
|
+
fields:
|
|
969
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
970
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
# ----------------------------------------------------------------
|
|
974
|
+
# NEWS Panel properties
|
|
975
|
+
#
|
|
976
|
+
- label: News Panel
|
|
977
|
+
name: news
|
|
978
|
+
widget: list
|
|
979
|
+
fields:
|
|
980
|
+
- label: panel name
|
|
981
|
+
name: name
|
|
982
|
+
widget: string
|
|
983
|
+
hint: Arbitrary name of a panel
|
|
984
|
+
- label: Properties
|
|
985
|
+
name: panel
|
|
986
|
+
widget: object
|
|
987
|
+
hint: Specifies all properties of a panel
|
|
988
|
+
fields:
|
|
989
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
990
|
+
- { label: id, name: id, widget: string, hint: Unique resource ID }
|
|
991
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
992
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
993
|
+
- { label: style, name: style, widget: select, options: [ flat, raised ], hint: TBD }
|
|
994
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
995
|
+
- { label: tagline, name: tagline, widget: string, hint: TBD }
|
|
996
|
+
- { label: lane span, name: lane_span, widget: select, options: [ fixed, fluid ], hint: TBD }
|
|
997
|
+
- label: Cards
|
|
998
|
+
name: cards
|
|
999
|
+
widget: list
|
|
1000
|
+
hint: Specifies the content portion of a panel
|
|
1001
|
+
fields:
|
|
1002
|
+
- label: Content
|
|
1003
|
+
name: name
|
|
1004
|
+
widget: string
|
|
1005
|
+
- label: Properties
|
|
1006
|
+
name: card
|
|
1007
|
+
widget: object
|
|
1008
|
+
fields:
|
|
1009
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1010
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
1011
|
+
- { label: category, name: category, widget: string, hint: TBD }
|
|
1012
|
+
- { label: max_posts, name: max_posts, widget: number, min: 1, max: 5, hint: TBD }
|
|
1013
|
+
|
|
1014
|
+
# ------------------------------------------------------------------------
|
|
1015
|
+
# FOOTER settings
|
|
1016
|
+
#
|
|
1017
|
+
- label: Footer Settings
|
|
1018
|
+
name: footer_settings
|
|
1019
|
+
file: _cc_test_data/_data/blocks/footer.yml
|
|
1020
|
+
fields:
|
|
1021
|
+
|
|
1022
|
+
# --------------------------------------------------------------------
|
|
1023
|
+
# About this configuration (used for J1 CC only)
|
|
1024
|
+
#
|
|
1025
|
+
- label: about
|
|
1026
|
+
name: about_config
|
|
1027
|
+
widget: object
|
|
1028
|
+
fields:
|
|
1029
|
+
- { label: title, name: title, widget: string, hint: General J1 Template settings to specify ALL resources used by a site or a layout }
|
|
1030
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
1031
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
1032
|
+
|
|
1033
|
+
# --------------------------------------------------------------------
|
|
1034
|
+
# User settings
|
|
1035
|
+
#
|
|
1036
|
+
- label: user settings
|
|
1037
|
+
name: settings
|
|
1038
|
+
hint: User configuration settings for J1 Footers
|
|
1039
|
+
widget: object
|
|
1040
|
+
fields:
|
|
1041
|
+
|
|
1042
|
+
# ----------------------------------------------------------------
|
|
1043
|
+
# FOOTERS
|
|
1044
|
+
#
|
|
1045
|
+
- label: footers
|
|
1046
|
+
name: footers
|
|
1047
|
+
hint: Footers available for J1 Template pages
|
|
1048
|
+
widget: list
|
|
1049
|
+
fields:
|
|
1050
|
+
|
|
1051
|
+
# ----------------------------------------------------------------
|
|
1052
|
+
# Footer EN-EN
|
|
1053
|
+
#
|
|
1054
|
+
- label: footer name
|
|
1055
|
+
name: name
|
|
1056
|
+
widget: string
|
|
1057
|
+
hint: Arbitrary name of a footer
|
|
1058
|
+
- label: Properties
|
|
1059
|
+
name: footer
|
|
1060
|
+
widget: object
|
|
1061
|
+
fields:
|
|
1062
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1063
|
+
- { label: id, name: id, widget: string, hint: TBD }
|
|
1064
|
+
- { label: comment, name: comment, widget: string, hint: TBD }
|
|
1065
|
+
- { label: theme, name: theme, widget: string, hint: TBD }
|
|
1066
|
+
- label: issue settings
|
|
1067
|
+
name: issue
|
|
1068
|
+
widget: object
|
|
1069
|
+
fields:
|
|
1070
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1071
|
+
- { label: date, name: date, widget: string, hint: TBD }
|
|
1072
|
+
- { label: date_format, name: date_format, widget: string, hint: TBD }
|
|
1073
|
+
- { label: text, name: text, widget: string, hint: TBD }
|
|
1074
|
+
- label: icon settings
|
|
1075
|
+
name: icons
|
|
1076
|
+
widget: object
|
|
1077
|
+
fields:
|
|
1078
|
+
- label: facebook
|
|
1079
|
+
name: facebook
|
|
1080
|
+
widget: object
|
|
1081
|
+
fields:
|
|
1082
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1083
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
1084
|
+
- label: twitter
|
|
1085
|
+
name: twitter
|
|
1086
|
+
widget: object
|
|
1087
|
+
fields:
|
|
1088
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1089
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
1090
|
+
|
|
1091
|
+
- label: legal settings
|
|
1092
|
+
name: legals
|
|
1093
|
+
hint: TBD
|
|
1094
|
+
widget: list
|
|
1095
|
+
fields:
|
|
1096
|
+
- label: legal name
|
|
1097
|
+
name: name
|
|
1098
|
+
widget: string
|
|
1099
|
+
hint: Arbitrary name of a legal entity
|
|
1100
|
+
- label: Properties
|
|
1101
|
+
name: legal
|
|
1102
|
+
widget: object
|
|
1103
|
+
fields:
|
|
1104
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1105
|
+
- { label: type, name: type, widget: string, hint: TBD }
|
|
1106
|
+
- { label: statement, name: statement, widget: string, hint: TBD }
|
|
1107
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
1108
|
+
- label: box settings
|
|
1109
|
+
name: boxes
|
|
1110
|
+
hint: TBD
|
|
1111
|
+
widget: list
|
|
1112
|
+
types:
|
|
1113
|
+
|
|
1114
|
+
- label: About Box
|
|
1115
|
+
name: about
|
|
1116
|
+
widget: object
|
|
1117
|
+
fields:
|
|
1118
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1119
|
+
- { label: justify, name: justify, widget: boolean, hint: TBD }
|
|
1120
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
1121
|
+
- { label: text, name: text, widget: text, hint: TBD }
|
|
1122
|
+
|
|
1123
|
+
- label: News Box
|
|
1124
|
+
name: news
|
|
1125
|
+
widget: object
|
|
1126
|
+
fields:
|
|
1127
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1128
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
1129
|
+
- { label: category, name: category, widget: select, options: [ featured ], hint: TBD }
|
|
1130
|
+
- { label: max_posts, name: max_posts, widget: number, min: 1, max: 5, hint: TBD }
|
|
1131
|
+
|
|
1132
|
+
- label: Links Box
|
|
1133
|
+
name: references
|
|
1134
|
+
widget: object
|
|
1135
|
+
fields:
|
|
1136
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1137
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
1138
|
+
- label: links
|
|
1139
|
+
name: links
|
|
1140
|
+
hint: TBD
|
|
1141
|
+
widget: list
|
|
1142
|
+
fields:
|
|
1143
|
+
- label: Link name
|
|
1144
|
+
name: name
|
|
1145
|
+
widget: string
|
|
1146
|
+
hint: Arbitrary name of a link
|
|
1147
|
+
- label: link
|
|
1148
|
+
name: link
|
|
1149
|
+
widget: object
|
|
1150
|
+
fields:
|
|
1151
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
1152
|
+
- { label: tagline, name: tagline, widget: string, hint: TBD }
|
|
1153
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
1154
|
+
|
|
1155
|
+
- label: Contact Box
|
|
1156
|
+
name: contact
|
|
1157
|
+
widget: object
|
|
1158
|
+
fields:
|
|
1159
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1160
|
+
- { label: title, name: title, widget: string, hint: TBD }
|
|
1161
|
+
- label: address
|
|
1162
|
+
name: address
|
|
1163
|
+
widget: object
|
|
1164
|
+
fields:
|
|
1165
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1166
|
+
- { label: address_1, name: address_1, widget: string, hint: TBD }
|
|
1167
|
+
- { label: address_2, name: address_2, widget: string, hint: TBD }
|
|
1168
|
+
- { label: address_3, name: address_3, widget: string, hint: TBD }
|
|
1169
|
+
- label: phone
|
|
1170
|
+
name: phone
|
|
1171
|
+
widget: object
|
|
1172
|
+
fields:
|
|
1173
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1174
|
+
- { label: phone_1, name: phone_1, widget: string, hint: TBD }
|
|
1175
|
+
- { label: phone_2, name: phone_2, widget: string, hint: TBD }
|
|
1176
|
+
- label: internet
|
|
1177
|
+
name: internet
|
|
1178
|
+
widget: object
|
|
1179
|
+
fields:
|
|
1180
|
+
- { label: enabled, name: enabled, widget: boolean, hint: TBD }
|
|
1181
|
+
- { label: mail, name: mail, widget: string, hint: TBD }
|
|
1182
|
+
- { label: href, name: href, widget: string, hint: TBD }
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
# ============================================================================
|
|
1189
|
+
# Default Module Settings
|
|
1190
|
+
#
|
|
1191
|
+
- label: Module Configuration
|
|
1192
|
+
name: module_default_settings
|
|
1193
|
+
files:
|
|
1194
|
+
|
|
1195
|
+
# ------------------------------------------------------------------------
|
|
1196
|
+
# J1 Cookie Consent
|
|
1197
|
+
#
|
|
1198
|
+
- label: J1 Cookie Consent
|
|
1199
|
+
name: config_cookie_consent
|
|
1200
|
+
file: _cc_test_data/_data/modules/cookie_consent.yml
|
|
1201
|
+
fields:
|
|
1202
|
+
|
|
1203
|
+
# --------------------------------------------------------------------
|
|
1204
|
+
# About this configuration (used for J1 CC only)
|
|
1205
|
+
#
|
|
1206
|
+
- label: about
|
|
1207
|
+
name: about_config
|
|
1208
|
+
widget: object
|
|
1209
|
+
fields:
|
|
1210
|
+
- { label: module name, name: title, widget: string, hint: Manages dialogs to accept or decline on Cookies }
|
|
1211
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
1212
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
1213
|
+
|
|
1214
|
+
# --------------------------------------------------------------------
|
|
1215
|
+
# User settings
|
|
1216
|
+
#
|
|
1217
|
+
- label: user settings
|
|
1218
|
+
name: settings
|
|
1219
|
+
hint: User configuration settings for J1 Cookie Consent
|
|
1220
|
+
widget: object
|
|
1221
|
+
fields:
|
|
1222
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
1223
|
+
- { label: id, name: consent_modal_id, widget: string, hint: Name of the HTM (div) container the consent modal are placed }
|
|
1224
|
+
- { label: data path, name: modal_html_data_path, widget: string, hint: Path to HTML data portion for all modals used. Loaded via AJAX }
|
|
1225
|
+
- { label: stop scrolling, name: stop_scrolling, widget: boolean, hint: Enables or Disables scrolling of the underlying page }
|
|
1226
|
+
- { label: type, name: modal_type, widget: string, hint: Type of the consent modal used }
|
|
1227
|
+
- { label: position, name: modal_position, widget: string, hint: Position the consent modal is placed }
|
|
1228
|
+
- { label: title, name: consent_modals_title, widget: string, hint: Title used for the the consent modal }
|
|
1229
|
+
- { label: whitelisted pages, name: whitelisted_pages, widget: list, hint: List of pages no consent modal is presented (comma separated) }
|
|
1230
|
+
- label: category settings
|
|
1231
|
+
name: categories
|
|
1232
|
+
hint: Controls (if enabled) the summary table of cookies used
|
|
1233
|
+
widget: object
|
|
1234
|
+
fields:
|
|
1235
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the summary table }
|
|
1236
|
+
- { label: title, name: category_title, widget: string, hint: Title place on top of the summary table }
|
|
1237
|
+
- { label: description, name: category_description, widget: string, hint: Title of the information column }
|
|
1238
|
+
- { label: description text, name: category_description_text, widget: string, hint: Description in the information column }
|
|
1239
|
+
- { label: 1st column, name: category_session, widget: string, hint: Title of the 1st column }
|
|
1240
|
+
- { label: Indicator 1st column, name: category_session_enabled, widget: boolean, hint: Indicator if category is enabled or disabled }
|
|
1241
|
+
- { label: 2nd column, name: category_persistent, widget: string, hint: Title of the 2nd column }
|
|
1242
|
+
- { label: Indicator 2nd column, name: category_persistent_enabled, widget: boolean, hint: Indicator if category is enabled or disabled }
|
|
1243
|
+
- { label: 3rd column, name: category_first_party, widget: string, hint: Title of the 3rd column }
|
|
1244
|
+
- { label: Indicator 3rd column, name: category_first_party_enabled, widget: boolean, hint: Indicator if category is enabled or disabled }
|
|
1245
|
+
- { label: 4th column, name: category_second_party, widget: string, hint: Title of the 4th column }
|
|
1246
|
+
- { label: Indicator 4th column, name: category_second_party_enabled, widget: boolean, hint: Indicator if category is enabled or disabled }
|
|
1247
|
+
- label: button settings
|
|
1248
|
+
name: buttons
|
|
1249
|
+
hint: Controls what buttons are displayed
|
|
1250
|
+
widget: object
|
|
1251
|
+
fields:
|
|
1252
|
+
- { label: policy button text, name: policy_button_text, widget: string, hint: Button description }
|
|
1253
|
+
- { label: policy button, name: category_session_enabled, widget: boolean, hint: If checked the buttun is enabled }
|
|
1254
|
+
- { label: accept button text, name: accept_button_text, widget: string, hint: Button description }
|
|
1255
|
+
- { label: accept button, name: accept_button, widget: boolean, hint: If checked the buttun is enabled }
|
|
1256
|
+
- { label: decline button text, name: decline_button_text, widget: string, hint: Button description }
|
|
1257
|
+
- { label: decline button, name: decline_button, widget: boolean, hint: If checked the buttun is enabled }
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
# ------------------------------------------------------------------------
|
|
1261
|
+
# J1 Jekyll Search
|
|
1262
|
+
#
|
|
1263
|
+
- label: J1 Jekyll Search
|
|
1264
|
+
name: config_jekyll_search
|
|
1265
|
+
file: _cc_test_data/_data/modules/jekyll_search.yml
|
|
1266
|
+
fields:
|
|
1267
|
+
|
|
1268
|
+
# --------------------------------------------------------------------
|
|
1269
|
+
# About this configuration (used for J1 CC only)
|
|
1270
|
+
#
|
|
1271
|
+
- label: about
|
|
1272
|
+
name: about_config
|
|
1273
|
+
widget: object
|
|
1274
|
+
fields:
|
|
1275
|
+
- { label: module name, name: title, widget: string, hint: Simple site search based on automatically generated idex data }
|
|
1276
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
1277
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
1278
|
+
|
|
1279
|
+
# --------------------------------------------------------------------
|
|
1280
|
+
# User settings
|
|
1281
|
+
#
|
|
1282
|
+
- label: user settings
|
|
1283
|
+
name: settings
|
|
1284
|
+
hint: User configuration settings for J1 Jekyll Search
|
|
1285
|
+
widget: object
|
|
1286
|
+
fields:
|
|
1287
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
1288
|
+
- { label: Icon placement, name: placement, widget: select, options: [ navbar ], hint: Where to place to search icon }
|
|
1289
|
+
- { label: Window, name: target, widget: string, hint: Enables or Disables a new browser window for search results }
|
|
1290
|
+
- { label: search input container id, name: search_input, widget: string, hint: ID of the search input container }
|
|
1291
|
+
- { label: search output container id, name: results_output, widget: string, hint: ID of the search output container }
|
|
1292
|
+
- { label: index data file, name: index_data, widget: string, hint: Filename of the generated index data }
|
|
1293
|
+
- { label: result limit, name: result_limit, widget: number, hint: Limits the number of results }
|
|
1294
|
+
- { label: no results text, name: no_results_text, widget: string, hint: Text displayed if no results found }
|
|
1295
|
+
- { label: search item len, name: min_search_item_len, widget: number, min: 3, max: 8, hint: description }
|
|
1296
|
+
- { label: fuzzy search, name: search_fuzzy, widget: boolean, hint: Enables Fuzzy Search }
|
|
1297
|
+
- { label: exlude from search, name: search_exlude, widget: list, hint: List of pages excluded from search }
|
|
1298
|
+
- { label: result template, name: result_template, widget: text, hint: HTML to render search matches }
|
|
1299
|
+
|
|
1300
|
+
# ------------------------------------------------------------------------
|
|
1301
|
+
# J1 Navigation
|
|
1302
|
+
#
|
|
1303
|
+
- label: J1 Navigation
|
|
1304
|
+
name: config_navigation
|
|
1305
|
+
file: _cc_test_data/_data/modules/navigator.yml
|
|
1306
|
+
fields:
|
|
1307
|
+
|
|
1308
|
+
# --------------------------------------------------------------------
|
|
1309
|
+
# About this configuration (used for J1 CC only)
|
|
1310
|
+
#
|
|
1311
|
+
- label: about
|
|
1312
|
+
name: about_config
|
|
1313
|
+
widget: object
|
|
1314
|
+
fields:
|
|
1315
|
+
- { label: module name, name: title, widget: string, hint: "Multi purpose navigation builder, based on the Bootstrap V4 Framework. Provides functions to create a menu naviagation, quicklinks, sidebars and more" }
|
|
1316
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
1317
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
1318
|
+
|
|
1319
|
+
# --------------------------------------------------------------------
|
|
1320
|
+
# User settings
|
|
1321
|
+
#
|
|
1322
|
+
- label: user settings
|
|
1323
|
+
name: settings
|
|
1324
|
+
hint: User configuration settings for J1 Navigation Module
|
|
1325
|
+
widget: object
|
|
1326
|
+
fields:
|
|
1327
|
+
|
|
1328
|
+
- { label: Icon Family, name: icon_family, widget: select, options: [ MDI, FA ], hint: Default Icon Family for the Navigation Module }
|
|
1329
|
+
|
|
1330
|
+
# ----------------------------------------------------------------
|
|
1331
|
+
# Navigation Bar settings
|
|
1332
|
+
#
|
|
1333
|
+
- label: Navigation Bar settings
|
|
1334
|
+
name: nav_bar
|
|
1335
|
+
hint: Controls the main navigation bar
|
|
1336
|
+
widget: object
|
|
1337
|
+
fields:
|
|
1338
|
+
- { label: navigation bar id, name: id, widget: string, hint: ID of the Navigation bar }
|
|
1339
|
+
- { label: Media Breakpoint, name: media_breakpoint, widget: string, hint: Set the Media Breakpoint for the Navigation Bar get collapsed }
|
|
1340
|
+
- { label: brand position, name: brand_position, widget: string, hint: Place the brand image }
|
|
1341
|
+
- { label: brand type, name: brand_type, widget: select, options: [ image, text ], hint: Type of the brand image }
|
|
1342
|
+
- { label: brand type collapsed, name: brand_type_collapsed, widget: select, options: [ image, text ], hint: Type of the brand image if the menu bar is collapsed }
|
|
1343
|
+
- { label: fixed position, name: fixed, widget: boolean, hint: Defines the behaviour of the Menu bar if a page is scrolled }
|
|
1344
|
+
- { label: style, name: style, widget: select, options: [ overlay, embedded ], hint: Set how the Navigation Bar integrates with the page header }
|
|
1345
|
+
- { label: color, name: color, widget: string, hint: TBD }
|
|
1346
|
+
- { label: position, name: position, widget: select, options: [ left, center, right ], hint: Position of the menu bar }
|
|
1347
|
+
- { label: bottom line size, name: bottom_line_height, widget: number, min: 0, max: 5, hint: Size of the line at the bottom of the navigation bar }
|
|
1348
|
+
- { label: bottom line color, name: bottom_line_color, widget: string, hint: Color of the line at the bottom of the navigation bar }
|
|
1349
|
+
- { label: background color expanded, name: background_color_full, widget: string, hint: Background color of the menu bar if expanded }
|
|
1350
|
+
- { label: background color scrolled, name: background_color_scrolled, widget: string, hint: Background color of the menu bar if the page is scrolled }
|
|
1351
|
+
- { label: background color collapsed, name: background_color_collapsed, widget: string, hint: Background color of the menu bar if collapsed }
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
# ----------------------------------------------------------------
|
|
1355
|
+
# Navigation Menu settings
|
|
1356
|
+
#
|
|
1357
|
+
- label: Menu Bar settings
|
|
1358
|
+
name: nav_menu
|
|
1359
|
+
hint: Controls the behaviour of the Navigation Menu
|
|
1360
|
+
widget: object
|
|
1361
|
+
fields:
|
|
1362
|
+
- { label: menu id, name: id, widget: string, hint: ID of the menu bar container }
|
|
1363
|
+
- { label: data path, name: data_path, widget: string, hint: HTML portion of the menu bar (loaded via AJAX) }
|
|
1364
|
+
- { label: raised level, name: raised_level, widget: number, min: 0, max: 25, hint: TBD }
|
|
1365
|
+
- { label: delay menu open, name: delay_menu_open, widget: number, min: 0, max: 500, hint: Delays a menu to open measured in milliseconds }
|
|
1366
|
+
- { label: max lenght, name: max_height, number, min: 200, max: 1000, hint: Limits a menu for its lenght (y-axis) }
|
|
1367
|
+
- { label: menu font size, name: menu_font_size, widget: string, hint: Size of the font used for menu entries }
|
|
1368
|
+
- { label: megamenu font size, name: megamenu_font_size, widget: string, hint: Size of the font used for MEGA menu entries }
|
|
1369
|
+
- { label: menu item color, name: menu_item_color, widget: string, hint: Menu item color }
|
|
1370
|
+
- { label: menu item color selected, name: menu_item_color_hover, widget: string, hint: Menu item color if selected }
|
|
1371
|
+
- { label: dropdown style, name: dropdown_style, widget: select, options: [ raised, flat ], hint: Dropdown menu style }
|
|
1372
|
+
- { label: item style, name: dropdown_item_style, widget: select, options: [ raised, flat ], hint: Dropdown menu item style }
|
|
1373
|
+
- { label: animate, name: dropdown_animate, widget: boolean, hint: Enables animation on dropdown menus }
|
|
1374
|
+
- { label: animation on open, name: dropdown_animate_in, widget: string, hint: Animation if a dropdown menu is opened. See AnimateCSS for animation types }
|
|
1375
|
+
- { label: animation on close, name: dropdown_animate_out, widget: string, hint: Animation if a dropdown menu is closed. See AnimateCSS for animation types }
|
|
1376
|
+
- { label: animation duration, name: dropdown_animate_duration, widget: number, min: 0, max: 2000, hint: Duration an animation get finished. Duration is measured in milliseconds }
|
|
1377
|
+
- { label: item width, name: dropdown_item_width, number, min: 200, max: 1000, hint: TBD }
|
|
1378
|
+
- { label: menu height_max, name: dropdown_menu_height_max, widget: string, hint: TBD }
|
|
1379
|
+
- { label: font size, name: dropdown_font_size, widget: string, hint: TBD }
|
|
1380
|
+
- { label: padding x, name: dropdown_padding_x, widget: string, hint: TBD }
|
|
1381
|
+
- { label: padding y, name: dropdown_padding_y, widget: string, hint: TBD }
|
|
1382
|
+
- { label: item color, name: dropdown_item_color, widget: string, hint: TBD }
|
|
1383
|
+
- { label: border color, name: dropdown_border_color, widget: string, hint: TBD }
|
|
1384
|
+
- { label: border top, name: dropdown_border_top, widget: number, hint: TBD }
|
|
1385
|
+
- { label: border radius, name: dropdown_border_radius, widget: string, hint: TBD }
|
|
1386
|
+
- { label: background color hover, name: dropdown_background_color_hover, widget: string, hint: TBD }
|
|
1387
|
+
- { label: background color active, name: dropdown_background_color_active, widget: string, hint: TBD }
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
# ----------------------------------------------------------------
|
|
1391
|
+
# Navigation Quick Links settings
|
|
1392
|
+
#
|
|
1393
|
+
- label: QuickLinks settings
|
|
1394
|
+
name: nav_quicklinks
|
|
1395
|
+
hint: Controls the behaviour of the Quick Links
|
|
1396
|
+
widget: object
|
|
1397
|
+
fields:
|
|
1398
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables Quicklinks }
|
|
1399
|
+
- { label: id, name: id, widget: string, hint: ID of the Quicklinks bar }
|
|
1400
|
+
- { label: data path, name: data_path, widget: string, hint: HTML portion of Quicklinks (loaded via AJAX) }
|
|
1401
|
+
- { label: icon family, name: icon_family, widget: select, options: [ MDI, FA ], hint: TBD }
|
|
1402
|
+
- { label: icon color, name: icon_color, widget: string, hint: TBD }
|
|
1403
|
+
- { label: item color selected, name: icon_color_hover, widget: string, hint: TBD }
|
|
1404
|
+
- { label: item size, name: icon_size, widget: string, hint: TBD }
|
|
1405
|
+
- { label: cookies icon, name: cookies_icon, widget: string, hint: TBD }
|
|
1406
|
+
- { label: topsearch icon, name: top_search_icon, widget: string, hint: TBD }
|
|
1407
|
+
- { label: control center, name: control_center, widget: boolean, hint: TBD }
|
|
1408
|
+
- { label: control center icon, name: control_center_icon, widget: string, hint: TBD }
|
|
1409
|
+
- { label: sidebar, name: sidebar, widget: boolean, hint: TBD }
|
|
1410
|
+
- { label: sidebar icon, name: sidebar_icon, widget: string, hint: TBD }
|
|
1411
|
+
- { label: disqus icon, name: disqus_icon, widget: string, hint: TBD }
|
|
1412
|
+
- { label: disqus url, name: disqus_url, widget: string, hint: TBD }
|
|
1413
|
+
- { label: github icon, name: github_icon, widget: string, hint: TBD }
|
|
1414
|
+
- { label: github url, name: github_url, widget: string, hint: TBD }
|
|
1415
|
+
- { label: patreon icon, name: patreon_icon, widget: string, hint: TBD }
|
|
1416
|
+
- { label: patreon url, name: patreon_url, widget: string, hint: TBD }
|
|
1417
|
+
- { label: facebook icon, name: facebook_icon, widget: string, hint: TBD }
|
|
1418
|
+
- { label: facebook url, name: facebook_url, widget: string, hint: TBD }
|
|
1419
|
+
- { label: twitter icon, name: twitter_icon, widget: string, hint: TBD }
|
|
1420
|
+
- { label: twitter url, name: twitter_url, widget: string, hint: TBD }
|
|
1421
|
+
- { label: twitter url, name: twitter_url, widget: string, hint: TBD }
|
|
1422
|
+
- { label: signin, name: signin, widget: boolean, hint: TBD }
|
|
1423
|
+
- { label: signin client, name: signin_client, widget: select, options: [ enabled, disabled ], hint: TBD }
|
|
1424
|
+
- { label: signin icon, name: signin_icon, widget: string, hint: TBD }
|
|
1425
|
+
- { label: signout icon, name: signout_icon, widget: string, hint: TBD }
|
|
1426
|
+
|
|
1427
|
+
# ----------------------------------------------------------------
|
|
1428
|
+
# Navigation Top Search settings
|
|
1429
|
+
#
|
|
1430
|
+
- label: Topsearch settings
|
|
1431
|
+
name: nav_topsearch
|
|
1432
|
+
hint: Controls the behaviour of the Top Search
|
|
1433
|
+
widget: object
|
|
1434
|
+
fields:
|
|
1435
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables Top Search }
|
|
1436
|
+
- { label: id, name: id, widget: string, hint: ID of the Topsearch container }
|
|
1437
|
+
- { label: type, name: type, widget: select, options: [ quicksearch, algolia, google ], hint: TBD }
|
|
1438
|
+
- { label: icon family, name: icon_family, widget: select, options: [ MDI, FA ], hint: TBD }
|
|
1439
|
+
- { label: icon color, name: icon_color, widget: string, hint: TBD }
|
|
1440
|
+
- { label: icon size, name: icon_size, widget: string, hint: TBD }
|
|
1441
|
+
- { label: search icon, name: search_icon, widget: string, hint: TBD }
|
|
1442
|
+
- { label: close icon, name: close_icon, widget: string, hint: TBD }
|
|
1443
|
+
- { label: input color, name: input_color, widget: string, hint: TBD }
|
|
1444
|
+
- { label: background color, name: background_color, widget: string, hint: TBD }
|
|
1445
|
+
- { label: placeholder, name: placeholder, widget: string, hint: TBD }
|
|
1446
|
+
- { label: search heading lead, name: search_heading_lead, widget: string, hint: TBD }
|
|
1447
|
+
- { label: result heading lead, name: result_heading_lead, widget: string, hint: TBD }
|
|
1448
|
+
|
|
1449
|
+
# ----------------------------------------------------------------
|
|
1450
|
+
# Navigation Side Bar settings
|
|
1451
|
+
#
|
|
1452
|
+
- label: Side Bar settings
|
|
1453
|
+
name: nav_sidebar
|
|
1454
|
+
hint: Controls the behaviour of the Side Bar
|
|
1455
|
+
widget: object
|
|
1456
|
+
fields:
|
|
1457
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the Side Bar }
|
|
1458
|
+
- { label: id, name: id, widget: string, hint: ID of the Sidebar container }
|
|
1459
|
+
- { label: data path, name: data_path, widget: string, hint: HTML portion of the Sidebar (loaded via AJAX) }
|
|
1460
|
+
- { label: width, name: width, widget: number, min: 250, max: 500, hint: TBD }
|
|
1461
|
+
- { label: icon family, name: icon_family, widget: select, options: [ MDI, FA ], hint: TBD }
|
|
1462
|
+
- { label: icon color, name: icon_size, widget: string, hint: TBD }
|
|
1463
|
+
- { label: icon size, name: id, widget: string, hint: TBD }
|
|
1464
|
+
- { label: sidebar icon, name: sidebar_icon, widget: string, hint: TBD }
|
|
1465
|
+
- { label: close icon, name: close_icon, widget: string, hint: TBD }
|
|
1466
|
+
- { label: background color, name: background_color, widget: string, hint: TBD }
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
# ----------------------------------------------------------------
|
|
1470
|
+
# Navigation Auth Client settings
|
|
1471
|
+
#
|
|
1472
|
+
- label: Auth Client settings
|
|
1473
|
+
name: nav_authclient
|
|
1474
|
+
hint: Controls the behaviour of the Auth Client
|
|
1475
|
+
widget: object
|
|
1476
|
+
fields:
|
|
1477
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the Auth Client }
|
|
1478
|
+
- { label: id, name: id, widget: string, hint: ID of the Auth Client icon }
|
|
1479
|
+
- { label: data path, name: data_path, widget: string, hint: HTML portion of Auth Client modals (loaded via AJAX) }
|
|
1480
|
+
- { label: signin modal id, name: signin_modal_id, widget: string, hint: TBD }
|
|
1481
|
+
- { label: authclient modals id, name: authclient_modals_id, widget: string, hint: TBD }
|
|
1482
|
+
- { label: hide on cookies declined, name: hide_on_cookies_declined, widget: boolean, hint: TBD }
|
|
1483
|
+
- { label: icon family, name: icon_family, widget: select, options: [ MDI, FA ], hint: TBD }
|
|
1484
|
+
- { label: signin icon, name: signin_icon, widget: string, hint: TBD }
|
|
1485
|
+
- { label: signout icon, name: signout_icon, widget: string, hint: TBD }
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
# ------------------------------------------------------------------------
|
|
1489
|
+
# J1 Back2Top
|
|
1490
|
+
#
|
|
1491
|
+
- label: J1 Back2Top
|
|
1492
|
+
name: config_back2top
|
|
1493
|
+
file: _cc_test_data/_data/modules/back2top.yml
|
|
1494
|
+
fields:
|
|
1495
|
+
|
|
1496
|
+
# --------------------------------------------------------------------
|
|
1497
|
+
# About this configuration (used for J1 CC only)
|
|
1498
|
+
#
|
|
1499
|
+
- label: about
|
|
1500
|
+
name: about_config
|
|
1501
|
+
widget: object
|
|
1502
|
+
fields:
|
|
1503
|
+
- { label: module name, name: title, widget: string, hint: Provides a button displayed at the bottom of every page to scroll to the top }
|
|
1504
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
1505
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
1506
|
+
|
|
1507
|
+
# --------------------------------------------------------------------
|
|
1508
|
+
# User settings
|
|
1509
|
+
#
|
|
1510
|
+
- label: user settings
|
|
1511
|
+
name: settings
|
|
1512
|
+
hint: User configuration settings for J1 Back2Top
|
|
1513
|
+
widget: object
|
|
1514
|
+
fields:
|
|
1515
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module }
|
|
1516
|
+
- { label: active color, name: active_color, widget: string, hint: Active color of the button }
|
|
1517
|
+
- { label: background color, name: background_color, widget: string, hint: Background color of the button }
|
|
1518
|
+
- { label: icon, name: icon, widget: string, hint: TBD }
|
|
1519
|
+
- { label: icon family, name: icon_family, widget: select, options: [ MDI, FA ], hint: TBD }
|
|
1520
|
+
# - { label: icon position, name: icon_position, widget: select, options: [ absolute, fixed ], hint: TBD }
|
|
1521
|
+
- { label: scrollto, name: scrollto, widget: number, min: 0, max: 100, hint: TBD }
|
|
1522
|
+
- { label: startline, name: startline, widget: number, min: 100, max: 500, hint: TBD }
|
|
1523
|
+
- { label: scroll duration, name: scrollduration, widget: number, min: 500, max: 1500, hint: TBD }
|
|
1524
|
+
# - label: fade duration
|
|
1525
|
+
# name: fadeduration
|
|
1526
|
+
# widget: object
|
|
1527
|
+
# fields:
|
|
1528
|
+
# - { label: fade in, name: fadeIn, widget: number, min: 500, max: 1500, hint: TBD }
|
|
1529
|
+
# - { label: fade out, name: fadeOut, widget: number, min: 500, max: 1500, hint: TBD }
|
|
1530
|
+
# - label: control attributes
|
|
1531
|
+
# name: controlattrs
|
|
1532
|
+
# widget: object
|
|
1533
|
+
# fields:
|
|
1534
|
+
# - { label: offset x, name: offsetx, widget: number, min: 5, max: 10, hint: TBD }
|
|
1535
|
+
# - { label: offset y, name: offsety, widget: number, min: 5, max: 10, hint: TBD }
|
|
1536
|
+
|
|
1537
|
+
|
|
1538
|
+
# ------------------------------------------------------------------------
|
|
1539
|
+
# J1 WebHook
|
|
1540
|
+
#
|
|
1541
|
+
- label: J1 WebHook
|
|
1542
|
+
name: config_webhook
|
|
1543
|
+
file: _cc_test_data/_data/modules/webhook.yml
|
|
1544
|
+
fields:
|
|
1545
|
+
|
|
1546
|
+
# --------------------------------------------------------------------
|
|
1547
|
+
# About this configuration (used for J1 CC only)
|
|
1548
|
+
#
|
|
1549
|
+
- label: about
|
|
1550
|
+
name: about_config
|
|
1551
|
+
widget: object
|
|
1552
|
+
fields:
|
|
1553
|
+
- { label: module name, name: title, widget: string, hint: Simple site search based on automatically generated idex data }
|
|
1554
|
+
- { label: scope, name: scope, widget: string, hint: Scope the data is used }
|
|
1555
|
+
- { label: data file, name: location, widget: string, hint: Folder the configuration file is stored (relative to site root) }
|
|
1556
|
+
|
|
1557
|
+
# --------------------------------------------------------------------
|
|
1558
|
+
# User settings
|
|
1559
|
+
#
|
|
1560
|
+
- label: user settings
|
|
1561
|
+
name: settings
|
|
1562
|
+
hint: User configuration settings for J1 WebHook
|
|
1563
|
+
widget: object
|
|
1564
|
+
fields:
|
|
1565
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the module, required: false }
|
|
1566
|
+
- { label: payload url, name: payload_url, widget: string, hint: URL the payload is send to }
|
|
1567
|
+
- { label: secret, name: secret, widget: string, hint: Secret configured at Github for the Webhook }
|
|
1568
|
+
|
|
1569
|
+
# ----------------------------------------------------------------
|
|
1570
|
+
# Commit Detection settings
|
|
1571
|
+
#
|
|
1572
|
+
- label: Commit Detection settings
|
|
1573
|
+
name: commit_detection
|
|
1574
|
+
hint: Controls how detected commits are managed
|
|
1575
|
+
widget: object
|
|
1576
|
+
fields:
|
|
1577
|
+
- { label: Authentication status, name: auth_status, widget: select, options: [ authenticated ], hint: App only. Authentication status the J1 CC is available }
|
|
1578
|
+
- { label: users, name: users, widget: list, hint: App only. Users allowed to access the CC if Auth Status is set to authenticated }
|
|
1579
|
+
|
|
1580
|
+
# ------------------------------------------------------------
|
|
1581
|
+
# Modal Commit Detection settings
|
|
1582
|
+
#
|
|
1583
|
+
- label: Modal Commit Detection settings
|
|
1584
|
+
name: modal_commit_detected
|
|
1585
|
+
hint: Controls the modal for commit detection
|
|
1586
|
+
widget: object
|
|
1587
|
+
fields:
|
|
1588
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the Modal, required: false }
|
|
1589
|
+
- { label: autohide, name: autohide, widget: boolean, hint: Enables or Disables to autohide the Modal, required: false }
|
|
1590
|
+
- { label: autohidden, name: autohidden, widget: number, min: 3000, max: 10000, hint: Timeout for autohide the modal }
|
|
1591
|
+
|
|
1592
|
+
# ------------------------------------------------------------
|
|
1593
|
+
# Modal Pull Response Detection settings
|
|
1594
|
+
#
|
|
1595
|
+
- label: Modal Pull Response Detection settings
|
|
1596
|
+
name: modal_pull_response
|
|
1597
|
+
hint: Controls the modal for pull detection
|
|
1598
|
+
widget: object
|
|
1599
|
+
fields:
|
|
1600
|
+
- { label: enabled, name: enabled, widget: boolean, hint: Enables or Disables the Modal, required: false }
|
|
1601
|
+
- { label: autohide, name: autohide, widget: boolean, hint: Enables or Disables to autohide the Modal, required: false }
|
|
1602
|
+
- { label: autohidden, name: autohidden, widget: number, min: 3000, max: 10000, hint: Timeout for autohide the modal }
|
|
1603
|
+
|
|
1604
|
+
# ----------------------------------------------------------------
|
|
1605
|
+
# Git interface settings (Utility Server)
|
|
1606
|
+
#
|
|
1607
|
+
- label: Git command settings
|
|
1608
|
+
name: git
|
|
1609
|
+
hint: Controls the Git command execution managed by the Utility Server
|
|
1610
|
+
widget: object
|
|
1611
|
+
fields:
|
|
1612
|
+
|
|
1613
|
+
# ------------------------------------------------------------
|
|
1614
|
+
# PULL command
|
|
1615
|
+
#
|
|
1616
|
+
- label: Git Pull command settings
|
|
1617
|
+
name: pull
|
|
1618
|
+
hint: Controls the Git Pull command execution managed by the Utility Server
|
|
1619
|
+
widget: object
|
|
1620
|
+
fields:
|
|
1621
|
+
- { label: execute, name: execute, widget: boolean, hint: Enables or Disables the pull command execution, required: false }
|
|
1622
|
+
- { label: response success, name: response_success, widget: string, hint: Response send if pull command finishes successfully }
|
|
1623
|
+
- { label: response failed, name: response_failed, widget: string, hint: Response send if pull command failed }
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
# ----------------------------------------------------------------
|
|
1627
|
+
# NPM interface settings (Utility Server)
|
|
1628
|
+
#
|
|
1629
|
+
- label: NPM script settings
|
|
1630
|
+
name: npm
|
|
1631
|
+
hint: Controls the NPM script execution managed by the Utility Server
|
|
1632
|
+
widget: object
|
|
1633
|
+
fields:
|
|
1634
|
+
|
|
1635
|
+
# ------------------------------------------------------------
|
|
1636
|
+
# BUILD script
|
|
1637
|
+
#
|
|
1638
|
+
- label: NPM BUILD script settings
|
|
1639
|
+
name: built
|
|
1640
|
+
hint: Controls the NPM Built script execution managed by the Utility Server
|
|
1641
|
+
widget: object
|
|
1642
|
+
fields:
|
|
1643
|
+
- { label: execute, name: enabled, widget: boolean, hint: Enables or Disables the built script execution, required: false }
|
|
1644
|
+
- { label: response success, name: response_success, widget: string, hint: Response send if built script finishes successfully }
|
|
1645
|
+
- { label: response failed, name: response_failed, widget: string, hint: Response send if Built script failed }
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
|
|
1649
|
+
# ------------------------------------------------------------------------------
|
|
1650
|
+
# END config
|