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.
Files changed (852) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +79 -0
  4. data/_includes/themes/j1/layouts/content_generator_app.html +34 -0
  5. data/_includes/themes/j1/layouts/content_generator_blog_archive.html +201 -0
  6. data/_includes/themes/j1/layouts/content_generator_collection.html +116 -0
  7. data/_includes/themes/j1/layouts/content_generator_page.html +116 -0
  8. data/_includes/themes/j1/layouts/content_generator_post.html +214 -0
  9. data/_includes/themes/j1/layouts/content_generator_raw.html +35 -0
  10. data/_includes/themes/j1/layouts/layout_metadata_generator.html +106 -0
  11. data/_includes/themes/j1/layouts/layout_module_generator.html +49 -0
  12. data/_includes/themes/j1/layouts/layout_resource_generator.html +53 -0
  13. data/_includes/themes/j1/layouts/layout_shim_generator.html +105 -0
  14. data/_includes/themes/j1/layouts/layout_theme_generator.html +105 -0
  15. data/_includes/themes/j1/modules/boards/news_pin_board.html +183 -0
  16. data/_includes/themes/j1/modules/connectors/ad/google-adsense +39 -0
  17. data/_includes/themes/j1/modules/connectors/ads +34 -0
  18. data/_includes/themes/j1/modules/connectors/analytic/google +42 -0
  19. data/_includes/themes/j1/modules/connectors/analytic/googleUA +44 -0
  20. data/_includes/themes/j1/modules/connectors/analytics +46 -0
  21. data/_includes/themes/j1/modules/connectors/comment/disqus.html +61 -0
  22. data/_includes/themes/j1/modules/connectors/comments +44 -0
  23. data/_includes/themes/j1/modules/connectors/sharing +36 -0
  24. data/_includes/themes/j1/modules/footers/boxes/about_box.proc +33 -0
  25. data/_includes/themes/j1/modules/footers/boxes/contacts_box.proc +55 -0
  26. data/_includes/themes/j1/modules/footers/boxes/legal_statements.proc +61 -0
  27. data/_includes/themes/j1/modules/footers/boxes/links_box.proc +38 -0
  28. data/_includes/themes/j1/modules/footers/boxes/news_box.proc +54 -0
  29. data/_includes/themes/j1/modules/footers/boxes/social_media_icons.proc +38 -0
  30. data/_includes/themes/j1/modules/footers/footer_light_generator.html +130 -0
  31. data/_includes/themes/j1/modules/headers/master_header_generator.html +140 -0
  32. data/_includes/themes/j1/modules/navigator/generator.html +170 -0
  33. data/_includes/themes/j1/modules/navigator/procedures/_unused/authclient.proc +139 -0
  34. data/_includes/themes/j1/modules/navigator/procedures/_unused/authclient.proc.org +217 -0
  35. data/_includes/themes/j1/modules/navigator/procedures/quicklinks.proc +97 -0
  36. data/_includes/themes/j1/modules/navigator/procedures/sidebar.proc +117 -0
  37. data/_includes/themes/j1/modules/navigator/procedures/topsearch.proc +115 -0
  38. data/_includes/themes/j1/procedures/collections/create_collection_article_preview.proc +68 -0
  39. data/_includes/themes/j1/procedures/global/_get_page_path.proc.new +80 -0
  40. data/_includes/themes/j1/procedures/global/_get_page_path.proc.org +68 -0
  41. data/_includes/themes/j1/procedures/global/collect_frontmatter_options.proc +62 -0
  42. data/_includes/themes/j1/procedures/global/create_bs_button.proc +126 -0
  43. data/_includes/themes/j1/procedures/global/create_word_cloud.proc +119 -0
  44. data/_includes/themes/j1/procedures/global/get_category.proc +60 -0
  45. data/_includes/themes/j1/procedures/global/get_category_item.proc +80 -0
  46. data/_includes/themes/j1/procedures/global/get_documents_dir.proc +67 -0
  47. data/_includes/themes/j1/procedures/global/get_page_path.proc +67 -0
  48. data/_includes/themes/j1/procedures/global/get_page_url.proc +55 -0
  49. data/_includes/themes/j1/procedures/global/pager.proc +79 -0
  50. data/_includes/themes/j1/procedures/global/select_color.proc +69 -0
  51. data/_includes/themes/j1/procedures/global/select_font_size.proc +86 -0
  52. data/_includes/themes/j1/procedures/global/select_icon_size.proc +72 -0
  53. data/_includes/themes/j1/procedures/global/select_location.proc +107 -0
  54. data/_includes/themes/j1/procedures/global/set_env_entry_document.proc +88 -0
  55. data/_includes/themes/j1/procedures/global/set_image_block.proc +50 -0
  56. data/_includes/themes/j1/procedures/global/setup.proc +61 -0
  57. data/_includes/themes/j1/procedures/layouts/content_writer.proc +107 -0
  58. data/_includes/themes/j1/procedures/layouts/default_writer.proc +160 -0
  59. data/_includes/themes/j1/procedures/layouts/module_writer.proc +170 -0
  60. data/_includes/themes/j1/procedures/layouts/resource_writer.proc +183 -0
  61. data/_includes/themes/j1/procedures/posts/_collate_timeline.proc +253 -0
  62. data/_includes/themes/j1/procedures/posts/collate_calendar.proc +224 -0
  63. data/_includes/themes/j1/procedures/posts/collate_list.proc +102 -0
  64. data/_includes/themes/j1/procedures/posts/collate_timeline.proc +219 -0
  65. data/_includes/themes/j1/procedures/posts/create_ad_block.proc +56 -0
  66. data/_includes/themes/j1/procedures/posts/create_series_header.proc +96 -0
  67. data/_layouts/_unused/default.html +347 -0
  68. data/_layouts/_unused/default.modal.html +291 -0
  69. data/_layouts/app.html +68 -0
  70. data/_layouts/blog_archive.html +60 -0
  71. data/_layouts/collection.html +68 -0
  72. data/_layouts/compress.html +52 -0
  73. data/_layouts/default.html +192 -0
  74. data/_layouts/home.html +80 -0
  75. data/_layouts/page.html +68 -0
  76. data/_layouts/paginator/autopage_category.html +79 -0
  77. data/_layouts/paginator/autopage_collection.html +159 -0
  78. data/_layouts/paginator/autopage_collections_tags.html +87 -0
  79. data/_layouts/paginator/autopage_tags.html +79 -0
  80. data/_layouts/post.html +68 -0
  81. data/_layouts/raw.html +71 -0
  82. data/_sass/README.md +16 -0
  83. data/assets/README.md +3 -0
  84. data/exe/j1 +26 -0
  85. data/lib/j1.rb +130 -0
  86. data/lib/j1/command.rb +23 -0
  87. data/lib/j1/commands/generate.rb +154 -0
  88. data/lib/j1/commands/help.rb +32 -0
  89. data/lib/j1/commands/module.rb +69 -0
  90. data/lib/j1/external.rb +59 -0
  91. data/lib/j1/log_adapter.rb +115 -0
  92. data/lib/j1/log_helper.rb +61 -0
  93. data/lib/j1/templates/posts/0000-00-00-welcome-to-j1-template.adoc.erb +60 -0
  94. data/lib/j1/utils.rb +330 -0
  95. data/lib/j1/utils/ansi.rb +59 -0
  96. data/lib/j1/utils/exec.rb +25 -0
  97. data/lib/j1/utils/platforms.rb +80 -0
  98. data/lib/j1/utils/win_tz.rb +73 -0
  99. data/lib/j1/version.rb +3 -0
  100. data/lib/j1_app.rb +69 -0
  101. data/lib/j1_app/j1_auth_manager/auth_manager.rb +418 -0
  102. data/lib/j1_app/j1_auth_manager/commands.rb +18 -0
  103. data/lib/j1_app/j1_auth_manager/config.rb +76 -0
  104. data/lib/j1_app/j1_auth_manager/helpers.rb +55 -0
  105. data/lib/j1_app/j1_auth_manager/helpers_disqus.rb +12 -0
  106. data/lib/j1_app/j1_auth_manager/helpers_facebook.rb +12 -0
  107. data/lib/j1_app/j1_auth_manager/helpers_github.rb +95 -0
  108. data/lib/j1_app/j1_auth_manager/helpers_patreon.rb +12 -0
  109. data/lib/j1_app/j1_auth_manager/helpers_twitter.rb +12 -0
  110. data/lib/j1_app/j1_auth_manager/warden_omniauth.rb +133 -0
  111. data/lib/j1_app/j1_site_manager/static_site.rb +16 -0
  112. data/lib/j1_app/omniauth/facebook/signed_request.rb +52 -0
  113. data/lib/j1_app/omniauth/strategies/_unused/doumart_patreon.rb +75 -0
  114. data/lib/j1_app/omniauth/strategies/_unused/my_patreon.rb +78 -0
  115. data/lib/j1_app/omniauth/strategies/disqus.rb +56 -0
  116. data/lib/j1_app/omniauth/strategies/facebook.rb +181 -0
  117. data/lib/j1_app/omniauth/strategies/github.rb +79 -0
  118. data/lib/j1_app/omniauth/strategies/patreon.rb +49 -0
  119. data/lib/j1_app/omniauth/strategies/twitter.rb +104 -0
  120. data/lib/j1_app/sinatra/extras/cookies.rb +282 -0
  121. data/lib/j1_app/sinatra/extras/index.rb +33 -0
  122. data/lib/starter_web/Gemfile +180 -0
  123. data/lib/starter_web/_config.yml +962 -0
  124. data/lib/starter_web/_data/apps/_unused/j1_colorbox.yml +100 -0
  125. data/lib/starter_web/_data/apps/_unused/j1_tocbot.yml +156 -0
  126. data/lib/starter_web/_data/apps/j1_bootstrap_gallery.yml +167 -0
  127. data/lib/starter_web/_data/apps/j1_carousel.yml +501 -0
  128. data/lib/starter_web/_data/apps/j1_justified_gallery.yml +229 -0
  129. data/lib/starter_web/_data/apps/j1_light_gallery.yml +105 -0
  130. data/lib/starter_web/_data/apps/j1_lightbox.yml +163 -0
  131. data/lib/starter_web/_data/apps/j1_link_checker.yml +21 -0
  132. data/lib/starter_web/_data/asciidoc2pdf/default-theme.yml +391 -0
  133. data/lib/starter_web/_data/asciidoc2pdf/j1-theme.yml +53 -0
  134. data/lib/starter_web/_data/builder/blog_navigator.yml +203 -0
  135. data/lib/starter_web/_data/j1_categories.yml +31 -0
  136. data/lib/starter_web/_data/j1_colors.yml +607 -0
  137. data/lib/starter_web/_data/j1_config.yml +203 -0
  138. data/lib/starter_web/_data/j1_font_sizes.yml +25 -0
  139. data/lib/starter_web/_data/j1_i18n.yml +18 -0
  140. data/lib/starter_web/_data/j1_resources.yml +631 -0
  141. data/lib/starter_web/_data/known_issues/windows/cacert.pem +3314 -0
  142. data/lib/starter_web/_data/layouts/app.yml +154 -0
  143. data/lib/starter_web/_data/layouts/blog_archive.yml +155 -0
  144. data/lib/starter_web/_data/layouts/collection.yml +157 -0
  145. data/lib/starter_web/_data/layouts/default.yml +230 -0
  146. data/lib/starter_web/_data/layouts/home.yml +203 -0
  147. data/lib/starter_web/_data/layouts/page.yml +154 -0
  148. data/lib/starter_web/_data/layouts/post.yml +164 -0
  149. data/lib/starter_web/_data/layouts/raw.yml +154 -0
  150. data/lib/starter_web/_data/modules/_unused/j1_navigator.yml +195 -0
  151. data/lib/starter_web/_data/modules/_unused/j1_navigator_menu.yml +317 -0
  152. data/lib/starter_web/_data/modules/j1_back2top.yml +120 -0
  153. data/lib/starter_web/_data/modules/j1_banner.yml +248 -0
  154. data/lib/starter_web/_data/modules/j1_cookiebar.yml +65 -0
  155. data/lib/starter_web/_data/modules/j1_footer.yml +128 -0
  156. data/lib/starter_web/_data/modules/j1_header.yml +201 -0
  157. data/lib/starter_web/_data/modules/j1_iframe_resizer.yml +234 -0
  158. data/lib/starter_web/_data/modules/j1_jekyll_search.yml +112 -0
  159. data/lib/starter_web/_data/modules/j1_log4javascript.yml +98 -0
  160. data/lib/starter_web/_data/modules/j1_navigator.yml +218 -0
  161. data/lib/starter_web/_data/modules/j1_navigator_menu.yml +265 -0
  162. data/lib/starter_web/_data/modules/j1_panel.yml +688 -0
  163. data/lib/starter_web/_data/modules/j1_parallax.yml +87 -0
  164. data/lib/starter_web/_data/modules/j1_sign_in_up.yml +18 -0
  165. data/lib/starter_web/_data/modules/j1_smooth_scroll.yml +122 -0
  166. data/lib/starter_web/_data/modules/j1_theme_switcher.yml +139 -0
  167. data/lib/starter_web/_data/modules/j1_toccer.yml +155 -0
  168. data/lib/starter_web/_data/pages/builder.yml +82 -0
  169. data/lib/starter_web/_plugins/asciidoctor-extensions/admonition-block-answer.rb +48 -0
  170. data/lib/starter_web/_plugins/asciidoctor-extensions/admonition-block-question.rb +48 -0
  171. data/lib/starter_web/_plugins/asciidoctor-extensions/carousel-block.rb +45 -0
  172. data/lib/starter_web/_plugins/asciidoctor-extensions/gist-block.rb +52 -0
  173. data/lib/starter_web/_plugins/asciidoctor-extensions/lightbox-block.rb +85 -0
  174. data/lib/starter_web/_plugins/asciidoctor-extensions/lorem-inline.rb +65 -0
  175. data/lib/starter_web/_plugins/asciidoctor-extensions/shout-block.rb +47 -0
  176. data/lib/starter_web/_plugins/asciidoctor-extensions/twitter-emoji-inline.rb +69 -0
  177. data/lib/starter_web/_plugins/debug.rb +64 -0
  178. data/lib/starter_web/_plugins/filters.rb +307 -0
  179. data/lib/starter_web/_plugins/prettify.rb +45 -0
  180. data/lib/starter_web/_plugins/simple_search_filter.rb +33 -0
  181. data/lib/starter_web/_plugins/symlink_watcher.rb +53 -0
  182. data/lib/starter_web/_rack/Procfile.nginx +1 -0
  183. data/lib/starter_web/_rack/Procfile.webrick +1 -0
  184. data/lib/starter_web/_rack/Rakefile +6 -0
  185. data/lib/starter_web/_rack/config.ru +7 -0
  186. data/lib/starter_web/_rack/dot.env +48 -0
  187. data/lib/starter_web/_rack/dot.gitignore +34 -0
  188. data/lib/starter_web/_rack/heroku.config_set +12 -0
  189. data/lib/starter_web/_rack/puma.rb +200 -0
  190. data/lib/starter_web/_sass/README.md +16 -0
  191. data/lib/starter_web/apps/calendar/index.adoc +71 -0
  192. data/lib/starter_web/apps/link_checker/index.html +24 -0
  193. data/lib/starter_web/assets/apps/link-checker/assets/img/main/img22.jpg +0 -0
  194. data/lib/starter_web/assets/apps/link-checker/assets/img/main/img22.png +0 -0
  195. data/lib/starter_web/assets/apps/link-checker/index.html +125 -0
  196. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/css/bootstrap.min.css +1560 -0
  197. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  198. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
  199. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  200. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  201. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
  202. data/lib/starter_web/assets/apps/link-checker/src/bootstrap/js/bootstrap.min.js +7 -0
  203. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/LICENSE.md +11 -0
  204. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/README.md +105 -0
  205. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/css/font-awesome.css +2337 -0
  206. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/css/font-awesome.min.css +4 -0
  207. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/FontAwesome.otf +0 -0
  208. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.eot +0 -0
  209. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.svg +2671 -0
  210. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.ttf +0 -0
  211. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.woff +0 -0
  212. data/lib/starter_web/assets/apps/link-checker/src/fonts/font_awesome/fonts/fontawesome-webfont.woff2 +0 -0
  213. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/How_to_use_webfonts.html +230 -0
  214. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular-demo.html +372 -0
  215. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.eot +0 -0
  216. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.svg +621 -0
  217. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.ttf +0 -0
  218. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/Roboto-Regular.woff +0 -0
  219. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/Roboto-Regular-cleartype.png +0 -0
  220. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/grid_12-825-55-15.css +129 -0
  221. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/specimen_files/specimen_stylesheet.css +396 -0
  222. data/lib/starter_web/assets/apps/link-checker/src/fonts/roboto/stylesheet.css +12 -0
  223. data/lib/starter_web/assets/apps/link-checker/src/link-checker/css/link-checker.css +87 -0
  224. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/backbone.1.3.2.js +1920 -0
  225. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/backbone.min.js +37 -0
  226. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/html5shiv.min.js +4 -0
  227. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/iframeResizer.contentWindow.min.js +9 -0
  228. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/jquery.min.js +6 -0
  229. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/jsuri-1.1.1.min.js +2 -0
  230. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/link-checker.js +333 -0
  231. data/lib/starter_web/assets/apps/link-checker/src/link-checker/js/underscore.min.js +31 -0
  232. data/lib/starter_web/assets/data/animate.json +120 -0
  233. data/lib/starter_web/assets/data/ascii_code_table.json +1794 -0
  234. data/lib/starter_web/assets/data/authclient.html +371 -0
  235. data/lib/starter_web/assets/data/banner.html +350 -0
  236. data/lib/starter_web/assets/data/carousel.json +95 -0
  237. data/lib/starter_web/assets/data/colors.json +42 -0
  238. data/lib/starter_web/assets/data/font_sizes.json +42 -0
  239. data/lib/starter_web/assets/data/fontawesome_icons.json +5525 -0
  240. data/lib/starter_web/assets/data/footer.html +230 -0
  241. data/lib/starter_web/assets/data/galleries.json +143 -0
  242. data/lib/starter_web/assets/data/mdi_icons.json +14324 -0
  243. data/lib/starter_web/assets/data/menu.html +470 -0
  244. data/lib/starter_web/assets/data/objects.json +458 -0
  245. data/lib/starter_web/assets/data/panel.html +529 -0
  246. data/lib/starter_web/assets/data/search.json +114 -0
  247. data/lib/starter_web/assets/data/themes.json +59 -0
  248. data/lib/starter_web/assets/data/twa_v1.json +6978 -0
  249. data/lib/starter_web/assets/data/twa_v2.json +12812 -0
  250. data/lib/starter_web/assets/images/backgrounds/bg-1.jpg +0 -0
  251. data/lib/starter_web/assets/images/backgrounds/bg-2.jpg +0 -0
  252. data/lib/starter_web/assets/images/backgrounds/bg-3.jpg +0 -0
  253. data/lib/starter_web/assets/images/backgrounds/bg-4.jpg +0 -0
  254. data/lib/starter_web/assets/images/backgrounds/bg-7.jpg +0 -0
  255. data/lib/starter_web/assets/images/blog/featured/img3.jpg +0 -0
  256. data/lib/starter_web/assets/images/blog/featured/jekyll.1200x400.png +0 -0
  257. data/lib/starter_web/assets/images/blog/featured/jekyll.png +0 -0
  258. data/lib/starter_web/assets/images/blog/featured/staticgen.jpg +0 -0
  259. data/lib/starter_web/assets/images/blog/featured/what-is-a-baseurl.jpg +0 -0
  260. data/lib/starter_web/assets/images/blog/series/j1_using_docker/j1_docker_banner.1280x500.png +0 -0
  261. data/lib/starter_web/assets/images/blog/series/j1_using_docker/kinematic_alpha.1280x600.png +0 -0
  262. data/lib/starter_web/assets/images/blog/series/j1_using_docker/kinematic_j1.1280x300.png +0 -0
  263. data/lib/starter_web/assets/images/blog/series/j1_using_docker/windows_docker_banner.1280x500.png +0 -0
  264. data/lib/starter_web/assets/images/blog/wikipedia/columbia-river.1200x400.jpg +0 -0
  265. data/lib/starter_web/assets/images/blog/wikipedia/minneapolis.1200x400.jpg +0 -0
  266. data/lib/starter_web/assets/images/blog/wikipedia/narcise-snake-pits.1200x400.jpg +0 -0
  267. data/lib/starter_web/assets/images/carousel/cats/cat-1.jpg +0 -0
  268. data/lib/starter_web/assets/images/carousel/cats/cat-2.jpg +0 -0
  269. data/lib/starter_web/assets/images/carousel/cats/cat-3.jpg +0 -0
  270. data/lib/starter_web/assets/images/carousel/cats/cat-4.jpg +0 -0
  271. data/lib/starter_web/assets/images/carousel/cats/cat-5.jpg +0 -0
  272. data/lib/starter_web/assets/images/carousel/cats/cat-6.jpg +0 -0
  273. data/lib/starter_web/assets/images/carousel/cats/cat-7.jpg +0 -0
  274. data/lib/starter_web/assets/images/carousel/cats/cat-8.jpg +0 -0
  275. data/lib/starter_web/assets/images/carousel/katarina/katarina-1.jpg +0 -0
  276. data/lib/starter_web/assets/images/carousel/katarina/katarina-2.jpg +0 -0
  277. data/lib/starter_web/assets/images/carousel/katarina/katarina-3.jpg +0 -0
  278. data/lib/starter_web/assets/images/carousel/katarina/katarina-4.jpg +0 -0
  279. data/lib/starter_web/assets/images/carousel/katarina/katarina-5.jpg +0 -0
  280. data/lib/starter_web/assets/images/gallery/justified_gallery/000_6791628438_affaa19e10_b.jpg +0 -0
  281. data/lib/starter_web/assets/images/gallery/justified_gallery/000_6798453217_72dea2d06e_b.jpg +0 -0
  282. data/lib/starter_web/assets/images/gallery/justified_gallery/000_6806687375_07d2b7a1f9_b.jpg +0 -0
  283. data/lib/starter_web/assets/images/gallery/justified_gallery/000_6840627709_92ed52fb41_b.jpg +0 -0
  284. data/lib/starter_web/assets/images/gallery/justified_gallery/000_6876412479_6268c6e2aa_b.jpg +0 -0
  285. data/lib/starter_web/assets/images/gallery/justified_gallery/000_6880502467_d4b3c4b2a8_b.jpg +0 -0
  286. data/lib/starter_web/assets/images/gallery/justified_gallery/13824322785_104dc0968c_b.jpg +0 -0
  287. data/lib/starter_web/assets/images/gallery/justified_gallery/13824674674_ca1e482394_b.jpg +0 -0
  288. data/lib/starter_web/assets/images/gallery/justified_gallery/16961685188_f130144d60_b.jpg +0 -0
  289. data/lib/starter_web/assets/images/gallery/justified_gallery/23753792354_bd75d8dabc_b.jpg +0 -0
  290. data/lib/starter_web/assets/images/gallery/justified_gallery/24014174029_2cfa940264_b.jpg +0 -0
  291. data/lib/starter_web/assets/images/gallery/justified_gallery/24096687789_c37d45712f_b.jpg +0 -0
  292. data/lib/starter_web/assets/images/gallery/justified_gallery/6791628438_affaa19e10_b.jpg +0 -0
  293. data/lib/starter_web/assets/images/gallery/justified_gallery/6798453217_72dea2d06e_b.jpg +0 -0
  294. data/lib/starter_web/assets/images/gallery/justified_gallery/6806687375_07d2b7a1f9_b.jpg +0 -0
  295. data/lib/starter_web/assets/images/gallery/justified_gallery/6812090617_5fd5bbdda0_b.jpg +0 -0
  296. data/lib/starter_web/assets/images/gallery/justified_gallery/6840627709_92ed52fb41_b.jpg +0 -0
  297. data/lib/starter_web/assets/images/gallery/justified_gallery/6841267340_855273fd7e_b.jpg +0 -0
  298. data/lib/starter_web/assets/images/gallery/justified_gallery/6876412479_6268c6e2aa_b.jpg +0 -0
  299. data/lib/starter_web/assets/images/gallery/justified_gallery/6880502467_d4b3c4b2a8_b.jpg +0 -0
  300. data/lib/starter_web/assets/images/gallery/justified_gallery/6916180091_9c9559e463_b.jpg +0 -0
  301. data/lib/starter_web/assets/images/gallery/justified_gallery/7002395006_29fdc85f7a_b.jpg +0 -0
  302. data/lib/starter_web/assets/images/gallery/justified_gallery/7062575651_b23918b11a_b.jpg +0 -0
  303. data/lib/starter_web/assets/images/gallery/justified_gallery/7822678460_ee98ff1f69_b.jpg +0 -0
  304. data/lib/starter_web/assets/images/gallery/justified_gallery/7948632554_01f6ae6b6f_b.jpg +0 -0
  305. data/lib/starter_web/assets/images/gallery/justified_gallery/8157236803_78aa1698b6_b.jpg +0 -0
  306. data/lib/starter_web/assets/images/gallery/justified_gallery/8400794773_932654a20e_b.jpg +0 -0
  307. data/lib/starter_web/assets/images/gallery/justified_gallery/8811828736_88392f614a_b.jpg +0 -0
  308. data/lib/starter_web/assets/images/gallery/justified_gallery/8842312290_f310d491f4_b.jpg +0 -0
  309. data/lib/starter_web/assets/images/icons/asciidoc/logo-512x512.png +0 -0
  310. data/lib/starter_web/assets/images/icons/bootstrap/bootstrap-solid-32x32.png +0 -0
  311. data/lib/starter_web/assets/images/icons/bootstrap/bs-docs-masthead-pattern.png +0 -0
  312. data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-outline.svg +20 -0
  313. data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-punchout.svg +18 -0
  314. data/lib/starter_web/assets/images/icons/bootstrap/scalable/bootstrap-solid.svg +17 -0
  315. data/lib/starter_web/assets/images/icons/components/angular.ui.png +0 -0
  316. data/lib/starter_web/assets/images/icons/components/angularjs.png +0 -0
  317. data/lib/starter_web/assets/images/icons/components/aws.png +0 -0
  318. data/lib/starter_web/assets/images/icons/components/bootstrap.png +0 -0
  319. data/lib/starter_web/assets/images/icons/components/c9.png +0 -0
  320. data/lib/starter_web/assets/images/icons/components/chai.png +0 -0
  321. data/lib/starter_web/assets/images/icons/components/emmet.png +0 -0
  322. data/lib/starter_web/assets/images/icons/components/express.png +0 -0
  323. data/lib/starter_web/assets/images/icons/components/git.png +0 -0
  324. data/lib/starter_web/assets/images/icons/components/github.png +0 -0
  325. data/lib/starter_web/assets/images/icons/components/gulp.png +0 -0
  326. data/lib/starter_web/assets/images/icons/components/heroku.png +0 -0
  327. data/lib/starter_web/assets/images/icons/components/htmlcss-1.png +0 -0
  328. data/lib/starter_web/assets/images/icons/components/htmlcss-2.png +0 -0
  329. data/lib/starter_web/assets/images/icons/components/jasmine.png +0 -0
  330. data/lib/starter_web/assets/images/icons/components/javascript.png +0 -0
  331. data/lib/starter_web/assets/images/icons/components/jquery.png +0 -0
  332. data/lib/starter_web/assets/images/icons/components/kanban.png +0 -0
  333. data/lib/starter_web/assets/images/icons/components/leanux.png +0 -0
  334. data/lib/starter_web/assets/images/icons/components/linkedin.png +0 -0
  335. data/lib/starter_web/assets/images/icons/components/mean.png +0 -0
  336. data/lib/starter_web/assets/images/icons/components/mongodb.png +0 -0
  337. data/lib/starter_web/assets/images/icons/components/node.png +0 -0
  338. data/lib/starter_web/assets/images/icons/components/postgresql.png +0 -0
  339. data/lib/starter_web/assets/images/icons/components/protractor.png +0 -0
  340. data/lib/starter_web/assets/images/icons/components/rails.png +0 -0
  341. data/lib/starter_web/assets/images/icons/components/ruby.png +0 -0
  342. data/lib/starter_web/assets/images/icons/components/sass.png +0 -0
  343. data/lib/starter_web/assets/images/icons/components/scrum.png +0 -0
  344. data/lib/starter_web/assets/images/icons/components/twitter.png +0 -0
  345. data/lib/starter_web/assets/images/icons/j1/favicon.ico +0 -0
  346. data/lib/starter_web/assets/images/icons/j1/j1-32x32.ico +0 -0
  347. data/lib/starter_web/assets/images/icons/j1/j1-512x512.png +0 -0
  348. data/lib/starter_web/assets/images/icons/j1/j1-64x64.png +0 -0
  349. data/lib/starter_web/assets/images/icons/j1/j1.ico +0 -0
  350. data/lib/starter_web/assets/images/icons/j1/scalable/j1.svg +2037 -0
  351. data/lib/starter_web/assets/images/icons/social/amazon.png +0 -0
  352. data/lib/starter_web/assets/images/icons/social/behance.png +0 -0
  353. data/lib/starter_web/assets/images/icons/social/blogger.png +0 -0
  354. data/lib/starter_web/assets/images/icons/social/deviantart.png +0 -0
  355. data/lib/starter_web/assets/images/icons/social/dribbble.png +0 -0
  356. data/lib/starter_web/assets/images/icons/social/dropbox.png +0 -0
  357. data/lib/starter_web/assets/images/icons/social/evernote.png +0 -0
  358. data/lib/starter_web/assets/images/icons/social/facebook.png +0 -0
  359. data/lib/starter_web/assets/images/icons/social/forrst.png +0 -0
  360. data/lib/starter_web/assets/images/icons/social/github.png +0 -0
  361. data/lib/starter_web/assets/images/icons/social/googleplus.png +0 -0
  362. data/lib/starter_web/assets/images/icons/social/instagram.png +0 -0
  363. data/lib/starter_web/assets/images/icons/social/jolicloud.png +0 -0
  364. data/lib/starter_web/assets/images/icons/social/last-fm.png +0 -0
  365. data/lib/starter_web/assets/images/icons/social/linkedin.png +0 -0
  366. data/lib/starter_web/assets/images/icons/social/picasa.png +0 -0
  367. data/lib/starter_web/assets/images/icons/social/pintrest.png +0 -0
  368. data/lib/starter_web/assets/images/icons/social/rss.png +0 -0
  369. data/lib/starter_web/assets/images/icons/social/skype.png +0 -0
  370. data/lib/starter_web/assets/images/icons/social/spotify.png +0 -0
  371. data/lib/starter_web/assets/images/icons/social/stumbleupon.png +0 -0
  372. data/lib/starter_web/assets/images/icons/social/tumblr.png +0 -0
  373. data/lib/starter_web/assets/images/icons/social/twitter.png +0 -0
  374. data/lib/starter_web/assets/images/icons/social/vimeo.png +0 -0
  375. data/lib/starter_web/assets/images/icons/social/vk.png +0 -0
  376. data/lib/starter_web/assets/images/icons/social/wordpress.png +0 -0
  377. data/lib/starter_web/assets/images/icons/social/xing.png +0 -0
  378. data/lib/starter_web/assets/images/icons/social/yahoo.png +0 -0
  379. data/lib/starter_web/assets/images/icons/social/youtube.png +0 -0
  380. data/lib/starter_web/assets/images/lightbox/close.png +0 -0
  381. data/lib/starter_web/assets/images/lightbox/loading.gif +0 -0
  382. data/lib/starter_web/assets/images/lightbox/next.png +0 -0
  383. data/lib/starter_web/assets/images/lightbox/prev.png +0 -0
  384. data/lib/starter_web/assets/images/master_header/aaron-burden-1200.jpg +0 -0
  385. data/lib/starter_web/assets/images/master_header/alexey-ruban-slider.jpg +0 -0
  386. data/lib/starter_web/assets/images/master_header/chuttersnap-1200.jpg +0 -0
  387. data/lib/starter_web/assets/images/master_header/clark-tibbs-do-something.jpg +0 -0
  388. data/lib/starter_web/assets/images/master_header/docker_banner_l.1280x500.png +0 -0
  389. data/lib/starter_web/assets/images/master_header/docker_banner_r.1280x500.png +0 -0
  390. data/lib/starter_web/assets/images/master_header/homehead-default-1200.jpg +0 -0
  391. data/lib/starter_web/assets/images/master_header/ideas-start-here.1200x800.png +0 -0
  392. data/lib/starter_web/assets/images/master_header/ideas-start-here.1920x1200.png +0 -0
  393. data/lib/starter_web/assets/images/master_header/ideas-start-here.jpg +0 -0
  394. data/lib/starter_web/assets/images/master_header/maarten-van-den-heuvel-1200.jpg +0 -0
  395. data/lib/starter_web/assets/images/master_header/pagehead-default-1200.jpg +0 -0
  396. data/lib/starter_web/assets/images/master_header/stefan-stefancik-1200.jpg +0 -0
  397. data/lib/starter_web/assets/images/master_header/water-journal-1200.jpg +0 -0
  398. data/lib/starter_web/assets/images/md-kit/avatar.jpg +0 -0
  399. data/lib/starter_web/assets/images/md-kit/bg7.jpg +0 -0
  400. data/lib/starter_web/assets/images/md-kit/blog1.jpg +0 -0
  401. data/lib/starter_web/assets/images/md-kit/blog5.jpg +0 -0
  402. data/lib/starter_web/assets/images/md-kit/blog6.jpg +0 -0
  403. data/lib/starter_web/assets/images/md-kit/card-blog2.jpg +0 -0
  404. data/lib/starter_web/assets/images/md-kit/card-blog3.jpg +0 -0
  405. data/lib/starter_web/assets/images/md-kit/card-profile1.jpg +0 -0
  406. data/lib/starter_web/assets/images/md-kit/card-profile4.jpg +0 -0
  407. data/lib/starter_web/assets/images/md-kit/card-profile5-square.jpg +0 -0
  408. data/lib/starter_web/assets/images/md-kit/kendall.jpg +0 -0
  409. data/lib/starter_web/assets/images/md-kit/kendall.png +0 -0
  410. data/lib/starter_web/assets/images/md-kit/marc.jpg +0 -0
  411. data/lib/starter_web/assets/images/md-kit/office1.jpg +0 -0
  412. data/lib/starter_web/assets/images/old_times/image_01.jpg +0 -0
  413. data/lib/starter_web/assets/images/old_times/image_02.jpg +0 -0
  414. data/lib/starter_web/assets/images/old_times/image_03.jpg +0 -0
  415. data/lib/starter_web/assets/images/old_times/image_04.jpg +0 -0
  416. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/001_menubar_example.png +0 -0
  417. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/005_navbar.png +0 -0
  418. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/005_navigation_bar.png +0 -0
  419. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/006_navigation_side_bar.png +0 -0
  420. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/006_searchbar.png +0 -0
  421. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/007_sidebar.png +0 -0
  422. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/008_navbar_blank.png +0 -0
  423. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/010_nav_bar.png +0 -0
  424. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/010_top_search.png +0 -0
  425. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/012_top_search.png +0 -0
  426. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/015_quicklink_bar.png +0 -0
  427. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/017_side_bar.png +0 -0
  428. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/200_navigation/020_menu_bar.png +0 -0
  429. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/2-tier-architecture-1280x600.png +0 -0
  430. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/3-tier-architecture-1280x600.png +0 -0
  431. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/download_image_create_starter.800x600.png +0 -0
  432. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-icon.1280x600.png +0 -0
  433. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-signin.1280x700.png +0 -0
  434. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-app-authclient-signout.1280x700.png +0 -0
  435. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1-disqus-comment-dialog.1280x500.png +0 -0
  436. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1_development_system-1280x600.png +0 -0
  437. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/j1_runtime_system-1280x600.png +0 -0
  438. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/rack_based_web_app-1280x600.png +0 -0
  439. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/rack_based_web_app.png +0 -0
  440. 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
  441. data/lib/starter_web/assets/images/pages/documentation/100_user_guide/200_modules/240_auth_manager/run_starter_web.800x700.png +0 -0
  442. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/130_layout_inheritance.png +0 -0
  443. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/content_inheritance.png +0 -0
  444. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/content_inheritance_thumb.png +0 -0
  445. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/html_layout.png +0 -0
  446. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1-quickstart-windows.png +0 -0
  447. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1-template-theme.png +0 -0
  448. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/j1_layout.png +0 -0
  449. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/jekyll-minima-theme.png +0 -0
  450. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/lane_inheritance.png +0 -0
  451. data/lib/starter_web/assets/images/pages/kickstarter/web_in_a_day/layout_inheritance.png +0 -0
  452. data/lib/starter_web/assets/images/pages/modals/01_frame_modal.jpg +0 -0
  453. data/lib/starter_web/assets/images/pages/modals/02_site_modal.jpg +0 -0
  454. data/lib/starter_web/assets/images/pages/modals/03_central_modal.jpg +0 -0
  455. data/lib/starter_web/assets/images/pages/modals/04_fluid_modal.jpg +0 -0
  456. data/lib/starter_web/assets/images/pages/previewer/bs-color-palette.png +0 -0
  457. data/lib/starter_web/assets/images/pages/previewer/material-design-color-palette.jpg +0 -0
  458. data/lib/starter_web/assets/images/pages/previewer/material-design-color-palette.png +0 -0
  459. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-1.jpg +0 -0
  460. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-2.jpg +0 -0
  461. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-3.jpg +0 -0
  462. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-4.jpg +0 -0
  463. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/image-5.jpg +0 -0
  464. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/tables-1920.jpg +0 -0
  465. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-1.jpg +0 -0
  466. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-2.jpg +0 -0
  467. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-3.jpg +0 -0
  468. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-4.jpg +0 -0
  469. data/lib/starter_web/assets/images/pages/roundtrip/100_present_images/thumb-5.jpg +0 -0
  470. data/lib/starter_web/assets/images/pages/roundtrip/cards-1920.jpg +0 -0
  471. data/lib/starter_web/assets/images/pages/roundtrip/icon-fonts-1920.jpg +0 -0
  472. data/lib/starter_web/assets/images/pages/roundtrip/meeting.jpg +0 -0
  473. data/lib/starter_web/assets/images/pages/roundtrip/theme-1920.jpg +0 -0
  474. data/lib/starter_web/assets/images/pages/roundtrip/typography-1920.jpg +0 -0
  475. data/lib/starter_web/assets/images/patterns/1x1.png +0 -0
  476. data/lib/starter_web/assets/images/patterns/gridtile.png +0 -0
  477. data/lib/starter_web/assets/images/quotes/default.png +0 -0
  478. data/lib/starter_web/assets/images/quotes/people.png +0 -0
  479. data/lib/starter_web/assets/images/spinner/loader1.gif +0 -0
  480. data/lib/starter_web/assets/images/spinner/loader2.gif +0 -0
  481. data/lib/starter_web/assets/images/widescreen/featured-1920x800.jpg +0 -0
  482. data/lib/starter_web/assets/images/widescreen/people.jpg +0 -0
  483. data/lib/starter_web/assets/themes/j1/core/css/bootstrap.css +6328 -0
  484. data/lib/starter_web/assets/themes/j1/core/css/bootstrap.min.css +6 -0
  485. data/lib/starter_web/assets/themes/j1/core/css/custom.scss +28 -0
  486. data/lib/starter_web/assets/themes/j1/core/css/theme_extensions.css +3333 -0
  487. data/lib/starter_web/assets/themes/j1/core/css/theme_extensions.min.css +1 -0
  488. data/lib/starter_web/assets/themes/j1/core/css/uno.css +11580 -0
  489. data/lib/starter_web/assets/themes/j1/core/css/uno.min.css +1 -0
  490. data/lib/starter_web/assets/themes/j1/core/css/uno.scss +28 -0
  491. data/lib/starter_web/assets/themes/j1/core/css/vendor.css +34598 -0
  492. data/lib/starter_web/assets/themes/j1/core/css/vendor.min.css +8 -0
  493. data/lib/starter_web/assets/themes/j1/core/css/vendor.scss +28 -0
  494. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.eot +0 -0
  495. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.svg +990 -0
  496. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.ttf +0 -0
  497. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff +0 -0
  498. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-brands-400.woff2 +0 -0
  499. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.eot +0 -0
  500. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.svg +363 -0
  501. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.ttf +0 -0
  502. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff +0 -0
  503. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-regular-400.woff2 +0 -0
  504. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.eot +0 -0
  505. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.svg +1413 -0
  506. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.ttf +0 -0
  507. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff +0 -0
  508. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/fonts/fa-solid-900.woff2 +0 -0
  509. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.json +26790 -0
  510. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/icons.yml +9088 -0
  511. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.json +2302 -0
  512. data/lib/starter_web/assets/themes/j1/core/fonts/fontawesome_5/metadata/shims.yml +292 -0
  513. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.eot +0 -0
  514. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.svg +6369 -0
  515. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.ttf +0 -0
  516. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff +0 -0
  517. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/fonts/materialdesignicons-webfont.woff2 +0 -0
  518. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/license.md +97 -0
  519. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.json +8186 -0
  520. data/lib/starter_web/assets/themes/j1/core/fonts/materialdesign_icons/metadata/icons.yml +5857 -0
  521. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/OpenSansEmoji.ttf +0 -0
  522. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Black.ttf +0 -0
  523. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BlackItalic.ttf +0 -0
  524. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.ttf +0 -0
  525. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff +0 -0
  526. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Bold.woff2 +0 -0
  527. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-BoldItalic.ttf +0 -0
  528. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Italic.ttf +0 -0
  529. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.ttf +0 -0
  530. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff +0 -0
  531. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Light.woff2 +0 -0
  532. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-LightItalic.ttf +0 -0
  533. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.ttf +0 -0
  534. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff +0 -0
  535. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Medium.woff2 +0 -0
  536. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-MediumItalic.ttf +0 -0
  537. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.ttf +0 -0
  538. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff +0 -0
  539. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Regular.woff2 +0 -0
  540. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.ttf +0 -0
  541. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff +0 -0
  542. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-Thin.woff2 +0 -0
  543. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/Roboto-ThinItalic.ttf +0 -0
  544. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold-ascii.ttf +0 -0
  545. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-bold_italic-ascii.ttf +0 -0
  546. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-italic-ascii.ttf +0 -0
  547. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1mn-regular-ascii-conums.ttf +0 -0
  548. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/mplus1p-regular-fallback.ttf +0 -0
  549. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold-subset.ttf +0 -0
  550. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-bold_italic-subset.ttf +0 -0
  551. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-italic-subset.ttf +0 -0
  552. data/lib/starter_web/assets/themes/j1/core/fonts/roboto/fonts/notoserif-regular-subset.ttf +0 -0
  553. data/lib/starter_web/assets/themes/j1/core/js/adapter/back2top.js +141 -0
  554. data/lib/starter_web/assets/themes/j1/core/js/adapter/bs_gallery.js +282 -0
  555. data/lib/starter_web/assets/themes/j1/core/js/adapter/cookiebar.js +112 -0
  556. data/lib/starter_web/assets/themes/j1/core/js/adapter/custom.js +92 -0
  557. data/lib/starter_web/assets/themes/j1/core/js/adapter/iframer.js +99 -0
  558. data/lib/starter_web/assets/themes/j1/core/js/adapter/lightbox.js +95 -0
  559. data/lib/starter_web/assets/themes/j1/core/js/adapter/logger.js +153 -0
  560. data/lib/starter_web/assets/themes/j1/core/js/adapter/master_header.js +488 -0
  561. data/lib/starter_web/assets/themes/j1/core/js/adapter/navigator.js +687 -0
  562. data/lib/starter_web/assets/themes/j1/core/js/adapter/scroller.js +110 -0
  563. data/lib/starter_web/assets/themes/j1/core/js/adapter/searcher.js +111 -0
  564. data/lib/starter_web/assets/themes/j1/core/js/adapter/switcher.js +113 -0
  565. data/lib/starter_web/assets/themes/j1/core/js/adapter/template.js +608 -0
  566. data/lib/starter_web/assets/themes/j1/core/js/adapter/toccer.js +295 -0
  567. data/lib/starter_web/assets/themes/j1/core/js/template.js +79 -0
  568. data/lib/starter_web/assets/themes/j1/core/js/template.js.map +1 -0
  569. data/lib/starter_web/assets/themes/j1/core/js/template.min.js +1 -0
  570. data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel.css +81 -0
  571. data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel.min.css +17 -0
  572. data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel_transitions.css +184 -0
  573. data/lib/starter_web/assets/themes/j1/extensions/carousel/css/carousel_transitions.min.css +17 -0
  574. data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.css +190 -0
  575. data/lib/starter_web/assets/themes/j1/extensions/carousel/css/theme/uno.min.css +17 -0
  576. data/lib/starter_web/assets/themes/j1/extensions/carousel/images/ajax-loader.gif +0 -0
  577. data/lib/starter_web/assets/themes/j1/extensions/carousel/images/grabbing.png +0 -0
  578. data/lib/starter_web/assets/themes/j1/extensions/carousel/images/owl-logo.png +0 -0
  579. data/lib/starter_web/assets/themes/j1/extensions/carousel/images/owl.video.play.png +0 -0
  580. data/lib/starter_web/assets/themes/j1/extensions/carousel/js/carousel.js +1517 -0
  581. data/lib/starter_web/assets/themes/j1/extensions/carousel/js/carousel.min.js +57 -0
  582. data/lib/starter_web/assets/themes/j1/extensions/carousel/js/j1_adapter_carousel.js +228 -0
  583. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_asc.png +0 -0
  584. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_asc_disabled.png +0 -0
  585. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_both.png +0 -0
  586. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_desc.png +0 -0
  587. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/DataTables-1.10.16/images/sort_desc_disabled.png +0 -0
  588. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/datatables.css +1113 -0
  589. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/datatables.min.css +136 -0
  590. data/lib/starter_web/assets/themes/j1/extensions/datatables/css/theme/uno.css +473 -0
  591. data/lib/starter_web/assets/themes/j1/extensions/datatables/js/datatables.js +95360 -0
  592. data/lib/starter_web/assets/themes/j1/extensions/datatables/js/datatables.min.js +533 -0
  593. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.absolute.html +86 -0
  594. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.content.html +58 -0
  595. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.hover.html +51 -0
  596. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.nested.html +68 -0
  597. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.textarea.html +46 -0
  598. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/frame.tolerance.html +79 -0
  599. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/index.html +70 -0
  600. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/examples/two.html +71 -0
  601. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.js +1104 -0
  602. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.map +1 -0
  603. data/lib/starter_web/assets/themes/j1/extensions/iframe_resizer/js/client/iframeResizer.contentWindow.min.js +10 -0
  604. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.css +103 -0
  605. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/justifiedGallery.min.css +8 -0
  606. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/css/theme/uno.css +23 -0
  607. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/j1_adapter_justified_gallery.js +262 -0
  608. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.3.6.3.js +1145 -0
  609. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.js +1147 -0
  610. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/js/justifiedGallery.min.js +9 -0
  611. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/less/.csslintrc +19 -0
  612. data/lib/starter_web/assets/themes/j1/extensions/justified_gallery/less/justifiedGallery.less +113 -0
  613. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-fb-comment-box.css +57 -0
  614. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-fb-comment-box.min.css +1 -0
  615. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-transitions.css +777 -0
  616. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lg-transitions.min.css +1 -0
  617. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lightgallery.css +980 -0
  618. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/lightgallery.min.css +1 -0
  619. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/css/theme/uno.css +330 -0
  620. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.eot +0 -0
  621. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.svg +47 -0
  622. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.ttf +0 -0
  623. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/fonts/lg.woff +0 -0
  624. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/animation-w.png +0 -0
  625. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/customize-w.png +0 -0
  626. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/dynamic-w.png +0 -0
  627. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/facebook-icon.svg +10 -0
  628. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/googleplus-icon.svg +30 -0
  629. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/html5-w.png +0 -0
  630. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/linked-in.png +0 -0
  631. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/module-w.png +0 -0
  632. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/play-button.png +0 -0
  633. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/responsive-w.png +0 -0
  634. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/thumb-w.png +0 -0
  635. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/touch-w.png +0 -0
  636. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/twitter-icon.svg +15 -0
  637. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/twitter.png +0 -0
  638. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/video1-w.png +0 -0
  639. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/zoom-w.png +0 -0
  640. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/icons/zoom.png +0 -0
  641. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/loading.gif +0 -0
  642. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/video-play.png +0 -0
  643. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/vimeo-play.png +0 -0
  644. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/img/youtube-play.png +0 -0
  645. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-autoplay.js +206 -0
  646. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-autoplay.min.js +4 -0
  647. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-fullscreen.js +116 -0
  648. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-fullscreen.min.js +4 -0
  649. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-hash.js +101 -0
  650. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-hash.min.js +4 -0
  651. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-pager.js +105 -0
  652. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-pager.min.js +4 -0
  653. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-share.js +107 -0
  654. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-share.min.js +4 -0
  655. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-thumbnail.js +478 -0
  656. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-thumbnail.min.js +4 -0
  657. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-video.js +331 -0
  658. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-video.min.js +4 -0
  659. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-zoom.js +527 -0
  660. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lg-zoom.min.js +4 -0
  661. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lightgallery.js +1364 -0
  662. data/lib/starter_web/assets/themes/j1/extensions/light_gallery/js/lightgallery.min.js +4 -0
  663. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.dark/theme.css +78 -0
  664. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.light/theme.css +77 -0
  665. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai.dark/theme.css +78 -0
  666. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai.light/theme.css +77 -0
  667. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.monokai/theme.css +78 -0
  668. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized.dark/theme.css +78 -0
  669. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized.light/theme.css +77 -0
  670. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16.solarized/theme.css +77 -0
  671. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/base16/theme.css +77 -0
  672. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/colorful/theme.css +170 -0
  673. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/github/theme.css +209 -0
  674. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox.dark/theme.css +84 -0
  675. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox.light/theme.css +84 -0
  676. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/gruvbox/theme.css +84 -0
  677. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/igorpro/theme.css +32 -0
  678. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/molokai/theme.css +208 -0
  679. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/monokai.sublime/theme.css +187 -0
  680. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/monokai/theme.css +210 -0
  681. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/pastie/theme.css +146 -0
  682. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/thankful_eyes/theme.css +173 -0
  683. data/lib/starter_web/assets/themes/j1/extensions/rouge/css/tulip/theme.css +164 -0
  684. data/lib/starter_web/assets/themes/j1/extensions/videojs/css/font/vjs.ttf +0 -0
  685. data/lib/starter_web/assets/themes/j1/extensions/videojs/css/font/vjs.woff +0 -0
  686. data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.4.12.15.css +1011 -0
  687. data/lib/starter_web/assets/themes/j1/extensions/videojs/css/video-js.4.12.15.min.css +5 -0
  688. data/lib/starter_web/assets/themes/j1/extensions/videojs/js/video.4.12.15.min.js +203 -0
  689. data/lib/starter_web/assets/themes/j1/extensions/vimeo_player/js/froogaloop2.min.js +4 -0
  690. data/lib/starter_web/assets/videos/gallery/video1-poster.jpg +0 -0
  691. data/lib/starter_web/assets/videos/gallery/video1-thumb.jpg +0 -0
  692. data/lib/starter_web/assets/videos/gallery/video2-poster.jpg +0 -0
  693. data/lib/starter_web/assets/videos/gallery/video2-thumb.jpg +0 -0
  694. data/lib/starter_web/assets/videos/gallery/video_adele-poster.jpg +0 -0
  695. data/lib/starter_web/assets/videos/gallery/video_gaga-poster.jpg +0 -0
  696. data/lib/starter_web/assets/videos/gallery/video_gwen-poster.jpg +0 -0
  697. data/lib/starter_web/assets/videos/gallery/video_michelle-poster.jpg +0 -0
  698. data/lib/starter_web/assets/videos/headers/still/underground-broadway.png +0 -0
  699. data/lib/starter_web/assets/videos/headers/still/victoria-oskolovich-on-vimeo.png +0 -0
  700. data/lib/starter_web/collections/_biography/a-life-in-questions.adoc +76 -0
  701. data/lib/starter_web/collections/_biography/born-to-run.adoc +73 -0
  702. data/lib/starter_web/collections/_biography/forty-autumns.adoc +70 -0
  703. data/lib/starter_web/collections/_biography/not-dead-yet.adoc +64 -0
  704. data/lib/starter_web/collections/_biography/princess-diarist-the.adoc +67 -0
  705. data/lib/starter_web/collections/_biography/when-breath-becomes-air.adoc +68 -0
  706. data/lib/starter_web/collections/_fantasy/harry-potter-deathly-hallows.adoc +59 -0
  707. data/lib/starter_web/collections/_fantasy/harry-potter-philosophers-stone.adoc +59 -0
  708. data/lib/starter_web/collections/_fantasy/mistborn-trilogy.adoc +57 -0
  709. data/lib/starter_web/collections/_fantasy/ready-player-one.adoc +58 -0
  710. data/lib/starter_web/collections/_fantasy/sword-of-destiny.adoc +57 -0
  711. data/lib/starter_web/collections/_fantasy/terry-pratchet-diary-2017.adoc +55 -0
  712. data/lib/starter_web/collections/_featured/static-site-generators.adoc +43 -0
  713. data/lib/starter_web/collections/_romance/breath-of-snow-and-ashes-a.adoc +62 -0
  714. data/lib/starter_web/collections/_romance/dressmaker-the.adoc +56 -0
  715. data/lib/starter_web/collections/_romance/fiery-cross-the.adoc +64 -0
  716. data/lib/starter_web/collections/_romance/it-ends-with-us.adoc +61 -0
  717. data/lib/starter_web/collections/_romance/outlander-novel.adoc +73 -0
  718. data/lib/starter_web/collections/_romance/virgins-outlander-short-story.adoc +57 -0
  719. data/lib/starter_web/collections/posts/featured/_posts/0000-00-00-welcome-to-j1-template.adoc.erb +60 -0
  720. data/lib/starter_web/collections/posts/featured/_posts/000_includes/attributes.asciidoc +15 -0
  721. data/lib/starter_web/collections/posts/featured/_posts/2017-05-01-confusion-about-base-url.adoc +102 -0
  722. data/lib/starter_web/collections/posts/featured/_posts/2017-06-01-top-open-source-static-site-generators.adoc +79 -0
  723. data/lib/starter_web/collections/posts/featured/_posts/2017-07-01-what-is-a-static-site.adoc +146 -0
  724. data/lib/starter_web/collections/posts/series/_posts/000_includes/attributes.asciidoc +66 -0
  725. data/lib/starter_web/collections/posts/series/_posts/000_includes/documents/100-docker-using-shared-folders.asciidoc +415 -0
  726. data/lib/starter_web/collections/posts/series/_posts/000_includes/documents/loop.sh +28 -0
  727. data/lib/starter_web/collections/posts/series/_posts/000_includes/tables/debug_variables.asciidoc +47 -0
  728. data/lib/starter_web/collections/posts/series/_posts/2018-11-01-docker-using-shared-folders.adoc +94 -0
  729. data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-20-minneapolis.adoc +112 -0
  730. data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-24-narcisse-snake-pits.adoc +81 -0
  731. data/lib/starter_web/collections/posts/wikipedia/_posts/2016-11-26-columbia-river.adoc +68 -0
  732. data/lib/starter_web/favicon.ico +0 -0
  733. data/lib/starter_web/index.html +57 -0
  734. data/lib/starter_web/package.json +104 -0
  735. data/lib/starter_web/pages/about/about_site.adoc +40 -0
  736. data/lib/starter_web/pages/about/about_you.adoc +103 -0
  737. data/lib/starter_web/pages/blog/navigator/archive.html +97 -0
  738. data/lib/starter_web/pages/blog/navigator/archive_by_category.html +135 -0
  739. data/lib/starter_web/pages/blog/navigator/archive_by_date.html +115 -0
  740. data/lib/starter_web/pages/blog/navigator/archive_by_tag.html +168 -0
  741. data/lib/starter_web/pages/blog/navigator/index.html +41 -0
  742. data/lib/starter_web/pages/bookshelf/100_about_jekyll_collections.adoc +264 -0
  743. data/lib/starter_web/pages/bookshelf/200_book_shelf_biography.adoc +41 -0
  744. data/lib/starter_web/pages/bookshelf/300_book_shelf_fantasy.adoc +43 -0
  745. data/lib/starter_web/pages/bookshelf/400_book_shelf_romance.adoc +43 -0
  746. data/lib/starter_web/pages/legal/de/100_impress.adoc +80 -0
  747. data/lib/starter_web/pages/legal/de/200_terms_of_use.adoc +48 -0
  748. data/lib/starter_web/pages/legal/de/300_privacy.adoc +233 -0
  749. data/lib/starter_web/pages/legal/de/400_license_agreement.adoc +388 -0
  750. data/lib/starter_web/pages/legal/de/500_support.adoc +13 -0
  751. data/lib/starter_web/pages/legal/en/100_impress.adoc +80 -0
  752. data/lib/starter_web/pages/legal/en/200_terms_of_use.adoc +44 -0
  753. data/lib/starter_web/pages/legal/en/300_privacy.adoc +269 -0
  754. data/lib/starter_web/pages/legal/en/400_license_agreement.adoc +430 -0
  755. data/lib/starter_web/pages/legal/en/500_support.adoc +13 -0
  756. data/lib/starter_web/pages/panel/100_intro_panel.adoc +151 -0
  757. data/lib/starter_web/pages/previewer/000_includes/attributes.asciidoc +75 -0
  758. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/100_absolute_sizes.asciidoc +39 -0
  759. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/110_bs_grid_sizes.asciidoc +47 -0
  760. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/120_relative_sizes.asciidoc +87 -0
  761. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/200_rotate.asciidoc +71 -0
  762. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/300_flip.asciidoc +30 -0
  763. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/400_spin_pulsed.asciidoc +39 -0
  764. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/500_bw_color_palette.asciidoc +60 -0
  765. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/510_bs_color_palette.asciidoc +54 -0
  766. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/600_md_color_palette.asciidoc +94 -0
  767. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/601_md_color_palette_indigo.asciidoc +94 -0
  768. data/lib/starter_web/pages/previewer/000_includes/tables/mdi_icons/602_md_color_palette_pink.asciidoc +94 -0
  769. data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/100_bs_sizes.asciidoc +46 -0
  770. data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/100_relative_sizes.asciidoc +46 -0
  771. data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/200_rotate.asciidoc +70 -0
  772. data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/300_flip.asciidoc +29 -0
  773. data/lib/starter_web/pages/previewer/000_includes/tables/twitter_emoji/400_spin_pulsed.asciidoc +30 -0
  774. data/lib/starter_web/pages/previewer/bootstrap_theme.adoc +1820 -0
  775. data/lib/starter_web/pages/previewer/justified_gallery.html +353 -0
  776. data/lib/starter_web/pages/previewer/mdi_icons_preview.adoc +314 -0
  777. data/lib/starter_web/pages/previewer/twitter_emoji_preview.adoc +181 -0
  778. data/lib/starter_web/pages/start/000_includes/attributes.asciidoc +30 -0
  779. data/lib/starter_web/pages/start/change_me_first.adoc +54 -0
  780. data/lib/starter_web/pages/start/dm920hd.adoc +467 -0
  781. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/attributes.asciidoc +72 -0
  782. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/documents/200_library_features.asciidoc +285 -0
  783. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/001_menu_bar_example.png +0 -0
  784. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/005_navbar.png +0 -0
  785. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/005_navigation_bar.png +0 -0
  786. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/006_navigation_side_bar.png +0 -0
  787. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/006_searchbar.png +0 -0
  788. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/007_sidebar.png +0 -0
  789. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/008_navbar_blank.png +0 -0
  790. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/010_nav_bar.png +0 -0
  791. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/010_top_search.png +0 -0
  792. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/012_top_search.png +0 -0
  793. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/015_quicklink_bar.png +0 -0
  794. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/017_side_bar.png +0 -0
  795. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/020_menu_bar.png +0 -0
  796. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/400_master_header.png +0 -0
  797. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/410_text_header.png +0 -0
  798. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/411_text_header.png +0 -0
  799. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/412_header_anatomy.png +0 -0
  800. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/415_image_header_caption.png +0 -0
  801. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/images/snagit/412_header_anatomy.snag +0 -0
  802. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/000_text_sizes.asciidoc +50 -0
  803. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/410_common_header_parameters.asciidoc +120 -0
  804. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/420_common_image_header_parameters.asciidoc +52 -0
  805. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/421_additional_image_header_parameters.asciidoc +36 -0
  806. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/430_video_header_parameters.asciidoc +26 -0
  807. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/440_image_and_video_transitions.asciidoc +36 -0
  808. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/450_image_and_video_header_defaults.asciidoc +82 -0
  809. data/lib/starter_web/pages/start/documentation/user_guide/100_header/000_includes/tables/451_additional_image_and_video_header_defaults.asciidoc +23 -0
  810. data/lib/starter_web/pages/start/documentation/user_guide/100_header/100_header.adoc +452 -0
  811. data/lib/starter_web/pages/start/documentation/user_guide/240_auth_manager/000_includes/attributes.asciidoc +119 -0
  812. data/lib/starter_web/pages/start/documentation/user_guide/240_auth_manager/100_auth_manager.adoc +539 -0
  813. data/lib/starter_web/pages/start/downloads/quickstarter/000_includes/attributes.asciidoc +26 -0
  814. data/lib/starter_web/pages/start/downloads/quickstarter/000_includes/tables/100_quickstart_installation_packages.asciidoc +20 -0
  815. data/lib/starter_web/pages/start/downloads/quickstarter/100_linux_starter.adoc +566 -0
  816. data/lib/starter_web/pages/start/downloads/quickstarter/200_macos_starter.adoc +742 -0
  817. data/lib/starter_web/pages/start/downloads/quickstarter/300_windows_starter.adoc +742 -0
  818. data/lib/starter_web/pages/start/downloads/quickstarter/quickstart.adoc +104 -0
  819. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/attributes.asciidoc +24 -0
  820. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/collections.adoc +268 -0
  821. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/configuration.adoc +780 -0
  822. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/directory_structure.adoc +106 -0
  823. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/jekyll_commandline.adoc +94 -0
  824. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/layout_inheritance.adoc +305 -0
  825. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/manage_pages.adoc +365 -0
  826. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/manage_posts.adoc +203 -0
  827. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/pagination.adoc +228 -0
  828. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/plugins.adoc +777 -0
  829. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/templates.adoc +249 -0
  830. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/000_includes/documents/variables.adoc +175 -0
  831. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/100_introduction.adoc +169 -0
  832. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/110_preparations.adoc +177 -0
  833. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/120_getting_started.adoc +180 -0
  834. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/20_j1_anatomy.asciidoc +97 -0
  835. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/30_j1_configure_your_site.asciidoc +48 -0
  836. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/40_j1_create_content.asciidoc +48 -0
  837. data/lib/starter_web/pages/start/kickstarter/web_in_a_day/_unused/50_j1_customize_your_pages.asciidoc +48 -0
  838. data/lib/starter_web/pages/start/read_me_first.adoc +102 -0
  839. data/lib/starter_web/pages/start/roundtrip/000_includes/attributes.asciidoc +49 -0
  840. data/lib/starter_web/pages/start/roundtrip/000_includes/documents/100_gistblock.asciidoc +27 -0
  841. data/lib/starter_web/pages/start/roundtrip/100_present_images.adoc +411 -0
  842. data/lib/starter_web/pages/start/roundtrip/200_cards.adoc +769 -0
  843. data/lib/starter_web/pages/start/roundtrip/300_typography.adoc +518 -0
  844. data/lib/starter_web/pages/start/roundtrip/400_icon_fonts.adoc +182 -0
  845. data/lib/starter_web/pages/start/roundtrip/500_asciidoc_extensions.adoc +462 -0
  846. data/lib/starter_web/pages/start/roundtrip/600_themes.adoc +75 -0
  847. data/lib/starter_web/pages/start/roundtrip/700_additional_modals.adoc +1369 -0
  848. data/lib/starter_web/pages/teaser/100_core.adoc +31 -0
  849. data/lib/starter_web/pages/teaser/200_components.adoc +30 -0
  850. data/lib/starter_web/pages/teaser/300_modules.adoc +32 -0
  851. data/screenshot.png +0 -0
  852. metadata +925 -0
@@ -0,0 +1,104 @@
1
+ ---
2
+ title: Quickstarter
3
+ tagline: Starter Bundles available for J1 Template
4
+ description: Starter Bundles available for J1 Template
5
+ author: J1 Team
6
+
7
+ tags: [ Template, Download, Quickstart, Bundle]
8
+ index: [ Windows, Linux, MacOS, OSX]
9
+
10
+ resources: [ lightbox ]
11
+ permalink: /pages/start/downloads/quickstart/
12
+ regenerate: false
13
+ ---
14
+
15
+ // NOTE: General Asciidoc page attributes settings
16
+ //
17
+ :page-liquid:
18
+
19
+ {% comment %} Liquid procedures
20
+ --------------------------------------------------------------- {% endcomment %}
21
+ {% capture set_env_entry_document %}themes/{{site.template.name}}/procedures/global/set_env_entry_document.proc{%endcapture%}
22
+
23
+
24
+ // NOTE: Initialize entry document paths
25
+ //
26
+ {% include {{set_env_entry_document}} init_folders=all %}
27
+
28
+ // Load tags and urls
29
+ //
30
+ include::{includedir}/attributes.asciidoc[tag=tags]
31
+ include::{includedir}/attributes.asciidoc[tag=urls]
32
+
33
+ // Additional Asciidoc page attributes goes here
34
+ //
35
+
36
+
37
+ Quickstarter are bundles, available for Windows, Linux and MacOS. Those
38
+ bundles contain all software as a installable package needed to run Jekyll,
39
+ to develop a Web using J1 Template. All what is needed in an all-in-one
40
+ application compilation.
41
+
42
+ == Available Bundles
43
+
44
+ Creating a fully equipped Jekyll developing enviroment may take a while
45
+ anyway. If you don't want to mixup already installed applications like
46
+ Python, Ruby or NodeJS on your existing OS, you can go for J1 Quickstart.
47
+
48
+ All the tools and their environments are localized and isolated to the
49
+ application folder of the Quickstarter package and should *not* interfere
50
+ with any already of the installed programs and their resources. Simply by
51
+ setting some environment variables, the system you've prepared already for
52
+ your (Jekyll) Development Environment will be left untouched.
53
+
54
+ And you're done in 15 minutes.
55
+
56
+ === Download a Quickstarter
57
+
58
+ Find your platform and version for the J1 Quickstarter package you need
59
+ with the following table:
60
+
61
+ include::{includedir}/tables/100_quickstart_installation_packages.asciidoc[]
62
+
63
+ Installation instructions can be found for your plattform with the sections
64
+ below.
65
+
66
+
67
+ === J1 Starter for Windows
68
+
69
+ The J1 team prepared a full development suite for Jekyll on *Windows* that
70
+ can be easily setup. All packages needed for a full featued development
71
+ environment are bundled together; being installed by an Windows installer as
72
+ usual.
73
+
74
+ pass:[<i class="mdi mdi-windows mdi-2x mdi-md-indigo"></i>]
75
+ Go for link:{j1-starter-windows}[installation instructions here].
76
+
77
+
78
+ === J1 Starter for Linux
79
+
80
+ If you don't want to mixup already installed applications like Python, Ruby
81
+ or NodeJS on your existing *Linux* OS, you can go for a Quickstart package.
82
+ All the tools and their environments are localized and isolated to the
83
+ application folder of J1 Quickstart and should *not* interfere with any
84
+ already installed programs and their ressources. Simply by setting some
85
+ environment variables, the system you've prepared already for Jekyll will be
86
+ left untouched.
87
+
88
+ pass:[<i class="mdi mdi-linux mdi-2x mdi-md-indigo"></i>]
89
+ Go for link:{j1-starter-linux}[installation instructions here].
90
+
91
+
92
+ === J1 Starter for MacOS
93
+
94
+ The availability of Open Source tools and applications are not the strenght
95
+ of Apple products. Yes, Perl, Ruby, Python etc. are available out of the box
96
+ but they are pre-installed in unusable old versions. Upgrading these packages?
97
+ No choice.
98
+
99
+ You can go for *HomeBrew* to _brew_ what you need - what many people do.
100
+ The same to us - if we're on *MacOS*. But as always: installing an bunch of
101
+ software will take a while. No fun.
102
+
103
+ pass:[<i class="mdi mdi-apple mdi-2x mdi-md-indigo"></i>]
104
+ Go for link:{j1-starter-macos}[installation instructions here].
@@ -0,0 +1,24 @@
1
+ ////
2
+ Asciidoc includes
3
+ ////
4
+
5
+ tag::urls[]
6
+
7
+ :quickstart-download: /pages/download
8
+
9
+ end::urls[]
10
+
11
+ tag::tags[]
12
+
13
+ :theme-minima-data: "pages/kickstarter/web_in_a_day/jekyll-minima-theme.png, Web site based on Jekyll's Theme minima"
14
+ :theme-uno-data: "pages/kickstarter/web_in_a_day/j1-template-theme.png, J1 Theme Uno"
15
+ :quickstart-windows-data: "pages/kickstarter/web_in_a_day/j1-quickstart-windows.png, J1 Quickstart for Windows"
16
+ :j1-page-layout-data: "pages/kickstarter/web_in_a_day/j1_layout.png, J1 Page Layout"
17
+ :layout-inheritance-data: "pages/kickstarter/web_in_a_day/layout_inheritance.png, Layout Inheritance"
18
+ :content-inheritance-data: "pages/kickstarter/web_in_a_day/content_inheritance.png, Content Inheritance"
19
+ :lane-inheritance-data: "pages/kickstarter/web_in_a_day/lane_inheritance.png, J1 Lane Inheritance"
20
+
21
+
22
+ :figure-caption: Figure
23
+
24
+ end::tags[]
@@ -0,0 +1,268 @@
1
+ ---
2
+ title: Jekyll
3
+ tagline: An Introduction to Collections
4
+ tags: [
5
+ backend
6
+ ]
7
+
8
+ description: Collections extends Jekyll's post and pages
9
+ publishing functionality, and brings Jekyll's
10
+ zen-like simplicity to all sorts of other types
11
+ of content that aren't dated, but have a relationship
12
+ with one another.
13
+ category: Tutorial
14
+ ---
15
+
16
+ :doctype: article
17
+
18
+ // URLs
19
+
20
+ :j-home: http://jekyllrb.com/
21
+ :j-pages: http://jekyllrb.com/docs/pages/
22
+ :j-posts: http://jekyllrb.com/docs/posts/
23
+ :j-data-files: http://jekyllrb.com/docs/datafiles/
24
+ :j-collections: http://jekyllrb.com/docs/collections
25
+ :j-frontmatter: http://jekyllrb.com/docs/frontmatter/
26
+ :j-issue-1941: https://github.com/jekyll/jekyll/issues/1941
27
+
28
+ :gh-choose-a-license: https://github.com/github/choosealicense.com
29
+ :gh-blog-doc-documents: https://github.com/blog/1939-how-github-uses-github-to-document-github
30
+
31
+ :dseed-build-cms-free-websites: https://developmentseed.org/blog/2012/07/27/build-cms-free-websites/
32
+
33
+ :choose-a-license: http://choosealicense.com
34
+ :bb-2012-10-01: http://ben.balter.com/2012/10/01/welcome-to-the-post-cms-world/
35
+ :wp-post-types: http://codex.wordpress.org/Post&#x5F;Types
36
+ :drupal-custom-content: https://www.drupal.org/node/306792
37
+
38
+
39
+ [.boxShadow]
40
+ ====
41
+ Collections are Jekyll's most powerful and simultaneously least understood
42
+ feature. If you're not familiar with {j-home}[Jekyll, window="blank"], Jekyll
43
+ is a static site generator. Think of it like a content management system (CMS),
44
+ {dseed-build-cms-free-websites}[without all the complexity] and headache.
45
+
46
+ No need to build a giant content-strangling Rube Goldberg machine to manage
47
+ content, if all you're doing at the end of the day is putting out HTML,
48
+ Javascript, and CSS, the building blocks of the internet.
49
+
50
+ As a result, Jekyll gets out of your way and allows you to concentrate on what
51
+ truly matters: +
52
+ *{bb-2012-10-01}[Your content, window="blank"]*.
53
+ ====
54
+
55
+ [[posts-and-pages]]
56
+ == Posts and pages
57
+
58
+ Most Jekyll sites are organized around two types of content: `posts` and `pages`.
59
+
60
+ * *{j-posts}[Posts]* are organized reverse
61
+ chronologically. You might use them for blog posts on a personal blog,
62
+ or articles on a news site. You can recognize a post by its filename.
63
+ Posts live in the `&#x5F;posts` folder, and are always named in the form of
64
+ `YYYY-MM-DD-post-title.md`. Because posts are dated, they're traditionally
65
+ not updated regularly once published.
66
+ * *{j-pages}[Pages, window="blank"]* are documents that don't have a relationship
67
+ with one another. They can live anywhere within the site's source directory
68
+ and don't have a set naming pattern. If you have a personal blog, you might
69
+ have an `index.html` page, the site's main page which is used to list posts
70
+ or an about me page, to name two examples. Because pages aren't date specific,
71
+ pages are often updated over time to maintain accuracy.
72
+
73
+ The problem is, not everything you might want to publish using a Jekyll falls
74
+ cleanly into the those two categories of content. As I noted in
75
+ {j-issue-1941}[the original pitch, window="blank"], "If people are using blog
76
+ posts for a non-blog post thing, Jekyll has already failed". That's where
77
+ Jekyll's {j-collections}[collections, window="blank"] come in.
78
+
79
+ NOTE: Everything that's *not* a post or a page can be represented as a collection
80
+
81
+
82
+ == Collections
83
+
84
+ Collections add another possibility, or use-case outside of Jekyll's post- and
85
+ page-publishing functionality; and have the potential to bring Jekyll's zen-like
86
+ simplicity to all sorts of other types of content that aren't dated (as with
87
+ posts), but have a _relationship_ with each other (hence the name, _collection_).
88
+
89
+ If you're familiar with traditional CMS's, you can think of collections like
90
+ WordPress {wp-post-types}[custom post types, window="blank"] or Drupal
91
+ {drupal-custom-content}[custom content types, window="blank"], except you
92
+ do not need to program a specific class, learn any back-end languages, and
93
+ the syntax used to specify them is very easily readable.
94
+
95
+ What then, might you use collections for? Let's say you're making a website for
96
+ a bakery and want to list the different cupcakes varieties you sell. You might
97
+ use a _collection_ called _cupcakes_. You'd create a `&#x5F;cupcakes` folder,
98
+ and would add `chocolate.md` or `vanilla.md` to it. And just like `posts` or
99
+ `pages`, your list of cupcakes, the _collection_, would be accessible as
100
+ `site.cupcakes`.
101
+
102
+ You wouldn't want to use posts here, because cupcakes aren't chronological, and
103
+ likely wouldn't want to just use a page here, because it's a notably different
104
+ animal than a document that lists your location and hours. Each cupcake in the
105
+ cupcakes _collection_ is related to each other in the sense that they're all
106
+ cupcakes.
107
+
108
+ NOTE: Collections are a quite new feature to Jekyll, and according to the
109
+ official documentation may be subject to change
110
+ {j-collections}[Jekyll Documentation on Collections, window="blank"]; but you
111
+ should not let that put you off of using them, because Jekyll is open-source,
112
+ which means you should trust the community to work-together for the best
113
+ common-case solution.
114
+
115
+ [[collections-in-practice]]
116
+ == Collections in practice
117
+
118
+ But what if one day you decided to expand your offerings and sell cookies in
119
+ addition to cupcakes. Simply introduce a *cookies* _collection_, adding
120
+ `chocolate-chip.md` and `peanut-butter.md` to a `&#x5F;cookies` directory,
121
+ exposing the cookies as `site.cookies`.
122
+
123
+ You'll notice the collections concept start to show its value here. Pages
124
+ wouldn't make sense here, because you'd want to be able to list cupcakes
125
+ and cookies separately, and besides for both being baked goods, the one
126
+ cookie doesn't really share a relationship with a cupcake, at least not
127
+ in the same sense that cookies share with one another.
128
+
129
+ Of course you could at this stage, choose to have a more generic collection
130
+ `products`, which you could develop liquid layouts for, so that you and other
131
+ developers could get the basic functionality needed to display all products,
132
+ with specific includes for `cupcakes` and `cookies`.
133
+
134
+ Abstractly, because they're not outputted by default, you can think of
135
+ collections somewhat like {j-data-files}[Jekyll's data support, window="blank"],
136
+ but with the potential to generate content, and be placed into their own
137
+ specific part of your Jekyll site, so a lot more robust. Like `&#x5F;data`
138
+ files, they can support arbitrary key/value pairs through a _frontmatter_,
139
+ but they also support a full content body (like posts and pages), and can be
140
+ broken out into separate files. If I wanted to break out my bakery's hours,
141
+ I might have a `&#x5F;data/hours.yml` file that looked something like this:
142
+
143
+ [source, yaml]
144
+ --------------
145
+ monday: 9-5
146
+ tuesday: 9-5
147
+ wednesday: 9-5
148
+ thursday: 9-5
149
+ friday: 9-3
150
+ --------------
151
+
152
+ That makes sense, because my bakery's hours is a relatively small dataset. But
153
+ trying to represent all my baked goods in that format (or worse posts), would
154
+ quickly get out of hand. That type of information is better represented as
155
+ individual content files (aka .md for Mardown or .adoc for Asciidoc sources)
156
+ with a _front matter_, not one giant `YAML` data file that will quickly become
157
+ unwieldy with complexity; and rather than create the data, and pages to display
158
+ the data, or the data and a plugin to turn it into pages; using collections
159
+ allows the site owner to focus on the content.
160
+
161
+ For a more concrete example, take a look at {gh-choose-a-license}[the source, window="blank"]
162
+ of {choose-a-license}[choosealicense.com, window="blank"] a site which helps to
163
+ explain what are open source licenses about like the MIT or GPL license. There
164
+ are pages like _about_ and _terms of service_, but the actual licenses live in a
165
+ {gh-choose-a-license}/tree/gh-pages/&#x5F;licenses[licenses collection, window="blank"]
166
+ and are displayed via
167
+ {gh-choose-a-license}/blob/gh-pages/licenses.html[a licensed page, window="blank"].
168
+
169
+ [[other-use-cases]]
170
+ === Other use-cases
171
+
172
+ Of course this is not the only use-case, which is one of the benefits of
173
+ _collections_. You can turn on content generation to have the collection
174
+ contents automatically generated, or use the where syntax to get the contents
175
+ of specific collections to add common content, or devices to your site.
176
+
177
+ [[using-collections]]
178
+ == Using collections
179
+
180
+ The examples above were a slight simplification. There's one other step to do
181
+ before a collection can be used: You need to tell Jekyll about it. Going back
182
+ to our bakery example above, a `&#x5F;config.yml` file exists having a section
183
+ that looks something like this:
184
+
185
+ [source, yaml]
186
+ --------------
187
+ collections:
188
+ - cupcakes
189
+ - cookies
190
+ --------------
191
+
192
+ This tells Jekyll to look in the `&#x5F;cupcakes` and `&#x5F;cookies` folders
193
+ for documents, and to read them into the appropriate collection, including
194
+ {j-frontmatter}[YAML front matter, window="blank"], just as it would posts
195
+ (but again, without the date, because collection documents aren't date specific).
196
+
197
+ By default, collections are read in (and exposed as `site.[collection]` - an
198
+ alias per-collection), but not included in the final site (per default); at
199
+ least not individually like you might expect for posts or pages. If you wanted
200
+ a page for each type of cupcake, you'd have to modify the `&#x5F;config.yml` a
201
+ bit:
202
+
203
+ [source, yaml]
204
+ -------------------------------
205
+ collections:
206
+ cupcakes:
207
+ output: true
208
+ permalink: /cupcakes/:path/
209
+ -------------------------------
210
+
211
+ That way, `&#x5F;cupcakes/chocolate.md` is outputted as `cupcakes/chocolate/index.html`
212
+ when the site is built and would be accessible as `example.com/cupcakes/chocolate/`.
213
+ The other advantage, is, because the data is now structured and machine readable
214
+ (rather than in plain text), you could also use the `jsonify` filter to output that
215
+ same information as an API for use elsewhere.
216
+
217
+ [[when-to-use-a-post-a-page-or-a-collection]]
218
+ === When to use post, page or collection
219
+
220
+ I like to think the decision looks roughly like this:
221
+
222
+ ------------------------------------------------------------------
223
+
224
+ +--------------------------------------+ +----------------+
225
+ | Can the things be logically grouped? |---No--->| Use pages |
226
+ +--------------------------------------+ +----------------+
227
+ |
228
+ Yes
229
+ |
230
+ V
231
+ +-------------------------------------+ +------------------+
232
+ | Are they grouped by date? |---No--->| Use a collection |
233
+ +-------------------------------------+ +------------------+
234
+ |
235
+ Yes
236
+ |
237
+ V
238
+ +-------------------------------------+
239
+ | Use posts |
240
+ +-------------------------------------+
241
+
242
+ ------------------------------------------------------------------
243
+
244
+ So if you're not about to open a bakery (if you do, please send cookies); what
245
+ might you use collections for? In short, any discrete group of "things" that
246
+ can be logically grouped by a common theme (that's not their date). Here's a
247
+ few examples:
248
+
249
+ * Listing employees on your company's "about" page (or a project's
250
+ maintainers)
251
+ * Documenting methods in an open source project (or the project's that
252
+ use it, or the plugins available)
253
+ * Organizing jobs on your resume (or talks given, papers written)
254
+ * {gh-blog-doc-documents}[Articles on a support site, window="blank"]
255
+ * Recipes on your personal blog (or restaurant reviews, or dishes on a menu)
256
+ * Students in a class (or courses being offered, or listing the faculty)
257
+ * Cheats, tips, tricks and walkthroughs for games (by platform)
258
+ * Creating re-usable content snippets for your site such as testimonials,
259
+ forms, sentences, buzz-words or call-outs * And honestly just about
260
+ anything else
261
+
262
+ Collections are a powerful (and often misunderstood) Jekyll feature, but
263
+ hopefully you've now got an idea or two for your next Jekyll project. Of
264
+ course, if you're looking to dig in to collections, be sure to check out
265
+ {j-collections}[the formal documentation, window="blank"] for a much more
266
+ in-depth explanation.
267
+
268
+ Happy (organized and machine-readable) publishing!
@@ -0,0 +1,780 @@
1
+ ---
2
+ layout: page
3
+ description: Manage the Site configuration for Jekyll
4
+ title: Configuration
5
+ tagline: Manage the Site Configuration for Jekyll
6
+ group: pages
7
+ toc: true
8
+ ---
9
+
10
+ :website: https://jekyllrb.com/
11
+ :revnumber: 3.2.1
12
+
13
+
14
+ [.boxShadow]
15
+ ====
16
+ Jekyll allows you to configure your sites in any way you can dream up, and it’s
17
+ thanks to the powerful and flexible configuration options that this is possible.
18
+
19
+ These options can either be specified in a `&#x5F;config.yml` file placed in your
20
+ site’s root directory, or can be specified as flags for the `jekyll` executable
21
+ on command-line.
22
+ ====
23
+
24
+ == Global Configuration
25
+
26
+ The table below lists the available settings for Jekyll, and the various
27
+ `options` (specified in the configuration file) and `flags` (specified on the
28
+ command-line) that control them.
29
+
30
+ [width="100%", cols="8,4",options="header", role="table-responsive mt-3"]
31
+ |=======================================================================
32
+ |Setting |Options and Flags
33
+ a|
34
+ *Site Source*
35
+
36
+ Change the directory where Jekyll will read files
37
+
38
+ a|
39
+ `source: DIR`
40
+
41
+ `-s, --source DIR`
42
+
43
+ a|
44
+ *Site Destination*
45
+
46
+ Change the directory where Jekyll will write files
47
+
48
+ a|
49
+ `destination: DIR`
50
+
51
+ `-d, --destination DIR`
52
+
53
+ a|
54
+ *Safe*
55
+
56
+ Disable link:../plugins/[custom plugins, and ignore symbolic links].
57
+
58
+ a|
59
+ `safe: BOOL`
60
+
61
+ `--safe`
62
+
63
+ a|
64
+ *Exclude*
65
+
66
+ Exclude directories and/or files from the conversion. These exclusions
67
+ are relative to the site's source directory and cannot be outside the
68
+ source directory.
69
+
70
+ |`exclude: [DIR, FILE, ...]`
71
+
72
+ a|
73
+ *Include*
74
+
75
+ Force inclusion of directories and/or files in the conversion.
76
+ `.htaccess` is a good example since dotfiles are excluded by default.
77
+
78
+ |`include: [DIR, FILE, ...]`
79
+
80
+ a|
81
+ *Keep files*
82
+
83
+ When clobbering the site destination, keep the selected files. Useful
84
+ for files that are not generated by jekyll; e.g. files or assets that
85
+ are generated by your build tool. The paths are relative to the
86
+ `destination`.
87
+
88
+ |`keep&#x5F;files: [DIR, FILE, ...]`
89
+
90
+ a|
91
+ *Time Zone*
92
+
93
+ Set the time zone for site generation. This sets the `TZ` environment
94
+ variable, which Ruby uses to handle time and date creation and
95
+ manipulation. Any entry from the
96
+ https://en.wikipedia.org/wiki/Tz&#x5F;database[IANA Time Zone Database] is
97
+ valid, e.g. `America/New&#x5F;York`. A list of all available values can be
98
+ found
99
+ https://en.wikipedia.org/wiki/List&#x5F;of&#x5F;tz&#x5F;database&#x5F;time&#x5F;zones[here]. The
100
+ default is the local time zone, as set by your operating system.
101
+
102
+ |`timezone: TIMEZONE`
103
+
104
+ a|
105
+ *Encoding*
106
+
107
+ Set the encoding of files by name (only available for Ruby 1.9 or
108
+ later). The default value is `utf-8` starting in 2.0.0, and `nil` before
109
+ 2.0.0, which will yield the Ruby default of `ASCII-8BIT`. Available
110
+ encodings can be shown by the command
111
+ `ruby -e 'puts Encoding::list.join("\n")'`.
112
+
113
+ |`encoding: ENCODING`
114
+
115
+ a|
116
+ *Defaults*
117
+
118
+ Set defaults for link:../frontmatter/[YAML Front Matter] variables.
119
+
120
+ |see link:#front-matter-defaults[below]
121
+ |=======================================================================
122
+
123
+
124
+ [WARNING]
125
+ ====
126
+ Destination folders are cleaned on site builds.
127
+
128
+ The contents of `<destination>` are automatically cleaned, by default, when
129
+ the site is built. Files or folders that are not created by your site will
130
+ be removed. Some files could be retained by specifying them within the
131
+ `<keep_files>` configuration directive.
132
+
133
+ Do not use an important location for `<destination>` instead, use it as a
134
+ staging area and copy files from there to your web server.
135
+ ====
136
+
137
+ [[build_command_options]]
138
+ == Build Command Options
139
+
140
+ [width="100%", cols="8,4",options="header", role="table-responsive mt-3"]
141
+ |=======================================================================
142
+ |Setting |Options and Flags
143
+ a|
144
+ *Regeneration*
145
+
146
+ Enable auto-regeneration of the site when files are modified.
147
+
148
+ |`-w, --[no-]watch`
149
+
150
+ a|
151
+ *Configuration*
152
+
153
+ Specify config files instead of using `&#x5F;config.yml` automatically.
154
+ Settings in later files override settings in earlier files.
155
+
156
+ |`--config FILE1[,FILE2,...]`
157
+
158
+ a|
159
+ *Drafts*
160
+
161
+ Process and render draft posts.
162
+
163
+ a|
164
+ `show&#x5F;drafts: BOOL`
165
+
166
+ `--drafts`
167
+
168
+ a|
169
+ *Environment*
170
+
171
+ Use a specific environment value in the build.
172
+
173
+ |`JEKYLL&#x5F;ENV=production`
174
+
175
+ a|
176
+ *Future*
177
+
178
+ Publish posts or collection documents with a future date.
179
+
180
+ a|
181
+ `future: BOOL`
182
+
183
+ `--future`
184
+
185
+ a|
186
+ *LSI*
187
+
188
+ Produce an index for related posts.
189
+
190
+ a|
191
+ `lsi: BOOL`
192
+
193
+ `--lsi`
194
+
195
+ a|
196
+ *Limit Posts*
197
+
198
+ Limit the number of posts to parse and publish.
199
+
200
+ a|
201
+ `limit&#x5F;posts: NUM`
202
+
203
+ `--limit&#x5F;posts NUM`
204
+
205
+ a|
206
+ *Force polling*
207
+
208
+ Force watch to use polling.
209
+
210
+ |`--force&#x5F;polling`
211
+
212
+ a|
213
+ *Verbose output*
214
+
215
+ Print verbose output.
216
+
217
+ |`-V, --verbose`
218
+
219
+ a|
220
+ *Silence Output*
221
+
222
+ Silence the normal output from Jekyll during a build
223
+
224
+ |`-q, --quiet`
225
+
226
+ a|
227
+ *Incremental build*
228
+
229
+ Enable the experimental incremental build feature. Incremental build
230
+ only re-builds posts and pages that have changed, resulting in
231
+ significant performance improvements for large sites, but may also break
232
+ site generation in certain cases.
233
+
234
+ a|
235
+ `incremental: BOOL`
236
+
237
+ `-I, --incremental`
238
+
239
+ a|
240
+ *Liquid profiler*
241
+
242
+ Generate a Liquid rendering profile to help you identify performance
243
+ bottlenecks.
244
+
245
+ a|
246
+ `profile: BOOL`
247
+
248
+ `--profile`
249
+
250
+ |=======================================================================
251
+
252
+
253
+ == Serve Command Options
254
+
255
+ In addition to the options below, the `serve` sub-command can accept any of
256
+ the options for the `build` sub-command, which are then applied to the site
257
+ build which occurs right before your site is served.
258
+
259
+ [width="100%", cols="8,4",options="header", role="table-responsive mt-3"]
260
+ |======================================================================
261
+ |Setting |Options and Flags
262
+ a|
263
+ *Local Server Port*
264
+
265
+ Listen on the given port.
266
+
267
+ a|
268
+ `port: PORT`
269
+
270
+ `--port PORT`
271
+
272
+ a|
273
+ *Local Server Hostname*
274
+
275
+ Listen at the given hostname.
276
+
277
+ a|
278
+ `host: HOSTNAME`
279
+
280
+ `--host HOSTNAME`
281
+
282
+ a|
283
+ *Base URL*
284
+
285
+ Serve the website from the given base URL
286
+
287
+ a|
288
+ `baseurl: URL`
289
+
290
+ `--baseurl URL`
291
+
292
+ a|
293
+ *Detach*
294
+
295
+ Detach the server from the terminal
296
+
297
+ a|
298
+ `detach: BOOL`
299
+
300
+ `-B, --detach`
301
+
302
+ a|
303
+ *Skips the initial site build.*
304
+
305
+ Skips the initial site build which occurs before the server is started.
306
+
307
+ |`--skip-initial-build`
308
+ a|
309
+ *X.509 (SSL) Private Key*
310
+
311
+ SSL Private Key.
312
+
313
+ |`--ssl-key`
314
+ a|
315
+ *X.509 (SSL) Certificate*
316
+
317
+ SSL Public certificate.
318
+
319
+ |`--ssl-cert`
320
+ |======================================================================
321
+
322
+ [WARNING]
323
+ ====
324
+ Do not use tabs in configuration files.
325
+
326
+ This will either lead to parsing errors, or Jekyll will revert to the
327
+ default settings. Use spaces instead.
328
+ ====
329
+
330
+ == Custom WEBrick Headers
331
+
332
+ The Jekyll `serve` command enables an internal Web server - `WEBrick` - to
333
+ serve your site without the need of an external Webserver (like Apache or Nginx).
334
+ To control the internal server, you can provide custom headers for your site
335
+ by adding them to `&#x5F;config.yml`
336
+
337
+ [source, yaml]
338
+ --------------
339
+ # File: _config.yml
340
+ webrick:
341
+ headers:
342
+ My-Header: My-Value
343
+ My-Other-Header: My-Other-Value
344
+ --------------
345
+
346
+ === Defaults
347
+
348
+ We provide by default `Content-Type` and `Cache-Control` response headers: one
349
+ dynamic in order to specify the nature of the data being served, the other
350
+ static in order to disable caching so that you don't have to fight with
351
+ Chrome's aggressive caching when you are in development mode.
352
+
353
+ == Set a Jekyll environment
354
+
355
+ You can specify a Jekyll environment at build time. In the build (or serve)
356
+ arguments, you can specify a Jekyll environment and value. The build will then
357
+ apply this value in any conditional statements in your content.
358
+
359
+ For example, suppose you set this conditional statement in your code:
360
+
361
+ [source, liquid]
362
+ --------------
363
+ {% raw %}
364
+ {% if jekyll.environment == "production" %}
365
+ {% include disqus.html %}
366
+ {% endif %}
367
+ {% endraw %}
368
+ --------------
369
+
370
+ When you build your Jekyll site, the content inside the `if` statement won't
371
+ be run unless you also specify a `production` environment in the build
372
+ command, like this:
373
+
374
+ [source, sh]
375
+ --------------
376
+ JEKYLL_ENV=production jekyll build
377
+ --------------
378
+
379
+ Specifying an environment value allows you to make certain content available
380
+ only within specific environments.
381
+
382
+ The default value for `JEKYLL&#x5F;ENV` is `development`. Therefore if you
383
+ omit `JEKYLL&#x5F;ENV` from the build arguments, the default value will be
384
+ `JEKYLL&#x5F;ENV=development`. Any content inside
385
+
386
+ [source, liquid]
387
+ --------------
388
+ {% if jekyll.environment == "development" %}
389
+ --------------
390
+
391
+ tags will automatically appear in the build.
392
+
393
+ Your environment values can be anything you want (not just `development` or
394
+ `production`). Some elements you might want to hide in development environments
395
+ include Disqus comment forms or Google Analytics. Conversely, you might want
396
+ to expose an "Edit me in GitHub" button in a development environment but not
397
+ include it in production environments.
398
+
399
+ By specifying the option in the build command, you avoid having to change
400
+ values in your configuration files when moving from one environment to another.
401
+
402
+ == Front Matter defaults
403
+
404
+ Using YAML Front Matter is one way that you can specify configuration in the
405
+ pages and posts for your site. Setting things like a default layout, or
406
+ customizing the title, or specifying a more precise date/time for the post
407
+ can all be added to your page or post front matter.
408
+
409
+ Often times, you will find that you are repeating a lot of configuration
410
+ options. Setting the same layout in each file, adding the same
411
+ category - or categories - to a post, etc. You can even add custom variables
412
+ like author names, which might be the same for the majority of posts on
413
+ your blog.
414
+
415
+ Instead of repeating this configuration each time you create a new post or
416
+ page, Jekyll provides a way to set these defaults in the site configuration.
417
+ To do this, you can specify site-wide defaults using the `defaults` key in
418
+ the `&#x5F;config.yml` file in your project's root directory.
419
+
420
+ The `defaults` key holds an array of scope/values pairs that define what
421
+ defaults should be set for a particular file path, and optionally, a file
422
+ type in that path.
423
+
424
+ Let's say that you want to add a default layout to all pages and posts in
425
+ your site. You would add this to your `&#x5F;config.yml` file:
426
+
427
+ [source, yaml]
428
+ --------------
429
+ defaults:
430
+ - scope:
431
+ path: "" # an empty string here means all files in the project
432
+ values:
433
+ layout: "default"
434
+ --------------
435
+
436
+ [NOTE]
437
+ ====
438
+ Please stop and rerun `jekyll serve` command.
439
+
440
+ The `&#x5F;config.yml` master configuration file contains global
441
+ configurations and variable definitions that are read once at execution time.
442
+ Changes made to `&#x5F;config.yml` during automatic regeneration
443
+ are not loaded until the next execution.
444
+
445
+ Note `Data Files` are included and reloaded during automatic regeneration.
446
+
447
+ ====
448
+
449
+ Here, we are scoping the `values` to any file that exists in the path `scope`.
450
+ Since the path is set as an empty string, it will apply to **all files** in
451
+ your project. You probably don't want to set a layout on every file in your
452
+ project - like css files, for example - so you can also specify a `type` value
453
+ under the `scope` key.
454
+
455
+ [source, yaml]
456
+ --------------
457
+ defaults:
458
+ - scope:
459
+ path: "" # an empty string here means all files in the project
460
+ type: "posts" # previously `post` in Jekyll 2.2.
461
+ values:
462
+ layout: "default"
463
+ --------------
464
+
465
+ Now, this will only set the layout for files where the type is `posts`.
466
+ The different types that are available to you are `pages`, `posts`, `drafts`
467
+ or any collection in your site. While `type` is optional, you must specify a
468
+ value for `path` when creating a `scope|values` pair.
469
+
470
+ As mentioned earlier, you can set multiple scope/values pairs for `defaults`.
471
+
472
+ [source, yaml]
473
+ --------------
474
+ defaults:
475
+ - scope:
476
+ path: ""
477
+ type: "posts"
478
+ values:
479
+ layout: "my-site"
480
+
481
+ - scope:
482
+ path: "projects"
483
+ type: "pages" # previously `page` in Jekyll 2.2.
484
+ values:
485
+ layout: "project" # overrides previous default layout
486
+ author: "Mr. Hyde"
487
+ --------------
488
+
489
+ With these defaults, all posts would use the `my-site` layout. Any html files
490
+ that exist in the `projects/` folder will use the `project` layout, if it
491
+ exists. Those files will also have the `page.author` liquid variable
492
+ set to `Mr. Hyde`.
493
+
494
+ [source, yaml]
495
+ --------------
496
+ collections:
497
+ - my_collection:
498
+ output: true
499
+
500
+ defaults:
501
+ - scope:
502
+ path: ""
503
+ type: "my_collection" # a collection in your site, in plural form
504
+ values:
505
+ layout: "default"
506
+ --------------
507
+
508
+ In this example, the `layout` is set to `default` inside the collection with
509
+ the name `my&#x5F;collection`.
510
+
511
+ === Precedence
512
+
513
+ Jekyll will apply all of the configuration settings you specify in the
514
+ `defaults` section of your `&#x5F;config.yml` file. However, you can choose
515
+ to override settings from other scope/values pair by specifying a more specific
516
+ path for the scope.
517
+
518
+ You can see that in the second to last example above. First, we set the default
519
+ layout to `my-site`. Then, using a more specific path, we set the default
520
+ layout for files in the `projects/` path to `project`. This can be done with
521
+ any value that you would set in the page or post front matter.
522
+
523
+ Finally, if you set defaults in the site configuration by adding a `defaults`
524
+ section to your `&#x5F;config.yml` file, you can override those settings in a
525
+ post or page file. All you need to do is specify the settings in the post or
526
+ page front matter.
527
+
528
+ For example:
529
+
530
+ [source, yaml]
531
+ --------------
532
+ # ~/_config.yml
533
+ ...
534
+ defaults:
535
+ - scope:
536
+ path: "projects"
537
+ type: "pages"
538
+ values:
539
+ layout: "project"
540
+ author: "Mr. Hyde"
541
+ category: "project"
542
+ ...
543
+ --------------
544
+
545
+ [source, yaml]
546
+ --------------
547
+ # ~/projects/foo_project.md
548
+ ---
549
+ author: "John Smith"
550
+ layout: "foobar"
551
+ ---
552
+ The post text goes here...
553
+ --------------
554
+
555
+ The `projects/foo&#x5F;project.md` would have the `layout` set to `foobar`
556
+ instead of `project` and the `author` set to `John Smith` instead of `Mr. Hyde`
557
+ when the site is built.
558
+
559
+ == Default Configuration
560
+
561
+ Jekyll runs with the following configuration options by default. Alternative
562
+ settings for these options can be explicitly specified in the configuration
563
+ file or on the command-line.
564
+
565
+ [WARNING]
566
+ ====
567
+ There are two unsupported kramdown options.
568
+
569
+ Please note that both `remove&#x5F;block&#x5F;html&#x5F;tags` and
570
+ `remove&#x5F;span&#x5F;html&#x5F;tags` are currently *unsupported*
571
+ in Jekyll due to the fact that they are not included within the kramdown
572
+ HTML converter.
573
+ ====
574
+
575
+ [source, yaml]
576
+ --------------
577
+ # Where things are
578
+ #
579
+ source: .
580
+ destination: ./_site
581
+ plugins_dir: _plugins
582
+ layouts_dir: _layouts
583
+ data_dir: _data
584
+ includes_dir: _includes
585
+ collections:
586
+ posts:
587
+ output: true
588
+
589
+ # Handling Reading
590
+ #
591
+ safe: false
592
+ include: [".htaccess"]
593
+ exclude: []
594
+ keep_files: [".git", ".svn"]
595
+ encoding: "utf-8"
596
+ markdown_ext: "markdown,mkdown,mkdn,mkd,md"
597
+
598
+ # Filtering Content
599
+ #
600
+ show_drafts: null
601
+ limit_posts: 0
602
+ future: false
603
+ unpublished: false
604
+
605
+ # Plugins
606
+ #
607
+ whitelist: []
608
+ gems: []
609
+
610
+ # Conversion
611
+ #
612
+ markdown: kramdown
613
+ highlighter: rouge
614
+ lsi: false
615
+ excerpt_separator: "\n\n"
616
+ incremental: false
617
+
618
+ # Serving
619
+ #
620
+ detach: false
621
+ port: 4000
622
+ host: 127.0.0.1
623
+ baseurl: "" # does not include hostname
624
+ show_dir_listing: false
625
+
626
+ # Outputting
627
+ #
628
+ permalink: date
629
+ paginate_path: /page:num
630
+ timezone: null
631
+
632
+ quiet: false
633
+ verbose: false
634
+ defaults: []
635
+
636
+ liquid:
637
+ error_mode: warn
638
+
639
+ # Markdown Processors
640
+ #
641
+ rdiscount:
642
+ extensions: []
643
+
644
+ redcarpet:
645
+ extensions: []
646
+
647
+ kramdown:
648
+ auto_ids: true
649
+ footnote_nr: 1
650
+ entity_output: as_char
651
+ toc_levels: 1..6
652
+ smart_quotes: lsquo,rsquo,ldquo,rdquo
653
+ input: GFM
654
+ hard_wrap: false
655
+ footnote_nr: 1
656
+ --------------
657
+
658
+ == Liquid Options
659
+
660
+ Liquid's response to errors can be configured by setting `error&#x5F;mode`.
661
+ The options are
662
+
663
+ - `lax` --- Ignore all errors.
664
+ - `warn` --- Output a warning on the console for each error.
665
+ - `strict` --- Output an error message and stop the build.
666
+
667
+ == Markdown Options
668
+
669
+ The various Markdown renderers supported by Jekyll sometimes have extra options
670
+ available.
671
+
672
+ === Redcarpet
673
+
674
+ Redcarpet can be configured by providing an `extensions` sub-setting, whose
675
+ value should be an array of strings. Each string should be the name of one of
676
+ the `Redcarpet::Markdown` class's extensions; if present in the array, it will
677
+ set the corresponding extension to `true`.
678
+
679
+ Jekyll handles two special Redcarpet extensions:
680
+
681
+ - `no&#x5F;fenced&#x5F;code&#x5F;blocks` --- By default, Jekyll sets the
682
+ `fenced&#x5F;code&#x5F;blocks` extension (for delimiting code blocks with
683
+ triple tildes or triple backticks) to `true`, probably because GitHub's eager
684
+ adoption of them is starting to make them inescapable. Redcarpet's normal
685
+ `fenced&#x5F;code&#x5F;blocks` extension is inert when used with Jekyll;
686
+ instead, you can use this inverted version of the extension for disabling
687
+ fenced code.
688
+
689
+ Note that you can also specify a language for highlighting after the first
690
+ delimiter:
691
+
692
+ [source, ruby]
693
+ --------------
694
+ # ...ruby code
695
+ --------------
696
+
697
+ With both fenced code blocks and highlighter enabled, this will statically
698
+ highlight the code; without any syntax highlighter, it will add a
699
+ `class="LANGUAGE"` attribute to the `<code>` element, which can be used as a
700
+ hint by various JavaScript code highlighting libraries.
701
+
702
+ - `smart` --- This pseudo-extension turns on SmartyPants, which converts
703
+ straight quotes to curly quotes and runs of hyphens to em (`---`) and en (`--`) dashes.
704
+
705
+ All other extensions retain their usual names from Redcarpet, and no renderer
706
+ options aside from `smart` can be specified in Jekyll. [A list of available
707
+ extensions can be found in the Redcarpet README file.][redcarpet&#x5F;extensions]
708
+ Make sure you're looking at the README for the right version of
709
+ Redcarpet: Jekyll currently uses v3.2.x. The most commonly used
710
+ extensions are:
711
+
712
+ - `tables`
713
+ - `no&#x5F;intra&#x5F;emphasis`
714
+ - `autolink`
715
+
716
+ [redcarpet&#x5F;extensions]: https://github.com/vmg/redcarpet/blob/v3.2.2/README.markdown#and-its-like-really-simple-to-use
717
+
718
+ ### Custom Markdown Processors
719
+
720
+ If you're interested in creating a custom markdown processor, you're in luck! Create a new class in the `Jekyll::Converters::Markdown` namespace:
721
+
722
+ [source, ruby]
723
+ --------------
724
+ class Jekyll::Converters::Markdown::MyCustomProcessor
725
+ def initialize(config)
726
+ require 'funky&#x5F;markdown'
727
+ @config = config
728
+ rescue LoadError
729
+ STDERR.puts 'You are missing a library required for Markdown. Please run:'
730
+ STDERR.puts ' $ [sudo] gem install funky&#x5F;markdown'
731
+ raise FatalException.new("Missing dependency: funky&#x5F;markdown")
732
+ end
733
+
734
+ def convert(content)
735
+ ::FunkyMarkdown.new(content).convert
736
+ end
737
+ end
738
+ --------------
739
+
740
+ Once you've created your class and have it properly set up either as a plugin
741
+ in the `&#x5F;plugins` folder or as a gem, specify it in your `&#x5F;config.yml`:
742
+
743
+ [source, yaml]
744
+ --------------
745
+ markdown: MyCustomProcessor
746
+ --------------
747
+
748
+ == Incremental Regeneration
749
+
750
+ Incremental regeneration helps shorten build times by only generating documents
751
+ and pages that were updated since the previous build. It does this by keeping
752
+ track of both file modification times and inter-document dependencies in the
753
+ `.jekyll-metadata` file.
754
+
755
+ [WARNING]
756
+ ====
757
+ Incremental regeneration is still an experimental feature.
758
+
759
+ While incremental regeneration will work for the most common cases, it will
760
+ not work correctly in every scenario. Please be extremely cautious when
761
+ using the feature, and report any problems not listed below by
762
+ <a href="https://github.com/jekyll/jekyll/issues/new">opening an issue on GitHub</a>.
763
+ ====
764
+
765
+ Under the current implementation, incremental regeneration will only generate a
766
+ document or page if either it, or one of its dependencies, is modified.
767
+ Currently, the only types of dependencies tracked are includes (using the
768
+ `{% include %}` tag) and layouts. This means that plain references to other
769
+ documents (for example, the common case of iterating over `site.posts` in a
770
+ post listings page) will not be detected as a dependency.
771
+
772
+ To remedy some of these shortfalls, putting `regenerate: true` in the
773
+ front-matter of a document will force Jekyll to regenerate it regardless of
774
+ whether it has been modified. Note that this will generate the specified
775
+ document only; references to other documents' contents will not work since
776
+ they won't be re-rendered.
777
+
778
+ Incremental regeneration can be enabled via the `--incremental` flag (`-i` for
779
+ short) from the command-line or by setting `incremental: true` in your
780
+ configuration file.