j1_template_mde 2018.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +79 -0
- data/_includes/themes/j1/layouts/content_generator_app.html +34 -0
- data/_includes/themes/j1/layouts/content_generator_blog_archive.html +201 -0
- data/_includes/themes/j1/layouts/content_generator_collection.html +116 -0
- data/_includes/themes/j1/layouts/content_generator_page.html +116 -0
- data/_includes/themes/j1/layouts/content_generator_post.html +214 -0
- data/_includes/themes/j1/layouts/content_generator_raw.html +35 -0
- data/_includes/themes/j1/layouts/layout_metadata_generator.html +106 -0
- data/_includes/themes/j1/layouts/layout_module_generator.html +49 -0
- data/_includes/themes/j1/layouts/layout_resource_generator.html +53 -0
- data/_includes/themes/j1/layouts/layout_shim_generator.html +105 -0
- data/_includes/themes/j1/layouts/layout_theme_generator.html +105 -0
- data/_includes/themes/j1/modules/boards/news_pin_board.html +183 -0
- data/_includes/themes/j1/modules/connectors/ad/google-adsense +39 -0
- data/_includes/themes/j1/modules/connectors/ads +34 -0
- data/_includes/themes/j1/modules/connectors/analytic/google +42 -0
- data/_includes/themes/j1/modules/connectors/analytic/googleUA +44 -0
- data/_includes/themes/j1/modules/connectors/analytics +46 -0
- data/_includes/themes/j1/modules/connectors/comment/disqus.html +61 -0
- data/_includes/themes/j1/modules/connectors/comments +44 -0
- data/_includes/themes/j1/modules/connectors/sharing +36 -0
- data/_includes/themes/j1/modules/footers/boxes/about_box.proc +33 -0
- data/_includes/themes/j1/modules/footers/boxes/contacts_box.proc +55 -0
- data/_includes/themes/j1/modules/footers/boxes/legal_statements.proc +61 -0
- data/_includes/themes/j1/modules/footers/boxes/links_box.proc +38 -0
- data/_includes/themes/j1/modules/footers/boxes/news_box.proc +54 -0
- data/_includes/themes/j1/modules/footers/boxes/social_media_icons.proc +38 -0
- data/_includes/themes/j1/modules/footers/footer_light_generator.html +130 -0
- data/_includes/themes/j1/modules/headers/master_header_generator.html +140 -0
- data/_includes/themes/j1/modules/navigator/generator.html +170 -0
- data/_includes/themes/j1/modules/navigator/procedures/_unused/authclient.proc +139 -0
- data/_includes/themes/j1/modules/navigator/procedures/_unused/authclient.proc.org +217 -0
- data/_includes/themes/j1/modules/navigator/procedures/quicklinks.proc +97 -0
- data/_includes/themes/j1/modules/navigator/procedures/sidebar.proc +117 -0
- data/_includes/themes/j1/modules/navigator/procedures/topsearch.proc +115 -0
- data/_includes/themes/j1/procedures/collections/create_collection_article_preview.proc +68 -0
- data/_includes/themes/j1/procedures/global/_get_page_path.proc.new +80 -0
- data/_includes/themes/j1/procedures/global/_get_page_path.proc.org +68 -0
- data/_includes/themes/j1/procedures/global/collect_frontmatter_options.proc +62 -0
- data/_includes/themes/j1/procedures/global/create_bs_button.proc +126 -0
- data/_includes/themes/j1/procedures/global/create_word_cloud.proc +119 -0
- data/_includes/themes/j1/procedures/global/get_category.proc +60 -0
- data/_includes/themes/j1/procedures/global/get_category_item.proc +80 -0
- data/_includes/themes/j1/procedures/global/get_documents_dir.proc +67 -0
- data/_includes/themes/j1/procedures/global/get_page_path.proc +67 -0
- data/_includes/themes/j1/procedures/global/get_page_url.proc +55 -0
- data/_includes/themes/j1/procedures/global/pager.proc +79 -0
- data/_includes/themes/j1/procedures/global/select_color.proc +69 -0
- data/_includes/themes/j1/procedures/global/select_font_size.proc +86 -0
- data/_includes/themes/j1/procedures/global/select_icon_size.proc +72 -0
- data/_includes/themes/j1/procedures/global/select_location.proc +107 -0
- data/_includes/themes/j1/procedures/global/set_env_entry_document.proc +88 -0
- data/_includes/themes/j1/procedures/global/set_image_block.proc +50 -0
- data/_includes/themes/j1/procedures/global/setup.proc +61 -0
- data/_includes/themes/j1/procedures/layouts/content_writer.proc +107 -0
- data/_includes/themes/j1/procedures/layouts/default_writer.proc +160 -0
- data/_includes/themes/j1/procedures/layouts/module_writer.proc +170 -0
- data/_includes/themes/j1/procedures/layouts/resource_writer.proc +183 -0
- data/_includes/themes/j1/procedures/posts/_collate_timeline.proc +253 -0
- data/_includes/themes/j1/procedures/posts/collate_calendar.proc +224 -0
- data/_includes/themes/j1/procedures/posts/collate_list.proc +102 -0
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +219 -0
- data/_includes/themes/j1/procedures/posts/create_ad_block.proc +56 -0
- data/_includes/themes/j1/procedures/posts/create_series_header.proc +96 -0
- data/_layouts/_unused/default.html +347 -0
- data/_layouts/_unused/default.modal.html +291 -0
- data/_layouts/app.html +68 -0
- data/_layouts/blog_archive.html +60 -0
- data/_layouts/collection.html +68 -0
- data/_layouts/compress.html +52 -0
- data/_layouts/default.html +192 -0
- data/_layouts/home.html +80 -0
- data/_layouts/page.html +68 -0
- data/_layouts/paginator/autopage_category.html +79 -0
- data/_layouts/paginator/autopage_collection.html +159 -0
- data/_layouts/paginator/autopage_collections_tags.html +87 -0
- data/_layouts/paginator/autopage_tags.html +79 -0
- data/_layouts/post.html +68 -0
- data/_layouts/raw.html +71 -0
- data/_sass/README.md +16 -0
- data/assets/README.md +3 -0
- data/exe/j1 +26 -0
- data/lib/j1.rb +130 -0
- data/lib/j1/command.rb +23 -0
- data/lib/j1/commands/generate.rb +154 -0
- data/lib/j1/commands/help.rb +32 -0
- data/lib/j1/commands/module.rb +69 -0
- data/lib/j1/external.rb +59 -0
- data/lib/j1/log_adapter.rb +115 -0
- data/lib/j1/log_helper.rb +61 -0
- data/lib/j1/templates/posts/0000-00-00-welcome-to-j1-template.adoc.erb +60 -0
- data/lib/j1/utils.rb +330 -0
- data/lib/j1/utils/ansi.rb +59 -0
- data/lib/j1/utils/exec.rb +25 -0
- data/lib/j1/utils/platforms.rb +80 -0
- data/lib/j1/utils/win_tz.rb +73 -0
- data/lib/j1/version.rb +3 -0
- data/lib/j1_app.rb +69 -0
- data/lib/j1_app/j1_auth_manager/auth_manager.rb +418 -0
- data/lib/j1_app/j1_auth_manager/commands.rb +18 -0
- data/lib/j1_app/j1_auth_manager/config.rb +76 -0
- data/lib/j1_app/j1_auth_manager/helpers.rb +55 -0
- data/lib/j1_app/j1_auth_manager/helpers_disqus.rb +12 -0
- data/lib/j1_app/j1_auth_manager/helpers_facebook.rb +12 -0
- data/lib/j1_app/j1_auth_manager/helpers_github.rb +95 -0
- data/lib/j1_app/j1_auth_manager/helpers_patreon.rb +12 -0
- data/lib/j1_app/j1_auth_manager/helpers_twitter.rb +12 -0
- data/lib/j1_app/j1_auth_manager/warden_omniauth.rb +133 -0
- data/lib/j1_app/j1_site_manager/static_site.rb +16 -0
- data/lib/j1_app/omniauth/facebook/signed_request.rb +52 -0
- data/lib/j1_app/omniauth/strategies/_unused/doumart_patreon.rb +75 -0
- data/lib/j1_app/omniauth/strategies/_unused/my_patreon.rb +78 -0
- data/lib/j1_app/omniauth/strategies/disqus.rb +56 -0
- data/lib/j1_app/omniauth/strategies/facebook.rb +181 -0
- data/lib/j1_app/omniauth/strategies/github.rb +79 -0
- data/lib/j1_app/omniauth/strategies/patreon.rb +49 -0
- data/lib/j1_app/omniauth/strategies/twitter.rb +104 -0
- data/lib/j1_app/sinatra/extras/cookies.rb +282 -0
- data/lib/j1_app/sinatra/extras/index.rb +33 -0
- data/lib/starter_web/Gemfile +180 -0
- data/lib/starter_web/_config.yml +962 -0
- data/lib/starter_web/_data/apps/_unused/j1_colorbox.yml +100 -0
- data/lib/starter_web/_data/apps/_unused/j1_tocbot.yml +156 -0
- data/lib/starter_web/_data/apps/j1_bootstrap_gallery.yml +167 -0
- data/lib/starter_web/_data/apps/j1_carousel.yml +501 -0
- data/lib/starter_web/_data/apps/j1_justified_gallery.yml +229 -0
- data/lib/starter_web/_data/apps/j1_light_gallery.yml +105 -0
- data/lib/starter_web/_data/apps/j1_lightbox.yml +163 -0
- data/lib/starter_web/_data/apps/j1_link_checker.yml +21 -0
- data/lib/starter_web/_data/asciidoc2pdf/default-theme.yml +391 -0
- data/lib/starter_web/_data/asciidoc2pdf/j1-theme.yml +53 -0
- data/lib/starter_web/_data/builder/blog_navigator.yml +203 -0
- data/lib/starter_web/_data/j1_categories.yml +31 -0
- data/lib/starter_web/_data/j1_colors.yml +607 -0
- data/lib/starter_web/_data/j1_config.yml +203 -0
- data/lib/starter_web/_data/j1_font_sizes.yml +25 -0
- data/lib/starter_web/_data/j1_i18n.yml +18 -0
- data/lib/starter_web/_data/j1_resources.yml +631 -0
- data/lib/starter_web/_data/known_issues/windows/cacert.pem +3314 -0
- data/lib/starter_web/_data/layouts/app.yml +154 -0
- data/lib/starter_web/_data/layouts/blog_archive.yml +155 -0
- data/lib/starter_web/_data/layouts/collection.yml +157 -0
- data/lib/starter_web/_data/layouts/default.yml +230 -0
- data/lib/starter_web/_data/layouts/home.yml +203 -0
- data/lib/starter_web/_data/layouts/page.yml +154 -0
- data/lib/starter_web/_data/layouts/post.yml +164 -0
- data/lib/starter_web/_data/layouts/raw.yml +154 -0
- data/lib/starter_web/_data/modules/_unused/j1_navigator.yml +195 -0
- data/lib/starter_web/_data/modules/_unused/j1_navigator_menu.yml +317 -0
- data/lib/starter_web/_data/modules/j1_back2top.yml +120 -0
- data/lib/starter_web/_data/modules/j1_banner.yml +248 -0
- data/lib/starter_web/_data/modules/j1_cookiebar.yml +65 -0
- data/lib/starter_web/_data/modules/j1_footer.yml +128 -0
- data/lib/starter_web/_data/modules/j1_header.yml +201 -0
- data/lib/starter_web/_data/modules/j1_iframe_resizer.yml +234 -0
- data/lib/starter_web/_data/modules/j1_jekyll_search.yml +112 -0
- data/lib/starter_web/_data/modules/j1_log4javascript.yml +98 -0
- data/lib/starter_web/_data/modules/j1_navigator.yml +218 -0
- data/lib/starter_web/_data/modules/j1_navigator_menu.yml +265 -0
- data/lib/starter_web/_data/modules/j1_panel.yml +688 -0
- data/lib/starter_web/_data/modules/j1_parallax.yml +87 -0
- data/lib/starter_web/_data/modules/j1_sign_in_up.yml +18 -0
- data/lib/starter_web/_data/modules/j1_smooth_scroll.yml +122 -0
- data/lib/starter_web/_data/modules/j1_theme_switcher.yml +139 -0
- data/lib/starter_web/_data/modules/j1_toccer.yml +155 -0
- data/lib/starter_web/_data/pages/builder.yml +82 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/admonition-block-answer.rb +48 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/admonition-block-question.rb +48 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/carousel-block.rb +45 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/gist-block.rb +52 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/lightbox-block.rb +85 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/lorem-inline.rb +65 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/shout-block.rb +47 -0
- data/lib/starter_web/_plugins/asciidoctor-extensions/twitter-emoji-inline.rb +69 -0
- data/lib/starter_web/_plugins/debug.rb +64 -0
- data/lib/starter_web/_plugins/filters.rb +307 -0
- data/lib/starter_web/_plugins/prettify.rb +45 -0
- data/lib/starter_web/_plugins/simple_search_filter.rb +33 -0
- data/lib/starter_web/_plugins/symlink_watcher.rb +53 -0
- data/lib/starter_web/_rack/Procfile.nginx +1 -0
- data/lib/starter_web/_rack/Procfile.webrick +1 -0
- data/lib/starter_web/_rack/Rakefile +6 -0
- data/lib/starter_web/_rack/config.ru +7 -0
- data/lib/starter_web/_rack/dot.env +48 -0
- data/lib/starter_web/_rack/dot.gitignore +34 -0
- data/lib/starter_web/_rack/heroku.config_set +12 -0
- data/lib/starter_web/_rack/puma.rb +200 -0
- data/lib/starter_web/_sass/README.md +16 -0
- data/lib/starter_web/apps/calendar/index.adoc +71 -0
- data/lib/starter_web/apps/link_checker/index.html +24 -0
- data/lib/starter_web/assets/apps/link-checker/assets/img/main/img22.jpg +0 -0
- data/lib/starter_web/assets/apps/link-checker/assets/img/main/img22.png +0 -0
- data/lib/starter_web/assets/apps/link-checker/index.html +125 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/css/bootstrap.min.css +1560 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/bootstrap/js/bootstrap.min.js +7 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/LICENSE.md +11 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/README.md +105 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/css/font-awesome.css +2337 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/css/font-awesome.min.css +4 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/FontAwesome.otf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.eot +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.svg +2671 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.woff +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/How_to_use_webfonts.html +230 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular-demo.html +372 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.eot +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.svg +621 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.ttf +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.woff +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/Roboto-Regular-cleartype.png +0 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/grid_12-825-55-15.css +129 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/specimen_stylesheet.css +396 -0
- data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/stylesheet.css +12 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/css/link-checker.css +87 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/backbone.1.3.2.js +1920 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/backbone.min.js +37 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/html5shiv.min.js +4 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/iframeResizer.contentWindow.min.js +9 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/jquery.min.js +6 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/jsuri-1.1.1.min.js +2 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/link-checker.js +333 -0
- data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/underscore.min.js +31 -0
- data/lib/starter_web/assets/data/animate.json +120 -0
- data/lib/starter_web/assets/data/ascii_code_table.json +1794 -0
- data/lib/starter_web/assets/data/authclient.html +371 -0
- data/lib/starter_web/assets/data/banner.html +350 -0
- data/lib/starter_web/assets/data/carousel.json +95 -0
- data/lib/starter_web/assets/data/colors.json +42 -0
- data/lib/starter_web/assets/data/font_sizes.json +42 -0
- data/lib/starter_web/assets/data/fontawesome_icons.json +5525 -0
- data/lib/starter_web/assets/data/footer.html +230 -0
- data/lib/starter_web/assets/data/galleries.json +143 -0
- data/lib/starter_web/assets/data/mdi_icons.json +14324 -0
- data/lib/starter_web/assets/data/menu.html +470 -0
- data/lib/starter_web/assets/data/objects.json +458 -0
- data/lib/starter_web/assets/data/panel.html +529 -0
- data/lib/starter_web/assets/data/search.json +114 -0
- data/lib/starter_web/assets/data/themes.json +59 -0
- data/lib/starter_web/assets/data/twa_v1.json +6978 -0
- data/lib/starter_web/assets/data/twa_v2.json +12812 -0
- data/lib/starter_web/assets/images/backgrounds/bg-1.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-2.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-3.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-4.jpg +0 -0
- data/lib/starter_web/assets/images/backgrounds/bg-7.jpg +0 -0
- data/lib/starter_web/assets/images/blog/featured/img3.jpg +0 -0
- data/lib/starter_web/assets/images/blog/featured/jekyll.1200x400.png +0 -0
- data/lib/starter_web/assets/images/blog/featured/jekyll.png +0 -0
- data/lib/starter_web/assets/images/blog/featured/staticgen.jpg +0 -0
- data/lib/starter_web/assets/images/blog/featured/what-is-a-baseurl.jpg +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/j1_docker_banner.1280x500.png +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/kinematic_alpha.1280x600.png +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/kinematic_j1.1280x300.png +0 -0
- data/lib/starter_web/assets/images/blog/series/j1_using_docker/windows_docker_banner.1280x500.png +0 -0
- data/lib/starter_web/assets/images/blog/wikipedia/columbia-river.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/blog/wikipedia/minneapolis.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/blog/wikipedia/narcise-snake-pits.1200x400.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-1.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-2.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-3.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-4.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-5.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-6.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-7.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/cats/cat-8.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-1.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-2.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-3.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-4.jpg +0 -0
- data/lib/starter_web/assets/images/carousel/katarina/katarina-5.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6791628438_affaa19e10_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6798453217_72dea2d06e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6806687375_07d2b7a1f9_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6840627709_92ed52fb41_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6876412479_6268c6e2aa_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/000_6880502467_d4b3c4b2a8_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/13824322785_104dc0968c_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/13824674674_ca1e482394_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/16961685188_f130144d60_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/23753792354_bd75d8dabc_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/24014174029_2cfa940264_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/24096687789_c37d45712f_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6791628438_affaa19e10_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6798453217_72dea2d06e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6806687375_07d2b7a1f9_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6812090617_5fd5bbdda0_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6840627709_92ed52fb41_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6841267340_855273fd7e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6876412479_6268c6e2aa_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6880502467_d4b3c4b2a8_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/6916180091_9c9559e463_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7002395006_29fdc85f7a_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7062575651_b23918b11a_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7822678460_ee98ff1f69_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/7948632554_01f6ae6b6f_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8157236803_78aa1698b6_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8400794773_932654a20e_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8811828736_88392f614a_b.jpg +0 -0
- data/lib/starter_web/assets/images/gallery/justified_gallery/8842312290_f310d491f4_b.jpg +0 -0
- data/lib/starter_web/assets/images/icons/asciidoc/logo-512x512.png +0 -0
- data/lib/starter_web/assets/images/icons/bootstrap/bootstrap-solid-32x32.png +0 -0
- data/lib/starter_web/assets/images/icons/bootstrap/bs-docs-masthead-pattern.png +0 -0
- data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-outline.svg +20 -0
- data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-punchout.svg +18 -0
- data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-solid.svg +17 -0
- data/lib/starter_web/assets/images/icons/components/angular.ui.png +0 -0
- data/lib/starter_web/assets/images/icons/components/angularjs.png +0 -0
- data/lib/starter_web/assets/images/icons/components/aws.png +0 -0
- data/lib/starter_web/assets/images/icons/components/bootstrap.png +0 -0
- data/lib/starter_web/assets/images/icons/components/c9.png +0 -0
- data/lib/starter_web/assets/images/icons/components/chai.png +0 -0
- data/lib/starter_web/assets/images/icons/components/emmet.png +0 -0
- data/lib/starter_web/assets/images/icons/components/express.png +0 -0
- data/lib/starter_web/assets/images/icons/components/git.png +0 -0
- data/lib/starter_web/assets/images/icons/components/github.png +0 -0
- data/lib/starter_web/assets/images/icons/components/gulp.png +0 -0
- data/lib/starter_web/assets/images/icons/components/heroku.png +0 -0
- data/lib/starter_web/assets/images/icons/components/htmlcss-1.png +0 -0
- data/lib/starter_web/assets/images/icons/components/htmlcss-2.png +0 -0
- data/lib/starter_web/assets/images/icons/components/jasmine.png +0 -0
- data/lib/starter_web/assets/images/icons/components/javascript.png +0 -0
- data/lib/starter_web/assets/images/icons/components/jquery.png +0 -0
- data/lib/starter_web/assets/images/icons/components/kanban.png +0 -0
- data/lib/starter_web/assets/images/icons/components/leanux.png +0 -0
- data/lib/starter_web/assets/images/icons/components/linkedin.png +0 -0
- data/lib/starter_web/assets/images/icons/components/mean.png +0 -0
- data/lib/starter_web/assets/images/icons/components/mongodb.png +0 -0
- data/lib/starter_web/assets/images/icons/components/node.png +0 -0
- data/lib/starter_web/assets/images/icons/components/postgresql.png +0 -0
- data/lib/starter_web/assets/images/icons/components/protractor.png +0 -0
- data/lib/starter_web/assets/images/icons/components/rails.png +0 -0
- data/lib/starter_web/assets/images/icons/components/ruby.png +0 -0
- data/lib/starter_web/assets/images/icons/components/sass.png +0 -0
- data/lib/starter_web/assets/images/icons/components/scrum.png +0 -0
- data/lib/starter_web/assets/images/icons/components/twitter.png +0 -0
- data/lib/starter_web/assets/images/icons/j1/favicon.ico +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1-32x32.ico +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1-512x512.png +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1-64x64.png +0 -0
- data/lib/starter_web/assets/images/icons/j1/j1.ico +0 -0
- data/lib/starter_web/assets/images/icons/j1/scalable/j1.svg +2037 -0
- data/lib/starter_web/assets/images/icons/social/amazon.png +0 -0
- data/lib/starter_web/assets/images/icons/social/behance.png +0 -0
- data/lib/starter_web/assets/images/icons/social/blogger.png +0 -0
- data/lib/starter_web/assets/images/icons/social/deviantart.png +0 -0
- data/lib/starter_web/assets/images/icons/social/dribbble.png +0 -0
- data/lib/starter_web/assets/images/icons/social/dropbox.png +0 -0
- data/lib/starter_web/assets/images/icons/social/evernote.png +0 -0
- data/lib/starter_web/assets/images/icons/social/facebook.png +0 -0
- data/lib/starter_web/assets/images/icons/social/forrst.png +0 -0
- data/lib/starter_web/assets/images/icons/social/github.png +0 -0
- data/lib/starter_web/assets/images/icons/social/googleplus.png +0 -0
- data/lib/starter_web/assets/images/icons/social/instagram.png +0 -0
- data/lib/starter_web/assets/images/icons/social/jolicloud.png +0 -0
- data/lib/starter_web/assets/images/icons/social/last-fm.png +0 -0
- data/lib/starter_web/assets/images/icons/social/linkedin.png +0 -0
- data/lib/starter_web/assets/images/icons/social/picasa.png +0 -0
- data/lib/starter_web/assets/images/icons/social/pintrest.png +0 -0
- data/lib/starter_web/assets/images/icons/social/rss.png +0 -0
- data/lib/starter_web/assets/images/icons/social/skype.png +0 -0
- data/lib/starter_web/assets/images/icons/social/spotify.png +0 -0
- data/lib/starter_web/assets/images/icons/social/stumbleupon.png +0 -0
- data/lib/starter_web/assets/images/icons/social/tumblr.png +0 -0
- data/lib/starter_web/assets/images/icons/social/twitter.png +0 -0
- data/lib/starter_web/assets/images/icons/social/vimeo.png +0 -0
- data/lib/starter_web/assets/images/icons/social/vk.png +0 -0
- data/lib/starter_web/assets/images/icons/social/wordpress.png +0 -0
- data/lib/starter_web/assets/images/icons/social/xing.png +0 -0
- data/lib/starter_web/assets/images/icons/social/yahoo.png +0 -0
- data/lib/starter_web/assets/images/icons/social/youtube.png +0 -0
- data/lib/starter_web/assets/images/lightbox/close.png +0 -0
- data/lib/starter_web/assets/images/lightbox/loading.gif +0 -0
- data/lib/starter_web/assets/images/lightbox/next.png +0 -0
- data/lib/starter_web/assets/images/lightbox/prev.png +0 -0
- data/lib/starter_web/assets/images/master_header/aaron-burden-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/alexey-ruban-slider.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/chuttersnap-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/clark-tibbs-do-something.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/docker_banner_l.1280x500.png +0 -0
- data/lib/starter_web/assets/images/master_header/docker_banner_r.1280x500.png +0 -0
- data/lib/starter_web/assets/images/master_header/homehead-default-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/ideas-start-here.1200x800.png +0 -0
- data/lib/starter_web/assets/images/master_header/ideas-start-here.1920x1200.png +0 -0
- data/lib/starter_web/assets/images/master_header/ideas-start-here.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/maarten-van-den-heuvel-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/pagehead-default-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/stefan-stefancik-1200.jpg +0 -0
- data/lib/starter_web/assets/images/master_header/water-journal-1200.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/avatar.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/bg7.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/blog1.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/blog5.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/blog6.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-blog2.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-blog3.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-profile1.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-profile4.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/card-profile5-square.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/kendall.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/kendall.png +0 -0
- data/lib/starter_web/assets/images/md-kit/marc.jpg +0 -0
- data/lib/starter_web/assets/images/md-kit/office1.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_01.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_02.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_03.jpg +0 -0
- data/lib/starter_web/assets/images/old_times/image_04.jpg +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/001_menubar_example.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/005_navbar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/005_navigation_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/006_navigation_side_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/006_searchbar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/007_sidebar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/008_navbar_blank.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/010_nav_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/010_top_search.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/012_top_search.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/015_quicklink_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/017_side_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/020_menu_bar.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/2-tier-architecture-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/3-tier-architecture-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/download_image_create_starter.800x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-icon.1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-signin.1280x700.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-signout.1280x700.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-disqus-comment-dialog.1280x500.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1_development_system-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1_runtime_system-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/rack_based_web_app-1280x600.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/rack_based_web_app.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/run_container_build_start_web.800x400.png +0 -0
- data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/run_starter_web.800x700.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/130_layout_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/content_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/content_inheritance_thumb.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/html_layout.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1-quickstart-windows.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1-template-theme.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1_layout.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/jekyll-minima-theme.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/lane_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/layout_inheritance.png +0 -0
- data/lib/starter_web/assets/images/pages/modals/01_frame_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/modals/02_site_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/modals/03_central_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/modals/04_fluid_modal.jpg +0 -0
- data/lib/starter_web/assets/images/pages/previewer/bs-color-palette.png +0 -0
- data/lib/starter_web/assets/images/pages/previewer/material-design-color-palette.jpg +0 -0
- data/lib/starter_web/assets/images/pages/previewer/material-design-color-palette.png +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-1.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-2.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-3.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-4.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-5.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/tables-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-1.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-2.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-3.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-4.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-5.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/cards-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/icon-fonts-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/meeting.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/theme-1920.jpg +0 -0
- data/lib/starter_web/assets/images/pages/roundtrip/typography-1920.jpg +0 -0
- data/lib/starter_web/assets/images/patterns/1x1.png +0 -0
- data/lib/starter_web/assets/images/patterns/gridtile.png +0 -0
- data/lib/starter_web/assets/images/quotes/default.png +0 -0
- data/lib/starter_web/assets/images/quotes/people.png +0 -0
- data/lib/starter_web/assets/images/spinner/loader1.gif +0 -0
- data/lib/starter_web/assets/images/spinner/loader2.gif +0 -0
- data/lib/starter_web/assets/images/widescreen/featured-1920x800.jpg +0 -0
- data/lib/starter_web/assets/images/widescreen/people.jpg +0 -0
- data/lib/starter_web/assets/themes/j1/core/css/bootstrap.css +6328 -0
- data/lib/starter_web/assets/themes/j1/core/css/bootstrap.min.css +6 -0
- data/lib/starter_web/assets/themes/j1/core/css/custom.scss +28 -0
- data/lib/starter_web/assets/themes/j1/core/css/theme_extensions.css +3333 -0
- data/lib/starter_web/assets/themes/j1/core/css/theme_extensions.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/core/css/uno.css +11580 -0
- data/lib/starter_web/assets/themes/j1/core/css/uno.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/core/css/uno.scss +28 -0
- data/lib/starter_web/assets/themes/j1/core/css/vendor.css +34598 -0
- data/lib/starter_web/assets/themes/j1/core/css/vendor.min.css +8 -0
- data/lib/starter_web/assets/themes/j1/core/css/vendor.scss +28 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.svg +990 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.svg +363 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.svg +1413 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.json +26790 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.yml +9088 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.json +2302 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.yml +292 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.eot +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.svg +6369 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/license.md +97 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.json +8186 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.yml +5857 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/OpenSansEmoji.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Black.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BlackItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BoldItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Italic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-LightItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-MediumItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff2 +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-ThinItalic.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold-ascii.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold_italic-ascii.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-italic-ascii.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-regular-ascii-conums.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1p-regular-fallback.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold_italic-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-italic-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-regular-subset.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/back2top.js +141 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/bs_gallery.js +282 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/cookiebar.js +112 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/custom.js +92 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/iframer.js +99 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/lightbox.js +95 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/logger.js +153 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/master_header.js +488 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/navigator.js +687 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/scroller.js +110 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/searcher.js +111 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/switcher.js +113 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/template.js +608 -0
- data/lib/starter_web/assets/themes/j1/core/js/adapter/toccer.js +295 -0
- data/lib/starter_web/assets/themes/j1/core/js/template.js +79 -0
- data/lib/starter_web/assets/themes/j1/core/js/template.js.map +1 -0
- data/lib/starter_web/assets/themes/j1/core/js/template.min.js +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel.css +81 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel_transitions.css +184 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel_transitions.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.css +190 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.min.css +17 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/ajax-loader.gif +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/grabbing.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/owl-logo.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/images/owl.video.play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/js/carousel.js +1517 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/js/carousel.min.js +57 -0
- data/lib/starter_web/assets/themes/j1/extensions/carousel/js/j1_adapter_carousel.js +228 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_asc.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_asc_disabled.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_both.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_desc.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_desc_disabled.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/datatables.css +1113 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/datatables.min.css +136 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/css/theme/uno.css +473 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/js/datatables.js +95360 -0
- data/lib/starter_web/assets/themes/j1/extensions/datatables/js/datatables.min.js +533 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.absolute.html +86 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.content.html +58 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.hover.html +51 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.nested.html +68 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.textarea.html +46 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.tolerance.html +79 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/index.html +70 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/two.html +71 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.js +1104 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.map +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.min.js +10 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.css +103 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.min.css +8 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/theme/uno.css +23 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/j1_adapter_justified_gallery.js +262 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.3.6.3.js +1145 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.js +1147 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.min.js +9 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/less/.csslintrc +19 -0
- data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/less/justifiedGallery.less +113 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-fb-comment-box.css +57 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-fb-comment-box.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-transitions.css +777 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-transitions.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lightgallery.css +980 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lightgallery.min.css +1 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/theme/uno.css +330 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.eot +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.svg +47 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.woff +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/animation-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/customize-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/dynamic-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/facebook-icon.svg +10 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/googleplus-icon.svg +30 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/html5-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/linked-in.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/module-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/play-button.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/responsive-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/thumb-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/touch-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/twitter-icon.svg +15 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/twitter.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/video1-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/zoom-w.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/zoom.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/loading.gif +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/video-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/vimeo-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/youtube-play.png +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-autoplay.js +206 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-autoplay.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-fullscreen.js +116 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-fullscreen.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-hash.js +101 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-hash.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-pager.js +105 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-pager.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-share.js +107 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-share.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-thumbnail.js +478 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-thumbnail.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-video.js +331 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-video.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-zoom.js +527 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-zoom.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lightgallery.js +1364 -0
- data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lightgallery.min.js +4 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.dark/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.light/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai.dark/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai.light/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized.dark/theme.css +78 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized.light/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16/theme.css +77 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/colorful/theme.css +170 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/github/theme.css +209 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox.dark/theme.css +84 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox.light/theme.css +84 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox/theme.css +84 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/igorpro/theme.css +32 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/molokai/theme.css +208 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/monokai.sublime/theme.css +187 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/monokai/theme.css +210 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/pastie/theme.css +146 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/thankful_eyes/theme.css +173 -0
- data/lib/starter_web/assets/themes/j1/extensions/rouge/css/tulip/theme.css +164 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/font/vjs.ttf +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/font/vjs.woff +0 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.4.12.15.css +1011 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.4.12.15.min.css +5 -0
- data/lib/starter_web/assets/themes/j1/extensions/videojs/js/video.4.12.15.min.js +203 -0
- data/lib/starter_web/assets/themes/j1/extensions/vimeo_player/js/froogaloop2.min.js +4 -0
- data/lib/starter_web/assets/videos/gallery/video1-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video1-thumb.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video2-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video2-thumb.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_adele-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_gaga-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_gwen-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/gallery/video_michelle-poster.jpg +0 -0
- data/lib/starter_web/assets/videos/headers/still/underground-broadway.png +0 -0
- data/lib/starter_web/assets/videos/headers/still/victoria-oskolovich-on-vimeo.png +0 -0
- data/lib/starter_web/collections/_biography/a-life-in-questions.adoc +76 -0
- data/lib/starter_web/collections/_biography/born-to-run.adoc +73 -0
- data/lib/starter_web/collections/_biography/forty-autumns.adoc +70 -0
- data/lib/starter_web/collections/_biography/not-dead-yet.adoc +64 -0
- data/lib/starter_web/collections/_biography/princess-diarist-the.adoc +67 -0
- data/lib/starter_web/collections/_biography/when-breath-becomes-air.adoc +68 -0
- data/lib/starter_web/collections/_fantasy/harry-potter-deathly-hallows.adoc +59 -0
- data/lib/starter_web/collections/_fantasy/harry-potter-philosophers-stone.adoc +59 -0
- data/lib/starter_web/collections/_fantasy/mistborn-trilogy.adoc +57 -0
- data/lib/starter_web/collections/_fantasy/ready-player-one.adoc +58 -0
- data/lib/starter_web/collections/_fantasy/sword-of-destiny.adoc +57 -0
- data/lib/starter_web/collections/_fantasy/terry-pratchet-diary-2017.adoc +55 -0
- data/lib/starter_web/collections/_featured/static-site-generators.adoc +43 -0
- data/lib/starter_web/collections/_romance/breath-of-snow-and-ashes-a.adoc +62 -0
- data/lib/starter_web/collections/_romance/dressmaker-the.adoc +56 -0
- data/lib/starter_web/collections/_romance/fiery-cross-the.adoc +64 -0
- data/lib/starter_web/collections/_romance/it-ends-with-us.adoc +61 -0
- data/lib/starter_web/collections/_romance/outlander-novel.adoc +73 -0
- data/lib/starter_web/collections/_romance/virgins-outlander-short-story.adoc +57 -0
- data/lib/starter_web/collections/posts/featured/_posts/0000-00-00-welcome-to-j1-template.adoc.erb +60 -0
- data/lib/starter_web/collections/posts/featured/_posts/000_includes/attributes.asciidoc +15 -0
- data/lib/starter_web/collections/posts/featured/_posts/2017-05-01-confusion-about-base-url.adoc +102 -0
- data/lib/starter_web/collections/posts/featured/_posts/2017-06-01-top-open-source-static-site-generators.adoc +79 -0
- data/lib/starter_web/collections/posts/featured/_posts/2017-07-01-what-is-a-static-site.adoc +146 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/attributes.asciidoc +66 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/documents/100-docker-using-shared-folders.asciidoc +415 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/documents/loop.sh +28 -0
- data/lib/starter_web/collections/posts/series/_posts/000_includes/tables/debug_variables.asciidoc +47 -0
- data/lib/starter_web/collections/posts/series/_posts/2018-11-01-docker-using-shared-folders.adoc +94 -0
- data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-20-minneapolis.adoc +112 -0
- data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-24-narcisse-snake-pits.adoc +81 -0
- data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-26-columbia-river.adoc +68 -0
- data/lib/starter_web/favicon.ico +0 -0
- data/lib/starter_web/index.html +57 -0
- data/lib/starter_web/package.json +104 -0
- data/lib/starter_web/pages/about/about_site.adoc +40 -0
- data/lib/starter_web/pages/about/about_you.adoc +103 -0
- data/lib/starter_web/pages/blog/navigator/archive.html +97 -0
- data/lib/starter_web/pages/blog/navigator/archive_by_category.html +135 -0
- data/lib/starter_web/pages/blog/navigator/archive_by_date.html +115 -0
- data/lib/starter_web/pages/blog/navigator/archive_by_tag.html +168 -0
- data/lib/starter_web/pages/blog/navigator/index.html +41 -0
- data/lib/starter_web/pages/bookshelf/100_about_jekyll_collections.adoc +264 -0
- data/lib/starter_web/pages/bookshelf/200_book_shelf_biography.adoc +41 -0
- data/lib/starter_web/pages/bookshelf/300_book_shelf_fantasy.adoc +43 -0
- data/lib/starter_web/pages/bookshelf/400_book_shelf_romance.adoc +43 -0
- data/lib/starter_web/pages/legal/de/100_impress.adoc +80 -0
- data/lib/starter_web/pages/legal/de/200_terms_of_use.adoc +48 -0
- data/lib/starter_web/pages/legal/de/300_privacy.adoc +233 -0
- data/lib/starter_web/pages/legal/de/400_license_agreement.adoc +388 -0
- data/lib/starter_web/pages/legal/de/500_support.adoc +13 -0
- data/lib/starter_web/pages/legal/en/100_impress.adoc +80 -0
- data/lib/starter_web/pages/legal/en/200_terms_of_use.adoc +44 -0
- data/lib/starter_web/pages/legal/en/300_privacy.adoc +269 -0
- data/lib/starter_web/pages/legal/en/400_license_agreement.adoc +430 -0
- data/lib/starter_web/pages/legal/en/500_support.adoc +13 -0
- data/lib/starter_web/pages/panel/100_intro_panel.adoc +151 -0
- data/lib/starter_web/pages/previewer/000_includes/attributes.asciidoc +75 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/100_absolute_sizes.asciidoc +39 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc +47 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/120_relative_sizes.asciidoc +87 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/200_rotate.asciidoc +71 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/300_flip.asciidoc +30 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/400_spin_pulsed.asciidoc +39 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/500_bw_color_palette.asciidoc +60 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/510_bs_color_palette.asciidoc +54 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/600_md_color_palette.asciidoc +94 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/601_md_color_palette_indigo.asciidoc +94 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/602_md_color_palette_pink.asciidoc +94 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc +46 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/100_relative_sizes.asciidoc +46 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/200_rotate.asciidoc +70 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/300_flip.asciidoc +29 -0
- data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/400_spin_pulsed.asciidoc +30 -0
- data/lib/starter_web/pages/previewer/bootstrap_theme.adoc +1820 -0
- data/lib/starter_web/pages/previewer/justified_gallery.html +353 -0
- data/lib/starter_web/pages/previewer/mdi_icons_preview.adoc +314 -0
- data/lib/starter_web/pages/previewer/twitter_emoji_preview.adoc +181 -0
- data/lib/starter_web/pages/start/000_includes/attributes.asciidoc +30 -0
- data/lib/starter_web/pages/start/change_me_first.adoc +54 -0
- data/lib/starter_web/pages/start/dm920hd.adoc +467 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/attributes.asciidoc +72 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/documents/200_library_features.asciidoc +285 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/001_menu_bar_example.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/005_navbar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/005_navigation_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/006_navigation_side_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/006_searchbar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/007_sidebar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/008_navbar_blank.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/010_nav_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/010_top_search.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/012_top_search.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/015_quicklink_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/017_side_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/020_menu_bar.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/400_master_header.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/410_text_header.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/411_text_header.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/412_header_anatomy.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/415_image_header_caption.png +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/snagit/412_header_anatomy.snag +0 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/000_text_sizes.asciidoc +50 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/410_common_header_parameters.asciidoc +120 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/420_common_image_header_parameters.asciidoc +52 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/421_additional_image_header_parameters.asciidoc +36 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/430_video_header_parameters.asciidoc +26 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/440_image_and_video_transitions.asciidoc +36 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/450_image_and_video_header_defaults.asciidoc +82 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/451_additional_image_and_video_header_defaults.asciidoc +23 -0
- data/lib/starter_web/pages/start/documentation/user_guide/100_header/100_header.adoc +452 -0
- data/lib/starter_web/pages/start/documentation/user_guide/240_auth_manager/000_includes/attributes.asciidoc +119 -0
- data/lib/starter_web/pages/start/documentation/user_guide/240_auth_manager/100_auth_manager.adoc +539 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/000_includes/attributes.asciidoc +26 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/000_includes/tables/100_quickstart_installation_packages.asciidoc +20 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/100_linux_starter.adoc +566 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/200_macos_starter.adoc +742 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/300_windows_starter.adoc +742 -0
- data/lib/starter_web/pages/start/downloads/quickstarter/quickstart.adoc +104 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/attributes.asciidoc +24 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/collections.adoc +268 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/configuration.adoc +780 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/directory_structure.adoc +106 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/jekyll_commandline.adoc +94 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/layout_inheritance.adoc +305 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/manage_pages.adoc +365 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/manage_posts.adoc +203 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/pagination.adoc +228 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/plugins.adoc +777 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/templates.adoc +249 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/variables.adoc +175 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/100_introduction.adoc +169 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/110_preparations.adoc +177 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/120_getting_started.adoc +180 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/20_j1_anatomy.asciidoc +97 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/30_j1_configure_your_site.asciidoc +48 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/40_j1_create_content.asciidoc +48 -0
- data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/50_j1_customize_your_pages.asciidoc +48 -0
- data/lib/starter_web/pages/start/read_me_first.adoc +102 -0
- data/lib/starter_web/pages/start/roundtrip/000_includes/attributes.asciidoc +49 -0
- data/lib/starter_web/pages/start/roundtrip/000_includes/documents/100_gistblock.asciidoc +27 -0
- data/lib/starter_web/pages/start/roundtrip/100_present_images.adoc +411 -0
- data/lib/starter_web/pages/start/roundtrip/200_cards.adoc +769 -0
- data/lib/starter_web/pages/start/roundtrip/300_typography.adoc +518 -0
- data/lib/starter_web/pages/start/roundtrip/400_icon_fonts.adoc +182 -0
- data/lib/starter_web/pages/start/roundtrip/500_asciidoc_extensions.adoc +462 -0
- data/lib/starter_web/pages/start/roundtrip/600_themes.adoc +75 -0
- data/lib/starter_web/pages/start/roundtrip/700_additional_modals.adoc +1369 -0
- data/lib/starter_web/pages/teaser/100_core.adoc +31 -0
- data/lib/starter_web/pages/teaser/200_components.adoc +30 -0
- data/lib/starter_web/pages/teaser/300_modules.adoc +32 -0
- data/screenshot.png +0 -0
- metadata +925 -0
data/lib/starter_web/collections/posts/series/_posts/2018-11-01-docker-using-shared-folders.adoc
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Using Docker
|
|
3
|
+
tagline: Docker on Windows
|
|
4
|
+
description: Using Docker on Windows
|
|
5
|
+
date: 2018-11-01 00:00:00 +0100
|
|
6
|
+
|
|
7
|
+
series: j1-using-docker
|
|
8
|
+
readmore: true
|
|
9
|
+
adsense: false
|
|
10
|
+
|
|
11
|
+
tags: [ Docker, Windows, Shared, Folder, Folders ]
|
|
12
|
+
regenerate: true
|
|
13
|
+
|
|
14
|
+
resource_options:
|
|
15
|
+
|
|
16
|
+
- toccer:
|
|
17
|
+
collapseDepth: 3
|
|
18
|
+
|
|
19
|
+
- masthead:
|
|
20
|
+
opacity: 0.5
|
|
21
|
+
slides:
|
|
22
|
+
- url: /assets/images/master_header/docker_banner_r.1280x500.png
|
|
23
|
+
caption_color: rgba_lighten_800
|
|
24
|
+
transition: fadeInOut
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
// NOTE: General Asciidoc page attributes settings
|
|
28
|
+
//
|
|
29
|
+
:page-liquid:
|
|
30
|
+
|
|
31
|
+
// Load Liquid procedures
|
|
32
|
+
// -------------------------------------------------------------------
|
|
33
|
+
{% capture set_env_entry_document %}themes/{{site.template.name}}/procedures/global/set_env_entry_document.proc{%endcapture%}
|
|
34
|
+
//{% capture set_image_block %}themes/{{site.template.name}}/procedures/global/set_image_block.proc{%endcapture%}
|
|
35
|
+
|
|
36
|
+
// Initialize entry document environmental attributes
|
|
37
|
+
// -------------------------------------------------------------------
|
|
38
|
+
{% include {{set_env_entry_document}} init_folders=all %}
|
|
39
|
+
|
|
40
|
+
{% assign my_page_path = "./collections/posts/series/_posts" %}
|
|
41
|
+
//{% capture my_page_root %}{{ page_path | remove_first: './' | strip}}{% endcapture %}
|
|
42
|
+
{% assign my_page_root=page_path|remove_first:'./'|strip %}
|
|
43
|
+
|
|
44
|
+
// Load tags and urls
|
|
45
|
+
//
|
|
46
|
+
//include::{includedir}/attributes.asciidoc[tag=tags]
|
|
47
|
+
//include::{includedir}/attributes.asciidoc[tag=urls]
|
|
48
|
+
//include::{includedir}/attributes.asciidoc[tag=data]
|
|
49
|
+
|
|
50
|
+
include::{{my_page_path}}/000_includes/attributes.asciidoc[tag=tags]
|
|
51
|
+
include::{{my_page_path}}/000_includes/attributes.asciidoc[tag=urls]
|
|
52
|
+
include::{{my_page_path}}/000_includes/attributes.asciidoc[tag=data]
|
|
53
|
+
|
|
54
|
+
// {arrow-r} page_path:--{{page_path}}
|
|
55
|
+
//
|
|
56
|
+
// {arrow-r} my_page_path:--{{my_page_path}}--
|
|
57
|
+
//
|
|
58
|
+
// {arrow-r} page_root:--{{page_root}}--
|
|
59
|
+
//
|
|
60
|
+
// {arrow-r} my_page_root:--{{my_page_root}}--
|
|
61
|
+
|
|
62
|
+
// Additional Asciidoc page attributes goes here
|
|
63
|
+
//
|
|
64
|
+
// See FRONTMATTER defaults in _config.yml for the images path
|
|
65
|
+
:page-imagesdir: {{page.images.dir}}/j1_using_docker
|
|
66
|
+
|
|
67
|
+
// Additional debug output
|
|
68
|
+
//
|
|
69
|
+
//include::{tabledir}/debug_variables.asciidoc[]
|
|
70
|
+
|
|
71
|
+
// Place an excerpt at the most top position
|
|
72
|
+
// -----------------------------------------------------------------------------
|
|
73
|
+
[role="mb-3"]
|
|
74
|
+
image::{page-imagesdir}/windows_docker_banner.1280x500.png[{{page.title}}]
|
|
75
|
+
|
|
76
|
+
How to run Docker smooth on Windows? Sounds like a quite simple question
|
|
77
|
+
follwed by a simple answer: go for *Docker for Windows*. Unfortunately,
|
|
78
|
+
the answer is *not* that easy. As often: it depends (on the use case).
|
|
79
|
+
|
|
80
|
+
In general, two incarnations of Docker for Windows are available:
|
|
81
|
+
|
|
82
|
+
* Legacy solution: *Docker Toolbox*
|
|
83
|
+
* Native solution: *Docker for Windows*
|
|
84
|
+
|
|
85
|
+
Before the native version of Docker *Docker for Windows* was available,
|
|
86
|
+
a *cross-platform* solution called *Docker Toolbox* could be used.
|
|
87
|
+
*Docker Toolbox* is a bundle of *current* Docker software based on
|
|
88
|
+
*Docker Machine* combined with the *Docker Engine* bundled with
|
|
89
|
+
*VirtualBox* as a Hypervisor to run Linux boxes as virtual machines
|
|
90
|
+
on Windows.
|
|
91
|
+
|
|
92
|
+
excerpt__end
|
|
93
|
+
|
|
94
|
+
include::{documentsdir}/100-docker-using-shared-folders.asciidoc[]
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Minneapolis
|
|
3
|
+
tagline: Largest City in the state of Minnesota
|
|
4
|
+
description: Largest City in the state of Minnesota
|
|
5
|
+
date: 2016-11-20 19:16:49 +0100
|
|
6
|
+
|
|
7
|
+
tags: [ USA, Minnesota, City, Minneapolis ]
|
|
8
|
+
regenerate: false
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
// Enable the Liquid Preprocessor
|
|
12
|
+
//
|
|
13
|
+
:page-liquid:
|
|
14
|
+
|
|
15
|
+
// Set other global page attributes here
|
|
16
|
+
// -----------------------------------------------------------------------------
|
|
17
|
+
:page-imagesdir: {{page.images.dir}}
|
|
18
|
+
:wikipedia-article: https://en.wikipedia.org/wiki/Geography_of_Minneapolis
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
// Place an excerpt at the most top position
|
|
22
|
+
// -----------------------------------------------------------------------------
|
|
23
|
+
[role="mb-3"]
|
|
24
|
+
image::{page-imagesdir}/minneapolis.1200x400.jpg[{{page.title}}]
|
|
25
|
+
|
|
26
|
+
Minneapolis is the largest city in the state of Minnesota in the United States,
|
|
27
|
+
and the county seat of Hennepin County. According to the United States Census
|
|
28
|
+
Bureau, the city has a total area of 151.3 km² (58.4 mi²). 142.2 km² (54.9 mi²)
|
|
29
|
+
of it is land and 9.1 km² (3.5 mi²) of it (6.01%) is water.
|
|
30
|
+
|
|
31
|
+
The city center is located just south of 45 degrees north latitude. On the south
|
|
32
|
+
side of Golden Valley Road just east of Wirth Parkway, a stone containing a
|
|
33
|
+
weathered plaque marks a point on the 45th parallel.
|
|
34
|
+
|
|
35
|
+
[role="clearfix mb-3"]
|
|
36
|
+
excerpt__end
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
[[readmore]]
|
|
40
|
+
== Physical
|
|
41
|
+
|
|
42
|
+
Read: link:{wikipedia-article}[From Wikipedia, the free encyclopedia, window="_blank"].
|
|
43
|
+
|
|
44
|
+
The Mississippi, which runs to the southeast, directed the early growth of the
|
|
45
|
+
city. Most early streets ran parallel to the river to maximize the amount of
|
|
46
|
+
land that could be used. Eventually, growth of Minneapolis turned to north-south
|
|
47
|
+
and east-west streets.
|
|
48
|
+
|
|
49
|
+
Many unique intersections like Seven Corners on the eastern periphery of
|
|
50
|
+
downtown were formed to translate between the two layouts. Some streets,
|
|
51
|
+
especially older and more traditionally important ones like Hennepin Avenue
|
|
52
|
+
and Nicollet Avenue, have both orientations at different points.
|
|
53
|
+
|
|
54
|
+
== Parks and lakes
|
|
55
|
+
|
|
56
|
+
Minneapolis has a large park system consisting of ten square miles (26 km²)
|
|
57
|
+
of land and water that is interlinked in many places. Theodore Wirth is often
|
|
58
|
+
credited with the development of this system that brought a playground within
|
|
59
|
+
the reach of most children and the canopy of trees and boulevards in much of
|
|
60
|
+
the city. The Mississippi National River and Recreation Area connects regional
|
|
61
|
+
parks and visitors centers.
|
|
62
|
+
|
|
63
|
+
Theodore Wirth Park is the largest in the city, shared with Golden Valley,
|
|
64
|
+
and is about 60% the size of Central Park in New York City. Minnehaha Park
|
|
65
|
+
is one of the most famous, the site of Minnehaha Falls and cultural heritage
|
|
66
|
+
events every year. Tower Hill Park in Prospect Park is the home of a 1913
|
|
67
|
+
water tower, one of the highest points in Minneapolis.
|
|
68
|
+
|
|
69
|
+
The Grand Rounds Scenic Byway circles through the city and many of the larger
|
|
70
|
+
park areas including land along the Mississippi, lakes and scenic areas.
|
|
71
|
+
A parkway for cars, a bikeway for riders, and a walkway for pedestrians run
|
|
72
|
+
parallel paths along the 50-mile route. A growing number of bikeways and
|
|
73
|
+
walkways crisscross the city and interconnect with neighboring cities.
|
|
74
|
+
|
|
75
|
+
Twenty four small lakes are within the city limits. Among the largest
|
|
76
|
+
freshwater lakes to the west are Lake Harriet, Lake Calhoun, Lake of the
|
|
77
|
+
Isles, and Cedar Lake, known together as the "Chain of Lakes". Lake Nokomis
|
|
78
|
+
and Lake Hiawatha are to the east. Connected by bike, running and walking
|
|
79
|
+
paths, Minneapolis lakes are used for swimming, fishing, picnics and boating.
|
|
80
|
+
|
|
81
|
+
== Flora and fauna
|
|
82
|
+
|
|
83
|
+
The area now occupied by the Twin Cities generally consisted of a 155 foot
|
|
84
|
+
(47 m) thick layer of St. Peter Sandstone, under a 16 foot (5 m) thick layer
|
|
85
|
+
of shale, under a 35 foot (11 m) thick layer of Platteville limestone.[4]
|
|
86
|
+
These layers were the result of an Ordovician Period sea which covered
|
|
87
|
+
east-central Minnesota 500 million years ago. The hard limestone cap
|
|
88
|
+
was formed from fossilized shell fish. About 20,000 years ago, the area
|
|
89
|
+
was covered by the Superior Lobe of the Laurentide ice sheet, which left
|
|
90
|
+
the St. Croix moraine on the Twin Cities as it receded.
|
|
91
|
+
|
|
92
|
+
Later the Grantsburg Sublobe of the Des Moines Lobe also covered the area.
|
|
93
|
+
Under these vast layers of ice, tunnel valleys were formed, cutting through the
|
|
94
|
+
limestone layer with tremendous force, to release ice meltwater and glacier
|
|
95
|
+
effluence. The result was a series of troughs in the limestone, which
|
|
96
|
+
were filled by glacial till and outwash deposit as the glaciers receded.
|
|
97
|
+
Sometimes the sediment would be mixed with huge chunks of ice, which would
|
|
98
|
+
leave voids in the soil. These voids created basins for the Twin Cities Lakes,
|
|
99
|
+
such as Harriet and Lake Calhoun. Connecting the city lakes in several
|
|
100
|
+
north-south arteries are gorges cut through the bedrock, but filled with
|
|
101
|
+
sand and sediment.
|
|
102
|
+
|
|
103
|
+
When River Warren Falls receded past the confluence of the much smaller
|
|
104
|
+
Upper Mississippi River, a new waterfall was created where that river entered
|
|
105
|
+
the much-lower glacial River Warren. The new falls also receded upstream on
|
|
106
|
+
the Mississippi, migrating eight miles (12875 m) over 9600 years to where
|
|
107
|
+
Louis Hennepin first saw it and named St. Anthony Falls in 1680. Due to its
|
|
108
|
+
value as a power source, this waterfall determined the location of Minneapolis.
|
|
109
|
+
One branch of the river coming from the west, Minnehaha Creek receded only a
|
|
110
|
+
few hundred yards from one of the channels of the Mississippi. Minnehaha Falls
|
|
111
|
+
remains as a picturesque and informative relic of River Warren Falls, and the
|
|
112
|
+
limestone-over-sandstone construction is readily apparent in its small gorge.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Narcisse Snake Pits
|
|
3
|
+
tagline: Largest snakes population
|
|
4
|
+
description: Largest snakes population
|
|
5
|
+
date: 2016-11-24 00:00:00 +0100
|
|
6
|
+
|
|
7
|
+
tags: [
|
|
8
|
+
Canada, Geography, Narcisse, Manitoba,
|
|
9
|
+
Cities, Snakes, Largest population,
|
|
10
|
+
Wikipedia
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
icon:
|
|
14
|
+
name:
|
|
15
|
+
|
|
16
|
+
image:
|
|
17
|
+
name:
|
|
18
|
+
|
|
19
|
+
regenerate: false
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
// Enable the Liquid Preprocessor
|
|
23
|
+
//
|
|
24
|
+
:page-liquid:
|
|
25
|
+
|
|
26
|
+
// Set other global page attributes here
|
|
27
|
+
// -----------------------------------------------------------------------------
|
|
28
|
+
:page-imagesdir: {{page.images.dir}}
|
|
29
|
+
:wikipedia-article: https://en.wikipedia.org/wiki/Narcisse_Snake_Pits
|
|
30
|
+
|
|
31
|
+
// Place an excerpt at the most top position
|
|
32
|
+
// -----------------------------------------------------------------------------
|
|
33
|
+
[role="mb-3"]
|
|
34
|
+
image::{page-imagesdir}/narcise-snake-pits.1200x400.jpg[{{page.title}}]
|
|
35
|
+
|
|
36
|
+
The Narcisse Snake Pits are located in the Rural Municipality of Armstrong
|
|
37
|
+
about 6 kilometres (3.7 mi) north of Narcisse, Manitoba, Canada. The dens
|
|
38
|
+
are the winter home of tens of thousands of red-sided garter snakes
|
|
39
|
+
(Thamnophis sirtalis parietalis).
|
|
40
|
+
|
|
41
|
+
These pits are the largest concentration in the world of this particular type
|
|
42
|
+
of snake. Their winter dens are subterranean caverns formed by the area's
|
|
43
|
+
water-worn limestone bedrock.
|
|
44
|
+
|
|
45
|
+
In the spring, they come up from their dens to the snake pits, where they
|
|
46
|
+
engage in mating rituals. Then they disperse into the nearby marshes for
|
|
47
|
+
the summer.
|
|
48
|
+
|
|
49
|
+
[role="clearfix mb-3"]
|
|
50
|
+
excerpt__end
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
[[readmore]]
|
|
54
|
+
== Conservation
|
|
55
|
+
|
|
56
|
+
Read: link:{wikipedia-article}[From Wikipedia, the free encyclopedia, window="_blank"].
|
|
57
|
+
|
|
58
|
+
The population of red-sided garter snakes around Narcisse was roughly 70,000
|
|
59
|
+
until terrible weather in 1999 killed tens of thousands of them before they
|
|
60
|
+
could reach their winter dens. This tragedy triggered concern about the
|
|
61
|
+
snakes' biannual migratory path, which cuts right across Highway 17.
|
|
62
|
+
|
|
63
|
+
Every year, ten thousand snakes trying to get to or from their winter dens had
|
|
64
|
+
been crushed under the wheels of vehicles. This had not been a problem before,
|
|
65
|
+
because the vast population compensated for the losses. After the winter of
|
|
66
|
+
1999, however, the population of garter snakes was dangerously low, causing
|
|
67
|
+
Manitoba Hydro and volunteers to intervene.
|
|
68
|
+
|
|
69
|
+
Foot-high snow fences were built to force snakes into six-inch (15-cm)
|
|
70
|
+
tunnels that went under Highway 17. Since some snakes still managed to
|
|
71
|
+
squeeze under the fence and onto the road, signs were put up during the
|
|
72
|
+
migratory season urging motorists to slow down to avoid accidentally driving
|
|
73
|
+
over snakes. These measures worked, and now less than a thousand snakes per
|
|
74
|
+
season are killed on the highway.
|
|
75
|
+
|
|
76
|
+
== Visiting
|
|
77
|
+
|
|
78
|
+
The conservation area is open to the public. The snakes are most active
|
|
79
|
+
during the spring and fall - in late April to early May, which is the mating
|
|
80
|
+
season, and also in early September, when the snakes slither back down to
|
|
81
|
+
their winter dens.
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Columbia River
|
|
3
|
+
tagline: Largest River in the Pacific Northwest region
|
|
4
|
+
description: Rivers of the Pacific Northwest region
|
|
5
|
+
date: 2016-11-26 00:00:00 +0100
|
|
6
|
+
|
|
7
|
+
tags: [ USA, Northwest Region, Rocky Mountains, Rivers ]
|
|
8
|
+
|
|
9
|
+
regenerate: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
// Enable the Liquid Preprocessor
|
|
13
|
+
//
|
|
14
|
+
:page-liquid:
|
|
15
|
+
|
|
16
|
+
// Set other global page attributes here
|
|
17
|
+
// -----------------------------------------------------------------------------
|
|
18
|
+
:page-imagesdir: {{page.images.dir}}
|
|
19
|
+
:wikipedia-article: https://en.wikipedia.org/wiki/Columbia_River
|
|
20
|
+
|
|
21
|
+
// Place an excerpt at the most top position
|
|
22
|
+
// -----------------------------------------------------------------------------
|
|
23
|
+
[role="mb-3"]
|
|
24
|
+
image::{page-imagesdir}/columbia-river.1200x400.jpg[{{page.title}}]
|
|
25
|
+
|
|
26
|
+
The *Columbia River* is the largest river in the Pacific Northwest region of
|
|
27
|
+
North America. It flows northwest and then south into the US state of Washington,
|
|
28
|
+
then turns west to form most of the border between Washington and the state of
|
|
29
|
+
Oregon before emptying into the Pacific Ocean.
|
|
30
|
+
|
|
31
|
+
The river is 1,243 miles (2,000 km) long, and its largest tributary is the
|
|
32
|
+
Snake River. Its drainage basin is roughly the size of France and extends
|
|
33
|
+
into seven US states and a Canadian province.
|
|
34
|
+
|
|
35
|
+
[role="clearfix mb-3"]
|
|
36
|
+
excerpt__end
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
[[readmore]]
|
|
40
|
+
== Columbia River
|
|
41
|
+
|
|
42
|
+
Read: link:{wikipedia-article}[From Wikipedia, the free encyclopedia, window="_blank"].
|
|
43
|
+
|
|
44
|
+
By volume, the Columbia is the fourth-largest river in the United States; it
|
|
45
|
+
has the greatest flow of any North American river draining into the Pacific.
|
|
46
|
+
The river’s heavy flow and relatively steep gives it tremendous
|
|
47
|
+
potential for the generation of electricity. The 14 hydroelectric dams on
|
|
48
|
+
the Columbia’s main stem and many more on its tributaries produce more than
|
|
49
|
+
44% of total U.S. hydroelectric generation – much more hydroelectric power
|
|
50
|
+
than those of any other North American river.
|
|
51
|
+
|
|
52
|
+
The Columbia and its tributaries have been central to the region’s culture and
|
|
53
|
+
economy for thousands of years. They have been used for transportation since
|
|
54
|
+
ancient times, linking the many cultural groups of the region. The river system
|
|
55
|
+
hosts many species of fish, which migrate between habitats and the saline
|
|
56
|
+
waters of the Pacific Ocean. These fish—especially the salmon species—provided
|
|
57
|
+
the core subsistence for native peoples; in past centuries, Indigenous peoples
|
|
58
|
+
traveled across western North America to the Columbia to trade for fish.
|
|
59
|
+
|
|
60
|
+
In the late 18th century, a private American ship became the first non-indigenous
|
|
61
|
+
vessel to enter the river; it was followed by a British explorer, who navigated
|
|
62
|
+
past the Oregon Coast Range into the Willamette Valley. In the following
|
|
63
|
+
decades, fur trading companies used the Columbia as a key transportation route.
|
|
64
|
+
Overland explorers entered the Willamette Valley through the scenic but
|
|
65
|
+
treacherous Columbia River Gorge, and pioneers began to settle the valley in
|
|
66
|
+
increasing numbers, following both routes to enter it. Steamships along the
|
|
67
|
+
river linked communities and facilitated trade; the arrival of railroads in
|
|
68
|
+
the late 19th century, many running along the river, supplemented these links.
|
|
Binary file
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: home
|
|
3
|
+
|
|
4
|
+
title: Jekyll One Template
|
|
5
|
+
tagline: Made for Jekyll · Made for Your Web
|
|
6
|
+
description: Jekyll One Template. Gem-based template made for Jekyll.
|
|
7
|
+
|
|
8
|
+
tags: [ Template, Jekyll, Clean, Responsive, Featured, Gem-Based ]
|
|
9
|
+
resources: cookiebar
|
|
10
|
+
indexed: false
|
|
11
|
+
regenerate: false
|
|
12
|
+
|
|
13
|
+
resource_options:
|
|
14
|
+
|
|
15
|
+
- masthead:
|
|
16
|
+
padding_top: 600
|
|
17
|
+
padding_bottom: 60
|
|
18
|
+
margin_bottom: 50
|
|
19
|
+
title:
|
|
20
|
+
color: "#ef2929" #rgba_lighten_800
|
|
21
|
+
tagline:
|
|
22
|
+
color: rgba_lighten_800
|
|
23
|
+
background_color:
|
|
24
|
+
color_1: "#162126"
|
|
25
|
+
color_2: "#849191"
|
|
26
|
+
|
|
27
|
+
opacity: .6
|
|
28
|
+
alignY: .25
|
|
29
|
+
transition: fade
|
|
30
|
+
duration: 3000
|
|
31
|
+
transitionDuration: 2500
|
|
32
|
+
|
|
33
|
+
slides:
|
|
34
|
+
- url: /assets/images/master_header/ideas-start-here.1920x1200.png
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
<pre>
|
|
38
|
+
|
|
39
|
+
This page is created by the layout: {{ page.layout }}.
|
|
40
|
+
|
|
41
|
+
If this text is displaywd (instead of the home page expected),
|
|
42
|
+
something went wrong with the layout definitions. Check the
|
|
43
|
+
output of the Jekyll engine building this site.
|
|
44
|
+
|
|
45
|
+
Check the contents of folder _layouts. Verify if the base
|
|
46
|
+
layout "{{ page.layout }}" exists and the referring chain
|
|
47
|
+
(inheritance) is correct.
|
|
48
|
+
|
|
49
|
+
If you see this page within the J1 Template Development System,
|
|
50
|
+
re-run a site built running:
|
|
51
|
+
|
|
52
|
+
lerna --scope starter_web run jekyllb
|
|
53
|
+
and open the starter web again by:
|
|
54
|
+
|
|
55
|
+
yarn starter
|
|
56
|
+
|
|
57
|
+
</pre>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"private": true,
|
|
3
|
+
"name": "j1_starter",
|
|
4
|
+
"version": "2018.4.10",
|
|
5
|
+
"description": "Starter site for J1 Template",
|
|
6
|
+
"homepage": "https://your.site",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Your Name",
|
|
9
|
+
"email": "name@mail.site",
|
|
10
|
+
"url": "https://your.site"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://your.site"
|
|
15
|
+
},
|
|
16
|
+
"config": {
|
|
17
|
+
"bumplevel": "patch",
|
|
18
|
+
"mode": "production",
|
|
19
|
+
"loglevel": "silent"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=8.0",
|
|
23
|
+
"npm": ">=6.0",
|
|
24
|
+
"yarn": ">=1.6",
|
|
25
|
+
"jekyll": ">=3.8"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"Jekyll",
|
|
29
|
+
"One",
|
|
30
|
+
"Server",
|
|
31
|
+
"Web",
|
|
32
|
+
"Site"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"app": "cross-var cross-env if-env J1DOCKER=true && run-s app-docker || run-s app-local",
|
|
36
|
+
"app-local": "run-p -s app-local:*",
|
|
37
|
+
"app-local:rackup": "cross-env SINATRA_ACTIVESUPPORT_WARNING=false bundle exec rackup -o 127.0.0.1 -p 4000",
|
|
38
|
+
"app-local:open": "npm run delay-3s && opn http://127.0.0.1:4000/",
|
|
39
|
+
"app-docker": "run-p -s app-docker:*",
|
|
40
|
+
"app-docker:rackup": "bundle exec rackup -o 0.0.0.0 -p 4000",
|
|
41
|
+
"detect-os": "echo Detecting OS .. && cross-env cross-var if-env OS=Windows_NT && cross-var echo OS detected as: $OS || OS=$(echo $(getos) && echo OS detected as: $OS",
|
|
42
|
+
"detect-docker": "echo Detecting DOCKER .. && cross-var cross-env if-env J1DOCKER=true && cross-var cross-env echo Docker detected as: $J1DOCKER || echo no Docker detected",
|
|
43
|
+
"built": "run-p -s built:*",
|
|
44
|
+
"built:info": "echo Built the site from current incremental ..",
|
|
45
|
+
"built:do": "bundle exec jekyll b --incremental",
|
|
46
|
+
"rebuilt": "run-p -s rebuilt:*",
|
|
47
|
+
"rebuilt:info": "echo Build the site from scratch ..",
|
|
48
|
+
"rebuilt:clean": "shx rm -rf _site && shx rm -f Gemfile.lock && shx rm -f .jekyll-metadata",
|
|
49
|
+
"rebuilt:do": "bundle exec jekyll b",
|
|
50
|
+
"delay-1s": "node ./node_modules/npm-delay 1000",
|
|
51
|
+
"delay-2s": "node ./node_modules/npm-delay 2000",
|
|
52
|
+
"delay-3s": "node ./node_modules/npm-delay 3000",
|
|
53
|
+
"delay-5s": "node ./node_modules/npm-delay 5000",
|
|
54
|
+
"delay-10s": "node ./node_modules/npm-delay 10000",
|
|
55
|
+
"delay-15s": "node ./node_modules/npm-delay 15000",
|
|
56
|
+
"delay-30s": "node ./node_modules/npm-delay 30000",
|
|
57
|
+
"clean": "run-p -s clean:*",
|
|
58
|
+
"clean:start": "echo Cleaning up project files ..",
|
|
59
|
+
"clean:logs": "shx rm -f *.log",
|
|
60
|
+
"clean:locks": "shx rm -f *.lock && shx rm -f package-lock.json",
|
|
61
|
+
"clean:site": "echo Cleaning up site files .. && shx rm -f .jekyll-metadata && shx rm -rf _site",
|
|
62
|
+
"credentials": "run-s -s credential:*",
|
|
63
|
+
"credential:echo": "echo Store username and password ..",
|
|
64
|
+
"credential:set": "git config credential.helper store && echo Finished.",
|
|
65
|
+
"reset": "run-s -s reset:*",
|
|
66
|
+
"reset:start": "echo Resetting the project to factory state ..",
|
|
67
|
+
"reset:clean-files": "npm --silent run clean",
|
|
68
|
+
"reset:finished": "echo Finished.",
|
|
69
|
+
"setup": "npm --silent run setup-start && npm --silent run setup-base && run-s -s setup:*",
|
|
70
|
+
"setup-start": "echo Setting up the project for first use ..",
|
|
71
|
+
"setup-base": "echo Bootstrapping base modules .. && npm i shx npm-run-all cross-var cross-env -D > install.log && echo Finished.",
|
|
72
|
+
"setup:env": "cross-var echo \"Configuring NODE|NPM environment ..\" && run-s -s set-env:*",
|
|
73
|
+
"set-env:loglevel": "cross-var npm config set jekyll_one_com:loglevel $npm_package_config_loglevel && cross-var echo \"LOGLEVEL: $npm_package_config_loglevel\"",
|
|
74
|
+
"set-env:mode": "cross-var npm config set jekyll_one_com:mode $npm_package_config_mode && cross-var echo \"MODE: $npm_package_config_mode\" && echo Finished.",
|
|
75
|
+
"setup:node-modules": "echo Bootstrapping project modules .. && npm install > install.log && echo Finished.",
|
|
76
|
+
"setup:detect-os": "echo Detecting OS .. && cross-var cross-env if-env OS=Windows_NT && cross-var cross-env echo OS detected as: $OS || OS=$(echo $(getos)) && echo OS detected as: $OS",
|
|
77
|
+
"setup:site": "echo Build the site .. && run-s -s built",
|
|
78
|
+
"site": "cross-var cross-env if-env J1DOCKER=true && run-s site-docker || run-s site-local",
|
|
79
|
+
"site-local": "echo Startup the site - local .. && bundle exec jekyll s --incremental --livereload --open",
|
|
80
|
+
"site-docker": "echo Startup the site - dockerized .. && bundle exec jekyll s --host 0.0.0.0 --incremental --livereload",
|
|
81
|
+
"deploy": "echo Add, Commit, Push and Deploy changed files to the Remotes && run-s -s git:*",
|
|
82
|
+
"git:add": "git add .",
|
|
83
|
+
"git:commit": "echo Commit files to repo && git commit -a",
|
|
84
|
+
"git:github": "echo Push files to Github && git push github master",
|
|
85
|
+
"git:j1git": "echo Push files to J1 Git Server && git push",
|
|
86
|
+
"bump": "run-s -s ver && run-s -s bump:* && run-s -s ver",
|
|
87
|
+
"ver": "cross-var echo \"project version: $npm_package_version\"",
|
|
88
|
+
"bump:project": "cross-var npm version $npm_package_config_bumplevel",
|
|
89
|
+
"bump-no-git": "cross-var npm --no-git-tag-version version $npm_package_config_bumplevel"
|
|
90
|
+
},
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"getos": "^3.1.0",
|
|
93
|
+
"getos-cli": "^1.0.0",
|
|
94
|
+
"if-env": "^1.0.4",
|
|
95
|
+
"npm-delay": "^1.0.4",
|
|
96
|
+
"opn-cli": "^3.1.0"
|
|
97
|
+
},
|
|
98
|
+
"devDependencies": {
|
|
99
|
+
"cross-env": "^5.2.0",
|
|
100
|
+
"cross-var": "^1.1.0",
|
|
101
|
+
"npm-run-all": "^4.1.5",
|
|
102
|
+
"shx": "^0.2.2"
|
|
103
|
+
}
|
|
104
|
+
}
|