j1_template_mde 2018.4.10

Sign up to get free protection for your applications and to get access to all the features.
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,228 @@
1
+ ---
2
+ layout: page
3
+ description: Blog page pagination built-in
4
+ title: Pagination built-in
5
+ tagline: Jekyll blog page pagination built-in
6
+ group: pages
7
+ toc: true
8
+ ---
9
+
10
+ :website: https://jekyllrb.com/docs/posts/
11
+ :revnumber: 3.2.1
12
+
13
+ //Ref
14
+ :liquid-date-formats: http://docs.shopify.com/themes/liquid-documentation/filters/additional-filters#date
15
+
16
+ [.boxShadow]
17
+ ====
18
+ With many websites—especially blogs—it’s very common to break the main listing
19
+ of posts up into smaller lists and display them over multiple pages.
20
+
21
+ Jekyll has pagination built-in, so you can automatically generate the appropriate
22
+ files and folders you need for paginated listings.
23
+ ====
24
+
25
+ == Enable pagination
26
+
27
+ To enable pagination for your blog, add a line to the `_config.yml` file that
28
+ specifies how many items should be displayed per page:
29
+
30
+ [source, yaml]
31
+ ----
32
+ paginate: 5
33
+ ----
34
+
35
+ [NOTE]
36
+ ====
37
+ *Pagination only works within HTML files.*
38
+
39
+ Pagination does not work with Markdown or Textile files in your Jekyll site.
40
+ It will only work when used within HTML files. Since you’ll likely be using
41
+ this for the list of Posts, this shouldn’t be an issue.
42
+ ====
43
+
44
+ The number should be the maximum number of Posts you’d like to be displayed per-
45
+ page in the generated site.
46
+
47
+ You may also specify where the destination of the pagination pages:
48
+
49
+ [source, yaml]
50
+ ----
51
+ paginate_path: "blog/page:num"
52
+ ----
53
+
54
+ This will read in `blog/index.html`, send it each pagination page in Liquid as `paginator`
55
+ and write the output to `blog/page:num`, where `:num` is the pagination page number,
56
+ starting with `2`. If a site has 12 posts and specifies `paginate: 5`, Jekyll will write
57
+ `blog/index.html` with the first 5 posts, `blog/page2/index.html` with the next 5 posts
58
+ and `blog/page3/index.html` with the last 2 posts into the destination directory.
59
+
60
+ == Liquid Attributes Available
61
+
62
+ The pagination plugin exposes the `paginator` liquid object with the following
63
+ attributes:
64
+
65
+ [source, html]
66
+ ----
67
+ <div class="mobile-side-scroller">
68
+ <table>
69
+ <thead>
70
+ <tr>
71
+ <th>Attribute</th>
72
+ <th>Description</th>
73
+ </tr>
74
+ </thead>
75
+ <tbody>
76
+ <tr>
77
+ <td><p><code>page</code></p></td>
78
+ <td><p>current page number</p></td>
79
+ </tr>
80
+ <tr>
81
+ <td><p><code>per_page</code></p></td>
82
+ <td><p>number of posts per page</p></td>
83
+ </tr>
84
+ <tr>
85
+ <td><p><code>posts</code></p></td>
86
+ <td><p>a list of posts for the current page</p></td>
87
+ </tr>
88
+ <tr>
89
+ <td><p><code>total_posts</code></p></td>
90
+ <td><p>total number of posts in the site</p></td>
91
+ </tr>
92
+ <tr>
93
+ <td><p><code>total_pages</code></p></td>
94
+ <td><p>number of pagination pages</p></td>
95
+ </tr>
96
+ <tr>
97
+ <td><p><code>previous_page</code></p></td>
98
+ <td>
99
+ <p>
100
+ page number of the previous pagination page,
101
+ or <code>nil</code> if no previous page exists
102
+ </p>
103
+ </td>
104
+ </tr>
105
+ <tr>
106
+ <td><p><code>previous_page_path</code></p></td>
107
+ <td>
108
+ <p>
109
+ path of previous pagination page,
110
+ or <code>nil</code> if no previous page exists
111
+ </p>
112
+ </td>
113
+ </tr>
114
+ <tr>
115
+ <td><p><code>next_page</code></p></td>
116
+ <td>
117
+ <p>
118
+ page number of the next pagination page,
119
+ or <code>nil</code> if no subsequent page exists
120
+ </p>
121
+ </td>
122
+ </tr>
123
+ <tr>
124
+ <td><p><code>next_page_path</code></p></td>
125
+ <td>
126
+ <p>
127
+ path of next pagination page,
128
+ or <code>nil</code> if no subsequent page exists
129
+ </p>
130
+ </td>
131
+ </tr>
132
+ </tbody>
133
+ </table>
134
+ </div>
135
+ ----
136
+
137
+ [NOTE]
138
+ ====
139
+ *Pagination does not support tags or categories.*
140
+
141
+ Pagination pages through every post in the <code>posts</code>
142
+ variable regardless of variables defined in the YAML Front Matter of
143
+ each. It does not currently allow paging over groups of posts linked
144
+ by a common tag or category. It cannot include any collection of
145
+ documents because it is restricted to posts.
146
+ ====
147
+
148
+ == Render the paginated Posts
149
+
150
+ The next thing you need to do is to actually display your posts in a list using
151
+ the `paginator` variable that will now be available to you. You’ll probably want
152
+ to do this in one of the main pages of your site. Here’s one example of a simple
153
+ way of rendering paginated Posts in a HTML file:
154
+
155
+ [source, html]
156
+ ----
157
+ ---
158
+ layout: default
159
+ title: My Blog
160
+ ---
161
+
162
+ <!-- This loops through the paginated posts -->
163
+ {% for post in paginator.posts %}
164
+ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
165
+ <p class="author">
166
+ <span class="date">{{ post.date }}</span>
167
+ </p>
168
+ <div class="content">
169
+ {{ post.content }}
170
+ </div>
171
+ {% endfor %}
172
+
173
+ <!-- Pagination links -->
174
+ <div class="pagination">
175
+ {% if paginator.previous_page %}
176
+ <a href="/page{{ paginator.previous_page }}" class="previous">Previous</a>
177
+ {% else %}
178
+ <span class="previous">Previous</span>
179
+ {% endif %}
180
+ <span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
181
+ {% if paginator.next_page %}
182
+ <a href="/page{{ paginator.next_page }}" class="next">Next</a>
183
+ {% else %}
184
+ <span class="next ">Next</span>
185
+ {% endif %}
186
+ </div>
187
+ ----
188
+
189
+ [WARNING]
190
+ ====
191
+ *Beware the page one edge-case.*
192
+
193
+ Jekyll does not generate a ‘page1’ folder, so the above code will not work
194
+ when a <code>/page1</code> link is produced. See below for a way to handle
195
+ this if it’s a problem for you.
196
+ ====
197
+
198
+ The following HTML snippet should handle page one, and render a list of each
199
+ page with links to all but the current page.
200
+
201
+ [source, html]
202
+ ----
203
+ {% if paginator.total_pages > 1 %}
204
+ <div class="pagination">
205
+ {% if paginator.previous_page %}
206
+ <a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
207
+ {% else %}
208
+ <span>&laquo; Prev</span>
209
+ {% endif %}
210
+
211
+ {% for page in (1..paginator.total_pages) %}
212
+ {% if page == paginator.page %}
213
+ <em>{{ page }}</em>
214
+ {% elsif page == 1 %}
215
+ <a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
216
+ {% else %}
217
+ <a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
218
+ {% endif %}
219
+ {% endfor %}
220
+
221
+ {% if paginator.next_page %}
222
+ <a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next &raquo;</a>
223
+ {% else %}
224
+ <span>Next &raquo;</span>
225
+ {% endif %}
226
+ </div>
227
+ {% endif %}
228
+ ----
@@ -0,0 +1,777 @@
1
+ ---
2
+ layout: page
3
+ description: Jekyll API - Extend Jekyll using Plugins
4
+ title: Jekyll API - Plugins
5
+ tagline: Extend Jekyll using Plugins
6
+ group: pages
7
+ toc: true
8
+ ---
9
+
10
+ :doctype: article
11
+ :website: https://jekyllrb.com/
12
+ :revnumber: 3.2.1
13
+
14
+ // URLs
15
+ :tao-of-programming: http://www.canonical.org/~kragen/tao-of-programming.html
16
+
17
+
18
+ [.boxShadow]
19
+ ====
20
+ Jekyll has a plugin system with hooks that allow you to create custom
21
+ generated content specific to your site. You can run custom code for
22
+ your site without having to modify the Jekyll source itself.
23
+ ====
24
+
25
+
26
+ == Jekyll Plugins
27
+
28
+ Plugins on GitHub Pages
29
+ ---------------------------------------------------------------------------
30
+ <a href="http://pages.github.com/">GitHub Pages</a> is powered by Jekyll,
31
+ however all Pages sites are generated using the <code>--safe</code> option
32
+ to disable custom plugins for security reasons. Unfortunately, this means
33
+ your plugins won’t work if you’re deploying to GitHub Pages.<br><br>
34
+ You can still use GitHub Pages to publish your site, but you’ll need to
35
+ convert the site locally and push the generated static files to your GitHub
36
+ repository instead of the Jekyll source files.
37
+ ---------------------------------------------------------------------------
38
+
39
+ Installing a plugin
40
+ ~~~~~~~~~~~~~~~~~~~
41
+
42
+ You have 2 options for installing plugins:
43
+
44
+ 1. In your site source root, make a `_plugins` directory. Place your
45
+ plugins here. Any file ending in `*.rb` inside this directory will be
46
+ loaded before Jekyll generates your site.
47
+ 2. In your `_config.yml` file, add a new array with the key `gems` and
48
+ the values of the gem names of the plugins you'd like to use. An
49
+ example:
50
+ +
51
+ ---------------------------------------------------------
52
+ gems: [jekyll-test-plugin, jekyll-jsonify, jekyll-assets]
53
+ # This will require each of these gems automatically.
54
+ ---------------------------------------------------------
55
+
56
+ -------------------------------------------
57
+ <code>_plugins</code> and <code>gems</code>
58
+ can be used simultaneously
59
+ -------------------------------------------
60
+
61
+ -----------------------------------------------------------------------------
62
+ You may use both of the aforementioned plugin options simultaneously in the
63
+ same site if you so choose. Use of one does not restrict the use of the other
64
+ -----------------------------------------------------------------------------
65
+
66
+ In general, plugins you make will fall into one of three categories:
67
+
68
+ 1. Generators
69
+ 2. Converters
70
+ 3. Tags
71
+
72
+ Generators
73
+ ~~~~~~~~~~
74
+
75
+ You can create a generator when you need Jekyll to create additional
76
+ content based on your own rules.
77
+
78
+ A generator is a subclass of `Jekyll::Generator` that defines a
79
+ `generate` method, which receives an instance of
80
+ link:{{%20site.repository%20}}/blob/master/lib/jekyll/site.rb[`Jekyll::Site`].
81
+
82
+ Generation is triggered for its side-effects, the return value of
83
+ `generate` is ignored. Jekyll does not assume any particular side-effect
84
+ to happen, it just runs the method.
85
+
86
+ Generators run after Jekyll has made an inventory of the existing
87
+ content, and before the site is generated. Pages with YAML front-matters
88
+ are stored as instances of
89
+ link:{{%20site.repository%20}}/blob/master/lib/jekyll/page.rb[`Jekyll::Page`]
90
+ and are available via `site.pages`. Static files become instances of
91
+ link:{{%20site.repository%20}}/blob/master/lib/jekyll/static_file.rb[`Jekyll::StaticFile`]
92
+ and are available via `site.static_files`.
93
+
94
+ // See link:/docs/variables/[theVariables documentation page] and link:{{%20site.repository%20}}/blob/master/lib/jekyll/site.rb[`Jekyll::Site`] for more details.
95
+
96
+ For instance, a generator can inject values computed at build time for
97
+ template variables. In the following example the template `reading.html`
98
+ has two variables `ongoing` and `done` that we fill in the generator:
99
+
100
+ \{% highlight ruby %} module Reading class Generator < Jekyll::Generator
101
+ def generate(site) ongoing, done = Book.all.partition(&:ongoing?)
102
+
103
+ ------------------------------------------------------------------
104
+ reading = site.pages.detect {|page| page.name == 'reading.html'}
105
+ reading.data['ongoing'] = ongoing
106
+ reading.data['done'] = done
107
+ end
108
+ ------------------------------------------------------------------
109
+
110
+ end end \{% endhighlight %}
111
+
112
+ This is a more complex generator that generates new pages:
113
+
114
+ \{% highlight ruby %} module Jekyll
115
+
116
+ class CategoryPage < Page def initialize(site, base, dir, category)
117
+ @site = site @base = base @dir = dir @name = 'index.html'
118
+
119
+ ------------------------------------------------------------------------------
120
+ self.process(@name)
121
+ self.read_yaml(File.join(base, '_layouts'), 'category_index.html')
122
+ self.data['category'] = category
123
+
124
+ category_title_prefix = site.config['category_title_prefix'] || 'Category: '
125
+ self.data['title'] = "#{category_title_prefix}#{category}"
126
+ end
127
+ ------------------------------------------------------------------------------
128
+
129
+ end
130
+
131
+ class CategoryPageGenerator < Generator safe true
132
+
133
+ -------------------------------------------------------------------------------------------
134
+ def generate(site)
135
+ if site.layouts.key? 'category_index'
136
+ dir = site.config['category_dir'] || 'categories'
137
+ site.categories.keys.each do |category|
138
+ site.pages << CategoryPage.new(site, site.source, File.join(dir, category), category)
139
+ end
140
+ end
141
+ end
142
+ -------------------------------------------------------------------------------------------
143
+
144
+ end
145
+
146
+ end \{% endhighlight %}
147
+
148
+ In this example, our generator will create a series of files under the
149
+ `categories` directory for each category, listing the posts in each
150
+ category using the `category_index.html` layout.
151
+
152
+ Generators are only required to implement one method:
153
+
154
+ ----------------------
155
+ <tr>
156
+ <th>Method</th>
157
+ <th>Description</th>
158
+ </tr>
159
+ ----------------------
160
+
161
+ ----------------------------------------------
162
+ <tr>
163
+ <td>
164
+ <p><code>generate</code></p>
165
+ </td>
166
+ <td>
167
+ <p>Generates content as a side-effect.</p>
168
+ </td>
169
+ </tr>
170
+ ----------------------------------------------
171
+
172
+
173
+ [[converters]]
174
+ Converters
175
+ ~~~~~~~~~~
176
+
177
+ If you have a new markup language you’d like to use with your site, you
178
+ can include it by implementing your own converter. Both the Markdown and
179
+ Textile markup languages are implemented using this method.
180
+
181
+ Remember your YAML front-matter
182
+ ---------------------------------------------------------------------------
183
+ Jekyll will only convert files that have a YAML header at the top, even for
184
+ converters you add using a plugin.
185
+ ---------------------------------------------------------------------------
186
+
187
+ Below is a converter that will take all posts ending in `.upcase` and
188
+ process them using the `UpcaseConverter`:
189
+
190
+ \{% highlight ruby %} module Jekyll class UpcaseConverter < Converter
191
+ safe true priority :low
192
+
193
+ ----------------------
194
+ def matches(ext)
195
+ ext =~ /^\.upcase$/i
196
+ end
197
+
198
+ def output_ext(ext)
199
+ ".html"
200
+ end
201
+
202
+ def convert(content)
203
+ content.upcase
204
+ end
205
+ ----------------------
206
+
207
+ end end \{% endhighlight %}
208
+
209
+ Converters should implement at a minimum 3 methods:
210
+
211
+ ----------------------
212
+ <tr>
213
+ <th>Method</th>
214
+ <th>Description</th>
215
+ </tr>
216
+ ----------------------
217
+
218
+ ---------------------------------------------------------------------------
219
+ <tr>
220
+ <td>
221
+ <p><code>matches</code></p>
222
+ </td>
223
+ <td><p>
224
+ Does the given extension match this converter’s list of acceptable
225
+ extensions? Takes one argument: the file’s extension (including the
226
+ dot). Must return <code>true</code> if it matches, <code>false</code>
227
+ otherwise.
228
+ </p></td>
229
+ </tr>
230
+ <tr>
231
+ <td>
232
+ <p><code>output_ext</code></p>
233
+ </td>
234
+ <td><p>
235
+ The extension to be given to the output file (including the dot).
236
+ Usually this will be <code>".html"</code>.
237
+ </p></td>
238
+ </tr>
239
+ <tr>
240
+ <td>
241
+ <p><code>convert</code></p>
242
+ </td>
243
+ <td><p>
244
+ Logic to do the content conversion. Takes one argument: the raw content
245
+ of the file (without YAML front matter). Must return a String.
246
+ </p></td>
247
+ </tr>
248
+ ---------------------------------------------------------------------------
249
+
250
+ In our example, `UpcaseConverter#matches` checks if our filename
251
+ extension is `.upcase`, and will render using the converter if it is. It
252
+ will call `UpcaseConverter#convert` to process the content. In our
253
+ simple converter we’re simply uppercasing the entire content string.
254
+ Finally, when it saves the page, it will do so with a `.html` extension.
255
+
256
+ [[tags]]
257
+ Tags
258
+ ~~~~
259
+
260
+ If you’d like to include custom liquid tags in your site, you can do so
261
+ by hooking into the tagging system. Built-in examples added by Jekyll
262
+ include the `highlight` and `include` tags. Below is an example of a
263
+ custom liquid tag that will output the time the page was rendered:
264
+
265
+ \{% highlight ruby %} module Jekyll class RenderTimeTag < Liquid::Tag
266
+
267
+ --------------------------------------
268
+ def initialize(tag_name, text, tokens)
269
+ super
270
+ @text = text
271
+ end
272
+
273
+ def render(context)
274
+ "#{@text} #{Time.now}"
275
+ end
276
+ --------------------------------------
277
+
278
+ end end
279
+
280
+ Liquid::Template.register_tag('render_time', Jekyll::RenderTimeTag) \{%
281
+ endhighlight %}
282
+
283
+ At a minimum, liquid tags must implement:
284
+
285
+ ----------------------
286
+ <tr>
287
+ <th>Method</th>
288
+ <th>Description</th>
289
+ </tr>
290
+ ----------------------
291
+
292
+ ------------------------------------------
293
+ <tr>
294
+ <td>
295
+ <p><code>render</code></p>
296
+ </td>
297
+ <td>
298
+ <p>Outputs the content of the tag.</p>
299
+ </td>
300
+ </tr>
301
+ ------------------------------------------
302
+
303
+ You must also register the custom tag with the Liquid template engine as
304
+ follows:
305
+
306
+ \{% highlight ruby %} Liquid::Template.register_tag('render_time',
307
+ Jekyll::RenderTimeTag) \{% endhighlight %}
308
+
309
+ In the example above, we can place the following tag anywhere in one of
310
+ our pages:
311
+
312
+ \{% highlight ruby %} \{% raw %}
313
+ \{% render_time page rendered at: %}
314
+ \{% endraw %} \{% endhighlight %}
315
+
316
+ And we would get something like this on the page:
317
+
318
+ \{% highlight html %}
319
+ page rendered at: Tue June 22 23:38:47 –0500 2010
320
+ \{% endhighlight %}
321
+
322
+ [[liquid-filters]]
323
+ Liquid filters
324
+ ^^^^^^^^^^^^^^
325
+
326
+ You can add your own filters to the Liquid template system much like you
327
+ can add tags above. Filters are simply modules that export their methods
328
+ to liquid. All methods will have to take at least one parameter which
329
+ represents the input of the filter. The return value will be the output
330
+ of the filter.
331
+
332
+ \{% highlight ruby %} module Jekyll module AssetFilter def
333
+ asset_url(input) "http://www.example.com/#\{input}?#\{Time.now.to_i}"
334
+ end end end
335
+
336
+ Liquid::Template.register_filter(Jekyll::AssetFilter) \{% endhighlight
337
+ %}
338
+
339
+ ProTip™: Access the site object using Liquid
340
+ ---------------------------------------------------------------------------------------------------------------
341
+ Jekyll lets you access the <code>site</code> object through the
342
+ <code>context.registers</code> feature of Liquid at <code>context.registers[:site]</code>. For example, you can
343
+ access the global configuration file <code>_config.yml</code> using
344
+ <code>context.registers[:site].config</code>.
345
+ ---------------------------------------------------------------------------------------------------------------
346
+
347
+ [[flags]]
348
+ Flags
349
+ ^^^^^
350
+
351
+ There are two flags to be aware of when writing a plugin:
352
+
353
+ ----------------------
354
+ <tr>
355
+ <th>Flag</th>
356
+ <th>Description</th>
357
+ </tr>
358
+ ----------------------
359
+
360
+ ---------------------------------------------------------------------------
361
+ <tr>
362
+ <td>
363
+ <p><code>safe</code></p>
364
+ </td>
365
+ <td>
366
+ <p>
367
+ A boolean flag that informs Jekyll whether this plugin may be safely
368
+ executed in an environment where arbitrary code execution is not
369
+ allowed. This is used by GitHub Pages to determine which core plugins
370
+ may be used, and which are unsafe to run. If your plugin does not
371
+ allow for arbitrary code, execution, set this to <code>true</code>.
372
+ GitHub Pages still won’t load your plugin, but if you submit it for
373
+ inclusion in core, it’s best for this to be correct!
374
+ </p>
375
+ </td>
376
+ </tr>
377
+ <tr>
378
+ <td>
379
+ <p><code>priority</code></p>
380
+ </td>
381
+ <td>
382
+ <p>
383
+ This flag determines what order the plugin is loaded in. Valid values
384
+ are: <code>:lowest</code>, <code>:low</code>, <code>:normal</code>,
385
+ <code>:high</code>, and <code>:highest</code>. Highest priority
386
+ matches are applied first, lowest priority are applied last.
387
+ </p>
388
+ </td>
389
+ </tr>
390
+ ---------------------------------------------------------------------------
391
+
392
+ To use one of the example plugins above as an illustration, here is how
393
+ you’d specify these two flags:
394
+
395
+ \{% highlight ruby %} module Jekyll class UpcaseConverter < Converter
396
+ safe true priority :low ... end end \{% endhighlight %}
397
+
398
+ ///////////////////////////
399
+
400
+ [[available-plugins]]
401
+ Available Plugins
402
+ ~~~~~~~~~~~~~~~~~
403
+
404
+ You can find a few useful plugins at the following locations:
405
+
406
+ [[generators-1]]
407
+ Generators
408
+ ++++++++++
409
+
410
+ * https://gist.github.com/707909[ArchiveGenerator by Ilkka Laukkanen]:
411
+ Uses https://gist.github.com/707020[this archive page] to generate
412
+ archives.
413
+ * https://gist.github.com/642739[LESS.js Generator by Andy Fowler]:
414
+ Renders LESS.js files during generation.
415
+ * https://gist.github.com/449491[Version Reporter by Blake Smith]:
416
+ Creates a version.html file containing the Jekyll version.
417
+ * https://github.com/kinnetica/jekyll-plugins[Sitemap.xml Generator by
418
+ Michael Levin]: Generates a sitemap.xml file by traversing all of the
419
+ available posts and pages.
420
+ * https://github.com/PascalW/jekyll_indextank[Full-text search by Pascal
421
+ Widdershoven]: Adds full-text search to your Jekyll site with a plugin
422
+ and a bit of JavaScript.
423
+ * https://github.com/tsmango/jekyll_alias_generator[AliasGenerator by
424
+ Thomas Mango]: Generates redirect pages for posts when an alias is
425
+ specified in the YAML Front Matter.
426
+ * https://github.com/nquinlan/jekyll-pageless-redirects[Pageless
427
+ Redirect Generator by Nick Quinlan]: Generates redirects based on files
428
+ in the Jekyll root, with support for htaccess style redirects.
429
+ * https://github.com/fhemberger/jekyll-projectlist[Projectlist by
430
+ Frederic Hemberger]: Renders files in a directory as a single page
431
+ instead of separate posts.
432
+ * https://github.com/agelber/jekyll-rss[RssGenerator by Assaf Gelber]:
433
+ Automatically creates an RSS 2.0 feed from your posts.
434
+ * https://github.com/shigeya/jekyll-monthly-archive-plugin[Monthly
435
+ archive generator by Shigeya Suzuki]: Generator and template which
436
+ renders monthly archive like MovableType style, based on the work by
437
+ Ilkka Laukkanen and others above.
438
+ * https://github.com/shigeya/jekyll-category-archive-plugin[Category
439
+ archive generator by Shigeya Suzuki]: Generator and template which
440
+ renders category archive like MovableType style, based on Monthly
441
+ archive generator.
442
+ * https://github.com/yihangho/emoji-for-jekyll[Emoji for Jekyll]:
443
+ Seamlessly enable emoji for all posts and pages.
444
+ * https://github.com/mscharley/jekyll-compass[Compass integration for
445
+ Jekyll]: Easily integrate Compass and Sass with your Jekyll website.
446
+ * https://github.com/bbakersmith/jekyll-pages-directory[Pages Directory
447
+ by Ben Baker-Smith]: Defines a `_pages` directory for page files which
448
+ routes its output relative to the project root.
449
+ * https://github.com/jeffkole/jekyll-page-collections[Page Collections
450
+ by Jeff Kolesky]: Generates collections of pages with functionality that
451
+ resembles posts.
452
+ * https://github.com/sheehamj13/jekyll-live-tiles[Windows 8.1 Live Tile
453
+ Generation by Matt Sheehan]: Generates Internet Explorer 11 config.xml
454
+ file and Tile Templates for pinning your site to Windows 8.1.
455
+
456
+ [[converters-1]]
457
+ Converters
458
+ ++++++++++
459
+
460
+ * https://github.com/snappylabs/jade-jekyll-plugin[Jade plugin by John
461
+ Papandriopoulos]: Jade converter for Jekyll.
462
+ * https://gist.github.com/517556[HAML plugin by Sam Z]: HAML converter
463
+ for Jekyll.
464
+ * https://gist.github.com/481456[HAML-Sass Converter by Adam Pearson]:
465
+ Simple HAML-Sass converter for Jekyll.
466
+ https://gist.github.com/528642[Fork] by Sam X.
467
+ * https://gist.github.com/960150[Sass SCSS Converter by Mark Wolfe]:
468
+ Sass converter which uses the new CSS compatible syntax, based Sam X’s
469
+ fork above.
470
+ * https://gist.github.com/639920[LESS Converter by Jason Graham]:
471
+ Convert LESS files to CSS.
472
+ * https://gist.github.com/760265[LESS Converter by Josh Brown]: Simple
473
+ LESS converter.
474
+ * https://gist.github.com/449463[Upcase Converter by Blake Smith]: An
475
+ example Jekyll converter.
476
+ * https://gist.github.com/959938[CoffeeScript Converter by phaer]: A
477
+ http://coffeescript.org[CoffeeScript] to Javascript converter.
478
+ * https://github.com/olov/jekyll-references[Markdown References by Olov
479
+ Lassus]: Keep all your markdown reference-style link definitions in one
480
+ _references.md file.
481
+ * https://gist.github.com/988201[Stylus Converter]: Convert .styl to
482
+ .css.
483
+ * https://github.com/xdissent/jekyll-rst[ReStructuredText Converter]:
484
+ Converts ReST documents to HTML with Pygments syntax highlighting.
485
+ * https://github.com/dsanson/jekyll-pandoc-plugin[Jekyll-pandoc-plugin]:
486
+ Use pandoc for rendering markdown.
487
+ *
488
+ https://github.com/fauno/jekyll-pandoc-multiple-formats[Jekyll-pandoc-multiple-formats]
489
+ by https://github.com/edsl[edsl]: Use pandoc to generate your site in
490
+ multiple formats. Supports pandoc’s markdown extensions.
491
+ * https://gist.github.com/1472645[Transform Layouts]: Allows HAML
492
+ layouts (you need a HAML Converter plugin for this to work).
493
+ * https://gist.github.com/abhiyerra/7377603[Org-mode Converter]:
494
+ Org-mode converter for Jekyll.
495
+
496
+ [[filters]]
497
+ Filters
498
+ +++++++
499
+
500
+ * https://github.com/MattHall/truncatehtml[Truncate HTML] by
501
+ http://codebeef.com[Matt Hall]: A Jekyll filter that truncates HTML
502
+ while preserving markup structure.
503
+ * https://github.com/LawrenceWoodman/domain_name-liquid_filter[Domain
504
+ Name Filter by Lawrence Woodman]: Filters the input text so that just
505
+ the domain name is left.
506
+ * https://gist.github.com/731597[Summarize Filter by Mathieu Arnold]:
507
+ Remove markup after a `<div id="extended">` tag.
508
+ * https://gist.github.com/919275[URL encoding by James An]: Percent
509
+ encoding for URIs.
510
+ * https://gist.github.com/1850654[JSON Filter] by
511
+ https://github.com/joelverhagen[joelverhagen]: Filter that takes input
512
+ text and outputs it as JSON. Great for rendering JavaScript.
513
+ *
514
+ https://github.com/gacha/gacha.id.lv/blob/master/_plugins/i18n_filter.rb[i18n_filter]:
515
+ Liquid filter to use I18n localization.
516
+ * https://github.com/SaswatPadhi/jekyll_smilify[Smilify] by
517
+ https://github.com/SaswatPadhi[SaswatPadhi]: Convert text emoticons in
518
+ your content to themeable smiley pics
519
+ (http://saswatpadhi.github.com/[Demo]).
520
+ * https://gist.github.com/zachleat/5792681[Read in X Minutes] by
521
+ https://github.com/zachleat[zachleat]: Estimates the reading time of a
522
+ string (for blog post content).
523
+ * https://github.com/markets/jekyll-timeago[Jekyll-timeago]: Converts a
524
+ time value to the time ago in words.
525
+ * https://github.com/bdesham/pluralize[pluralize]: Easily combine a
526
+ number and a word into a gramatically-correct amount like “1 minute” or
527
+ “2 minute**s**”.
528
+ * https://github.com/bdesham/reading_time[reading_time]: Count words and
529
+ estimate reading time for a piece of text, ignoring HTML elements that
530
+ are unlikely to contain running text.
531
+ * https://github.com/dafi/jekyll-toc-generator[Table of Content
532
+ Generator]: Generate the HTML code containing a table of content (TOC),
533
+ the TOC can be customized in many way, for example you can decide which
534
+ pages can be without TOC.
535
+ * https://github.com/23maverick23/jekyll-humanize[jekyll-humanize]: This
536
+ is a port of the Django app humanize which adds a "human touch" to data.
537
+ Each method represents a Fluid type filter that can be used in your
538
+ Jekyll site templates. Given that Jekyll produces static sites, some of
539
+ the original methods do not make logical sense to port (e.g.
540
+ naturaltime).
541
+ * https://github.com/PatrickC8t/Jekyll-Ordinal[Jekyll-Ordinal]: Jekyll
542
+ liquid filter to output a date ordinal such as "st", "nd", "rd", or
543
+ "th".
544
+ * https://github.com/kzykbys/JekyllPlugins[Deprecated articles keeper]
545
+ by http://blog.kazuya.co/[Kazuya Kobayashi]: A simple Jekyll filter
546
+ which monitor how old an article is.
547
+
548
+ [[tags-1]]
549
+ Tags
550
+ ++++
551
+
552
+ * https://github.com/samrayner/jekyll-asset-path-plugin[Asset Path Tag]
553
+ by http://www.samrayner.com/[Sam Rayner]: Allows organisation of assets
554
+ into subdirectories by outputting a path for a given file relative to
555
+ the current post or page.
556
+ * https://github.com/christianhellsten/jekyll-plugins[Delicious Plugin
557
+ by Christian Hellsten]: Fetches and renders bookmarks from
558
+ delicious.com.
559
+ * https://gist.github.com/480380[Ultraviolet Plugin by Steve Alex]:
560
+ Jekyll tag for the http://ultraviolet.rubyforge.org/[Ultraviolet] code
561
+ highligher.
562
+ * https://gist.github.com/710577[Tag Cloud Plugin by Ilkka Laukkanen]:
563
+ Generate a tag cloud that links to tag pages.
564
+ * https://gist.github.com/730347[GIT Tag by Alexandre Girard]: Add Git
565
+ activity inside a list.
566
+ * https://gist.github.com/834610[MathJax Liquid Tags by Jessy
567
+ Cowan-Sharp]: Simple liquid tags for Jekyll that convert inline math and
568
+ block equations to the appropriate MathJax script tags.
569
+ * https://gist.github.com/1027674[Non-JS Gist Tag by Brandon Tilley] A
570
+ Liquid tag that embeds Gists and shows code for non-JavaScript enabled
571
+ browsers and readers.
572
+ * https://gist.github.com/449509[Render Time Tag by Blake Smith]:
573
+ Displays the time a Jekyll page was generated.
574
+ * https://gist.github.com/912466[Status.net/OStatus Tag by phaer]:
575
+ Displays the notices in a given status.net/ostatus feed.
576
+ * https://gist.github.com/1020852[Raw Tag by phaer]: Keeps liquid from
577
+ parsing text betweeen `raw` tags.
578
+ * https://github.com/robb/jekyll-embedly-client[Embed.ly client by
579
+ Robert Böhnke]: Autogenerate embeds from URLs using oEmbed.
580
+ * https://gist.github.com/2290195[Logarithmic Tag Cloud]: Flexible.
581
+ Logarithmic distribution. Documentation inline.
582
+ * https://gist.github.com/1455726[oEmbed Tag by Tammo van Lessen]:
583
+ Enables easy content embedding (e.g. from YouTube, Flickr, Slideshare)
584
+ via oEmbed.
585
+ * https://github.com/tsmango/jekyll_flickr_set_tag[FlickrSetTag by
586
+ Thomas Mango]: Generates image galleries from Flickr sets.
587
+ * https://github.com/scottwb/jekyll-tweet-tag[Tweet Tag by Scott W.
588
+ Bradley]: Liquid tag for
589
+ https://dev.twitter.com/docs/embedded-tweets[Embedded Tweets] using
590
+ Twitter’s shortcodes.
591
+ *
592
+ https://github.com/rustygeldmacher/jekyll-contentblocks[Jekyll-contentblocks]:
593
+ Lets you use Rails-like content_for tags in your templates, for passing
594
+ content from your posts up to your layouts.
595
+ * https://gist.github.com/1805814[Generate YouTube Embed] by
596
+ https://github.com/joelverhagen[joelverhagen]: Jekyll plugin which
597
+ allows you to embed a YouTube video in your page with the YouTube ID.
598
+ Optionally specify width and height dimensions. Like “oEmbed Tag” but
599
+ just for YouTube.
600
+ * https://github.com/okeeblow/jekyll-beastiepress[Jekyll-beastiepress]:
601
+ FreeBSD utility tags for Jekyll sites.
602
+ * https://gist.github.com/1895282[Jsonball]: Reads json files and
603
+ produces maps for use in Jekyll files.
604
+ * https://github.com/pablooliveira/bibjekyll[Bibjekyll]: Render
605
+ BibTeX-formatted bibliographies/citations included in posts and pages
606
+ using bibtex2html.
607
+ * https://github.com/archome/jekyll-citation[Jekyll-citation]: Render
608
+ BibTeX-formatted bibliographies/citations included in posts and pages
609
+ (pure Ruby).
610
+ * https://github.com/ericdfields/Jekyll-Dribbble-Set-Tag[Jekyll Dribbble
611
+ Set Tag]: Builds Dribbble image galleries from any user.
612
+ * https://gist.github.com/2218470[Debbugs]: Allows posting links to
613
+ Debian BTS easily.
614
+ * https://github.com/aburdette/refheap_tag[Refheap_tag]: Liquid tag that
615
+ allows embedding pastes from https://refheap.com[refheap].
616
+ * https://gist.github.com/2403522[Jekyll-devonly_tag]: A block tag for
617
+ including markup only during development.
618
+ * https://github.com/redwallhp/JekyllGalleryTag[JekyllGalleryTag] by
619
+ https://github.com/redwallhp[redwallhp]: Generates thumbnails from a
620
+ directory of images and displays them in a grid.
621
+ * https://gist.github.com/Yexiaoxing/5891929[Youku and Tudou Embed]:
622
+ Liquid plugin for embedding Youku and Tudou videos.
623
+ * https://github.com/sectore/jekyll-swfobject[Jekyll-swfobject]: Liquid
624
+ plugin for embedding Adobe Flash files (.swf) using
625
+ http://code.google.com/p/swfobject/[SWFObject].
626
+ * https://github.com/robwierzbowski/jekyll-picture-tag[Jekyll Picture
627
+ Tag]: Easy responsive images for Jekyll. Based on the proposed
628
+ http://picture.responsiveimages.org/[`<picture>`] element, polyfilled
629
+ with Scott Jehl’s https://github.com/scottjehl/picturefill[Picturefill].
630
+ * https://github.com/robwierzbowski/jekyll-image-tag[Jekyll Image Tag]:
631
+ Better images for Jekyll. Save image presets, generate resized images,
632
+ and add classes, alt text, and other attributes.
633
+ * https://github.com/matze/jekyll-ditaa[Ditaa Tag] by
634
+ https://github.com/matze[matze]: Renders ASCII diagram art into PNG
635
+ images and inserts a figure tag.
636
+ * https://github.com/penibelst/jekyll-good-include[Good Include] by
637
+ http://penibelst.de/[Anatol Broder]: Strips newlines and whitespaces
638
+ from the end of include files before processing.
639
+ * https://github.com/davidensinger/jekyll-suggested-tweet[Jekyll
640
+ Suggested Tweet] by https://github.com/davidensinger/[David Ensinger]: A
641
+ Liquid tag for Jekyll that allows for the embedding of suggested tweets
642
+ via Twitter’s Web Intents API.
643
+ * https://github.com/GSI/jekyll_date_chart[Jekyll Date Chart] by
644
+ https://github.com/GSI[GSI]: Block that renders date line charts based
645
+ on textile-formatted tables.
646
+ * https://github.com/GSI/jekyll_image_encode[Jekyll Image Encode] by
647
+ https://github.com/GSI[GSI]: Tag that renders base64 codes of images
648
+ fetched from the web.
649
+ * https://github.com/GSI/jekyll_quick_man[Jekyll Quick Man] by
650
+ https://github.com/GSI[GSI]: Tag that renders pretty links to man page
651
+ sources on the internet.
652
+ * https://gist.github.com/23maverick23/8532525[jekyll-font-awesome]:
653
+ Quickly and easily add Font Awesome icons to your posts.
654
+ * https://gist.github.com/tobru/9171700[Lychee Gallery Tag] by
655
+ https://github.com/tobru[tobru]: Include
656
+ http://lychee.electerious.com/[Lychee] albums into a post. For an
657
+ introduction, see
658
+ https://tobrunet.ch/articles/jekyll-meets-lychee-a-liquid-tag-plugin/[Jekyll
659
+ meets Lychee - A Liquid Tag plugin]
660
+ * https://github.com/callmeed/jekyll-image-set[Image Set/Gallery Tag] by
661
+ https://github.com/callmeed[callmeed]: Renders HTML for an image gallery
662
+ from a folder in your Jekyll site. Just pass it a folder name and
663
+ class/tag options.
664
+ * https://github.com/lmullen/jekyll_figure[jekyll_figure]: Generate
665
+ figures and captions with links to the figure in a variety of formats
666
+ * https://github.com/bwillis/jekyll-github-sample[Jekyll Github Sample
667
+ Tag]: A liquid tag to include a sample of a github repo file in your
668
+ Jekyll site.
669
+ * https://github.com/rob-murray/jekyll-version-plugin[Jekyll Project
670
+ Version Tag]: A Liquid tag plugin that renders a version identifier for
671
+ your Jekyll site sourced from the git repository containing your code.
672
+ * https://github.com/AlessandroLorenzi/piwigo_gallery[Piwigo Gallery] by
673
+ http://www.alorenzi.eu/[Alessandro Lorenzi]: Jekyll plugin to generate
674
+ thumbnails from a Piwigo gallery and display them with a Liquid tag
675
+
676
+ [[collections]]
677
+ Collections
678
+ +++++++++++
679
+
680
+ * http://recursive-design.com/projects/jekyll-plugins/[Jekyll Plugins by
681
+ Recursive Design]: Plugins to generate Project pages from GitHub
682
+ readmes, a Category page, and a Sitemap generator.
683
+ * https://github.com/flatterline/jekyll-plugins[Company website and blog
684
+ plugins] by Flatterline, a http://flatterline.com/[Ruby on Rails
685
+ development company]: Portfolio/project page generator, team/individual
686
+ page generator, an author bio liquid tag for use on posts, and a few
687
+ other smaller plugins.
688
+ * https://github.com/aucor/jekyll-plugins[Jekyll plugins by Aucor]:
689
+ Plugins for trimming unwanted newlines/whitespace and sorting pages by
690
+ weight attribute.
691
+
692
+ [[other]]
693
+ Other
694
+ +++++
695
+
696
+ *
697
+ https://github.com/rsim/blog.rayapps.com/blob/master/_plugins/pygments_cache_patch.rb[Pygments
698
+ Cache Path by Raimonds Simanovskis]: Plugin to cache syntax-highlighted
699
+ code from Pygments.
700
+ * https://gist.github.com/49630[Draft/Publish Plugin by Michael Ivey]:
701
+ Save posts as drafts.
702
+ * https://gist.github.com/490101[Growl Notification Generator by Tate
703
+ Johnson]: Send Jekyll notifications to Growl.
704
+ * https://gist.github.com/525267[Growl Notification Hook by Tate
705
+ Johnson]: Better alternative to the above, but requires his “hook” fork.
706
+ * https://github.com/LawrenceWoodman/related_posts-jekyll_plugin[Related
707
+ Posts by Lawrence Woodman]: Overrides `site.related_posts` to use
708
+ categories to assess relationship.
709
+ * https://gist.github.com/88cda643aa7e3b0ca1e5[Tiered Archives by Eli
710
+ Naeher]: Create tiered template variable that allows you to group
711
+ archives by year and month.
712
+ *
713
+ https://github.com/blackwinter/jekyll-localization[Jekyll-localization]:
714
+ Jekyll plugin that adds localization features to the rendering engine.
715
+ * https://github.com/blackwinter/jekyll-rendering[Jekyll-rendering]:
716
+ Jekyll plugin to provide alternative rendering engines.
717
+ * https://github.com/blackwinter/jekyll-pagination[Jekyll-pagination]:
718
+ Jekyll plugin to extend the pagination generator.
719
+ * https://github.com/pattex/jekyll-tagging[Jekyll-tagging]: Jekyll
720
+ plugin to automatically generate a tag cloud and tag pages.
721
+ * https://github.com/inukshuk/jekyll-scholar[Jekyll-scholar]: Jekyll
722
+ extensions for the blogging scholar.
723
+ * https://github.com/moshen/jekyll-asset_bundler[Jekyll-asset_bundler]:
724
+ Bundles and minifies JavaScript and CSS.
725
+ * http://ixti.net/jekyll-assets/[Jekyll-assets] by
726
+ https://github.com/ixti[ixti]: Rails-alike assets pipeline (write assets
727
+ in CoffeeScript, Sass, LESS etc; specify dependencies for automatic
728
+ bundling using simple declarative comments in assets; minify and
729
+ compress; use JST templates; cache bust; and many-many more).
730
+ * https://github.com/kitsched/japr[JAPR]: Jekyll Asset Pipeline Reborn -
731
+ Powerful asset pipeline for Jekyll that collects, converts and
732
+ compresses JavaScript and CSS assets.
733
+ * https://gist.github.com/2758691[File compressor] by
734
+ https://github.com/mytharcher[mytharcher]: Compress HTML and JavaScript
735
+ files on site build.
736
+ * https://github.com/tkareine/jekyll-minibundle[Jekyll-minibundle]:
737
+ Asset bundling and cache busting using external minification tool of
738
+ your choice. No gem dependencies.
739
+ * https://github.com/JCB-K/singlepage-jekyll[Singlepage-jekyll] by
740
+ https://github.com/JCB-K[JCB-K]: Turns Jekyll into a dynamic one-page
741
+ website.
742
+ *
743
+ https://github.com/robwierzbowski/generator-jekyllrb[generator-jekyllrb]:
744
+ A generator that wraps Jekyll in http://yeoman.io/[Yeoman], a tool
745
+ collection and workflow for builing modern web apps.
746
+ * https://github.com/dannygarcia/grunt-jekyll[grunt-jekyll]: A
747
+ straightforward http://gruntjs.com/[Grunt] plugin for Jekyll.
748
+ * https://github.com/indirect/jekyll-postfiles[jekyll-postfiles]: Add
749
+ `_postfiles` directory and \{% raw %}`{{ postfile }}`\{% endraw %} tag
750
+ so the files a post refers to will always be right there inside your
751
+ repo.
752
+ * https://github.com/penibelst/jekyll-compress-html[A layout that
753
+ compresses HTML] by http://penibelst.de/[Anatol Broder]: Github Pages
754
+ compatible, configurable way to compress HTML files on site build.
755
+
756
+ [[editors]]
757
+ Editors
758
+ +++++++
759
+
760
+ * https://github.com/23maverick23/sublime-jekyll[sublime-jekyll]: A
761
+ Sublime Text package for Jekyll static sites. This package should help
762
+ creating Jekyll sites and posts easier by providing access to key
763
+ template tags and filters, as well as common completions and a current
764
+ date/datetime command (for dating posts). You can install this package
765
+ manually via GitHub, or via
766
+ https://sublime.wbond.net/packages/Jekyll[Package Control].
767
+ * https://github.com/parkr/vim-jekyll[vim-jekyll]: A vim plugin to
768
+ generate new posts and run `jekyll build` all without leaving vim.
769
+
770
+ Jekyll Plugins Wanted
771
+ ----------------------------------------------------------------------------
772
+ If you have a Jekyll plugin that you would like to see added to this list,
773
+ you should <a href="../contributing/">read the contributing page</a> to find
774
+ out how to make that happen.
775
+ ----------------------------------------------------------------------------
776
+
777
+ ///////////////////////////