j1-template 2022.5.2 → 2022.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/themes/j1/layouts/content_generator_news_panel_posts.html +61 -40
  3. data/_includes/themes/j1/layouts/content_generator_page.html +22 -22
  4. data/_includes/themes/j1/layouts/content_generator_post.html +1 -1
  5. data/_includes/themes/j1/layouts/layout_metadata_generator.html +13 -79
  6. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/about_box.proc +0 -0
  7. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/contacts_box.proc +0 -0
  8. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/issue.proc +0 -0
  9. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/legal_statements.proc +0 -0
  10. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/links_box.proc +0 -0
  11. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/news_box.proc +0 -0
  12. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/social_media_icons.proc +0 -0
  13. data/_includes/themes/j1/procedures/blocks/get_wave.proc +211 -0
  14. data/_includes/themes/j1/procedures/collections/create_collection_article_preview.proc +1 -1
  15. data/_includes/themes/j1/procedures/global/create_word_cloud.proc +1 -1
  16. data/_includes/themes/j1/procedures/posts/collate_timeline.proc +2 -2
  17. data/_includes/themes/j1/procedures/posts/pager.proc +9 -10
  18. data/_layouts/default.html +5 -1
  19. data/apps/private/README.txt +1 -0
  20. data/apps/protected/README.txt +1 -0
  21. data/apps/public/README.txt +1 -0
  22. data/assets/data/banner.html +38 -8
  23. data/assets/data/footer.html +31 -11
  24. data/assets/data/panel.html +118 -27
  25. data/assets/themes/j1/adapter/js/attic.js +4 -4
  26. data/assets/themes/j1/adapter/js/comments.js +18 -7
  27. data/assets/themes/j1/adapter/js/waves.js +227 -0
  28. data/assets/themes/j1/core/css/icon-fonts/fontawesome.min.css +1 -1
  29. data/assets/themes/j1/core/css/icon-fonts/mdi.min.css +1 -1
  30. data/assets/themes/j1/core/css/icon-fonts/mdil.min.css +1 -1
  31. data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.css +92 -74
  32. data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.min.css +5 -3
  33. data/assets/themes/j1/core/css/themes/theme_vapor/bootstrap.css +92 -74
  34. data/assets/themes/j1/core/css/themes/theme_vapor/bootstrap.min.css +5 -3
  35. data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +105 -138
  36. data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +5 -3
  37. data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +457 -262
  38. data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +26 -15
  39. data/assets/themes/j1/core/css/vendor.css +11 -8
  40. data/assets/themes/j1/core/css/vendor.min.css +1 -1
  41. data/assets/themes/j1/core/fonts/fontawesome_5/LICENSE.txt +34 -0
  42. data/assets/themes/j1/core/fonts/material_design_icons/LICENSE.txt +97 -0
  43. data/assets/themes/j1/core/fonts/material_design_icons_light/LICENSE.txt +92 -0
  44. data/assets/themes/j1/core/fonts/roboto/LICENSE.txt +11 -0
  45. data/assets/themes/j1/core/js/template.js +419 -746
  46. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  47. data/assets/themes/j1/modules/backstretch/js/backstretch.js +1 -1
  48. data/assets/themes/j1/modules/backstretch/js/backstretch.min.js +1 -1
  49. data/assets/themes/j1/modules/bokeh/LICENSE.txt +28 -0
  50. data/assets/themes/j1/modules/jquery/js/extensions/hasClass.js +17 -0
  51. data/assets/themes/j1/modules/jquery/js/extensions/hasClass.min.js +17 -0
  52. data/assets/themes/j1/modules/jquery/js/extensions/removeClass.js +18 -0
  53. data/assets/themes/j1/modules/jquery/js/extensions/removeClass.min.js +17 -0
  54. data/assets/themes/j1/modules/later/LICENSE.txt +21 -0
  55. data/assets/themes/j1/modules/log4javascript/license.txt +201 -0
  56. data/assets/themes/j1/modules/lunr/stopwords/de.txt +229 -0
  57. data/assets/themes/j1/modules/lunr/stopwords/en.txt +119 -0
  58. data/assets/themes/j1/modules/masterslider/LICENSE.txt +621 -0
  59. data/assets/themes/j1/modules/masterslider/README.txt +531 -0
  60. data/assets/themes/j1/modules/msDropdown/LICENSE.txt +20 -0
  61. data/assets/themes/j1/modules/nbinteract-core/LICENSE.txt +60 -0
  62. data/assets/themes/j1/modules/rouge/css/themes.txt +46 -0
  63. data/assets/themes/j1/modules/vega/LICENSE.txt +27 -0
  64. data/lib/j1/version.rb +1 -1
  65. data/lib/starter_web/Gemfile +11 -7
  66. data/lib/starter_web/README.md +5 -5
  67. data/lib/starter_web/_config.yml +199 -135
  68. data/lib/starter_web/_data/blocks/banner.yml +18 -2
  69. data/lib/starter_web/_data/blocks/defaults/footer.yml +3 -1
  70. data/lib/starter_web/_data/blocks/defaults/panel.yml +4 -0
  71. data/lib/starter_web/_data/blocks/footer.yml +12 -1
  72. data/lib/starter_web/_data/blocks/panel.yml +88 -19
  73. data/lib/starter_web/_data/j1_config.yml +2 -2
  74. data/lib/starter_web/_data/layouts/collection.yml +0 -9
  75. data/lib/starter_web/_data/layouts/home.yml +21 -30
  76. data/lib/starter_web/_data/layouts/news_panel_posts.yml +0 -9
  77. data/lib/starter_web/_data/layouts/page.yml +0 -9
  78. data/lib/starter_web/_data/layouts/post.yml +0 -9
  79. data/lib/starter_web/_data/modules/blog_navigator.yml +6 -0
  80. data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +15 -8
  81. data/lib/starter_web/_data/modules/defaults/cookieconsent.yml +5 -4
  82. data/lib/starter_web/_data/modules/defaults/navigator.yml +1 -1
  83. data/lib/starter_web/_data/modules/defaults/waves.yml +32 -0
  84. data/lib/starter_web/_data/modules/navigator_menu.yml +48 -120
  85. data/lib/starter_web/_data/modules/waves.yml +32 -0
  86. data/lib/starter_web/_data/plugins/defaults/feed.yml +82 -0
  87. data/lib/starter_web/_data/plugins/defaults/seo-tags.yml +65 -0
  88. data/lib/starter_web/_data/plugins/defaults/sitemap.yml +66 -0
  89. data/lib/starter_web/_data/plugins/feed.yml +35 -0
  90. data/lib/starter_web/_data/plugins/seo-tags.yml +30 -0
  91. data/lib/starter_web/_data/plugins/sitemap.yml +30 -0
  92. data/lib/starter_web/_data/resources.yml +22 -0
  93. data/lib/starter_web/_data/templates/feed.xml +191 -0
  94. data/lib/starter_web/_data/templates/robots.txt +1 -0
  95. data/lib/starter_web/_data/templates/seo-tags.html +140 -0
  96. data/lib/starter_web/_data/templates/sitemap.xml +36 -0
  97. data/lib/starter_web/_includes/attributes.asciidoc +49 -47
  98. data/lib/starter_web/_includes/custom/static/bs5_accordion.html +84 -0
  99. data/lib/starter_web/_includes/custom/templates/bs5_accordion.html +103 -0
  100. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/admonition-block-answer.rb +0 -0
  101. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/admonition-block-question.rb +0 -0
  102. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/banner.rb +0 -0
  103. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/callout.rb +0 -0
  104. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/carousel-block.rb +0 -0
  105. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/conum.rb +0 -0
  106. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/fab-icon-inline.rb +0 -0
  107. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/fas-icon-inline.rb +0 -0
  108. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/flag-icon-inline.rb +0 -0
  109. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/gallery-block.rb +0 -0
  110. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/gist-block.rb +0 -0
  111. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/iconify-icon-inline.rb +0 -0
  112. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/lightbox-block.rb +0 -0
  113. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/lorem_inline.rb +0 -0
  114. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/masterslider-block.rb +0 -0
  115. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/mdi-icon-inline.rb +0 -0
  116. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/panel.rb +0 -0
  117. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/range-slider-block.rb +0 -0
  118. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/shout-block.rb +0 -0
  119. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/textbook-block.rb +0 -0
  120. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/twitter-emoji-inline.rb +0 -0
  121. data/lib/starter_web/_plugins/{debug.rb → filter/debug.rb} +0 -0
  122. data/lib/starter_web/_plugins/{encodeBase64.rb → filter/encodeBase64.rb} +0 -0
  123. data/lib/starter_web/_plugins/{encryptAES.rb → filter/encryptAES.rb} +0 -0
  124. data/lib/starter_web/_plugins/{filters.rb → filter/filters.rb} +11 -0
  125. data/lib/starter_web/_plugins/{minifyJS.rb → filter/minifyJS.rb} +0 -0
  126. data/lib/starter_web/_plugins/{minifyJSON.rb → filter/minifyJSON.rb} +0 -0
  127. data/lib/starter_web/_plugins/{prettify.rb → filter/prettify.rb} +0 -0
  128. data/lib/starter_web/_plugins/filter/xml_prettify.rb +36 -0
  129. data/lib/starter_web/_plugins/{symlink_watcher.rb → helper/symlink_watcher.rb} +0 -0
  130. data/lib/starter_web/_plugins/{date-i18n.rb → i18n/date.rb} +1 -1
  131. data/lib/starter_web/_plugins/{lunr_index.rb → index/lunr.rb} +38 -35
  132. data/lib/starter_web/_plugins/seo/j1-feed.rb +268 -0
  133. data/lib/starter_web/_plugins/seo/j1-seo-tags.rb +717 -0
  134. data/lib/starter_web/_plugins/seo/j1-sitemap.rb +140 -0
  135. data/lib/starter_web/assets/images/banner/scalable/wave.svg +13 -0
  136. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-1.svg +63 -0
  137. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-2.svg +60 -0
  138. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-3.svg +64 -0
  139. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-4.svg +62 -0
  140. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-1.svg +64 -0
  141. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-2.svg +60 -0
  142. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-3.svg +65 -0
  143. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-4.svg +62 -0
  144. data/lib/starter_web/assets/images/collections/blog/featured/dynamic-web-access.png +0 -0
  145. data/lib/starter_web/assets/images/collections/blog/featured/jamstack-generators.png +0 -0
  146. data/lib/starter_web/assets/images/collections/blog/featured/static-web-access.png +0 -0
  147. data/lib/starter_web/assets/images/icons/jekyll/logo-2x.png +0 -0
  148. data/lib/starter_web/assets/images/icons/jekyll/octojekyll.png +0 -0
  149. data/lib/starter_web/assets/images/modules/attics/1280x800/j1-template.png +0 -0
  150. data/lib/starter_web/assets/images/modules/attics/1280x800/jekyll-generator.png +0 -0
  151. data/lib/starter_web/assets/images/modules/attics/1280x800jekyll-generator.jpg +0 -0
  152. data/lib/starter_web/assets/images/modules/attics/1920x1280/_ben-kolde.jpg +0 -0
  153. data/lib/starter_web/assets/images/modules/attics/1920x1280/_moritz-kindler.jpg +0 -0
  154. data/lib/starter_web/assets/images/modules/attics/1920x1280/alina-grubnyak.jpg +0 -0
  155. data/lib/starter_web/assets/images/modules/attics/1920x1280/andrea-badino.jpg +0 -0
  156. data/lib/starter_web/assets/images/modules/attics/1920x1280/brad-neathery.jpg +0 -0
  157. data/lib/starter_web/assets/images/modules/attics/1920x1280/bruno-figueiredo.jpg +0 -0
  158. data/lib/starter_web/assets/images/modules/attics/1920x1280/fly-d.jpg +0 -0
  159. data/lib/starter_web/assets/images/modules/attics/1920x1280/guillaume-bolduc.jpg +0 -0
  160. data/lib/starter_web/assets/images/modules/attics/1920x1280/melanie-deziel.jpg +0 -0
  161. data/lib/starter_web/assets/images/modules/attics/1920x1280/milad-fakurian.jpg +0 -0
  162. data/lib/starter_web/assets/images/modules/attics/1920x1280/quino-al-2.jpg +0 -0
  163. data/lib/starter_web/assets/images/modules/attics/lunr-1280x800.jpg +0 -0
  164. data/lib/starter_web/assets/images/modules/attics/no-time-1920x1280.jpg +0 -0
  165. data/lib/starter_web/assets/images/modules/gallery/mega_cities/author.txt +75 -0
  166. data/lib/starter_web/assets/images/pages/egrid/bg.png +0 -0
  167. data/lib/starter_web/assets/images/pages/egrid/black_denim.png +0 -0
  168. data/lib/starter_web/assets/images/pages/egrid/explanation.png +0 -0
  169. data/lib/starter_web/assets/images/pages/egrid/html_markup.png +0 -0
  170. data/lib/starter_web/assets/images/pages/egrid/large/1.jpg +0 -0
  171. data/lib/starter_web/assets/images/pages/egrid/large/10.jpg +0 -0
  172. data/lib/starter_web/assets/images/pages/egrid/large/11.jpg +0 -0
  173. data/lib/starter_web/assets/images/pages/egrid/large/12.jpg +0 -0
  174. data/lib/starter_web/assets/images/pages/egrid/large/13.jpg +0 -0
  175. data/lib/starter_web/assets/images/pages/egrid/large/14.jpg +0 -0
  176. data/lib/starter_web/assets/images/pages/egrid/large/15.jpg +0 -0
  177. data/lib/starter_web/assets/images/pages/egrid/large/16.jpg +0 -0
  178. data/lib/starter_web/assets/images/pages/egrid/large/17.jpg +0 -0
  179. data/lib/starter_web/assets/images/pages/egrid/large/18.jpg +0 -0
  180. data/lib/starter_web/assets/images/pages/egrid/large/19.jpg +0 -0
  181. data/lib/starter_web/assets/images/pages/egrid/large/2.jpg +0 -0
  182. data/lib/starter_web/assets/images/pages/egrid/large/20.jpg +0 -0
  183. data/lib/starter_web/assets/images/pages/egrid/large/3.jpg +0 -0
  184. data/lib/starter_web/assets/images/pages/egrid/large/4.jpg +0 -0
  185. data/lib/starter_web/assets/images/pages/egrid/large/5.jpg +0 -0
  186. data/lib/starter_web/assets/images/pages/egrid/large/6.jpg +0 -0
  187. data/lib/starter_web/assets/images/pages/egrid/large/7.jpg +0 -0
  188. data/lib/starter_web/assets/images/pages/egrid/large/8.jpg +0 -0
  189. data/lib/starter_web/assets/images/pages/egrid/large/9.jpg +0 -0
  190. data/lib/starter_web/assets/images/pages/egrid/loading.gif +0 -0
  191. data/lib/starter_web/assets/images/pages/egrid/loading_dark.gif +0 -0
  192. data/lib/starter_web/assets/images/pages/egrid/nav-icon.png +0 -0
  193. data/lib/starter_web/assets/images/pages/egrid/nav.png +0 -0
  194. data/lib/starter_web/assets/images/pages/egrid/small/1.jpg +0 -0
  195. data/lib/starter_web/assets/images/pages/egrid/small/10.jpg +0 -0
  196. data/lib/starter_web/assets/images/pages/egrid/small/11.jpg +0 -0
  197. data/lib/starter_web/assets/images/pages/egrid/small/12.jpg +0 -0
  198. data/lib/starter_web/assets/images/pages/egrid/small/13.jpg +0 -0
  199. data/lib/starter_web/assets/images/pages/egrid/small/14.jpg +0 -0
  200. data/lib/starter_web/assets/images/pages/egrid/small/15.jpg +0 -0
  201. data/lib/starter_web/assets/images/pages/egrid/small/16.jpg +0 -0
  202. data/lib/starter_web/assets/images/pages/egrid/small/17.jpg +0 -0
  203. data/lib/starter_web/assets/images/pages/egrid/small/18.jpg +0 -0
  204. data/lib/starter_web/assets/images/pages/egrid/small/19.jpg +0 -0
  205. data/lib/starter_web/assets/images/pages/egrid/small/1a.jpg +0 -0
  206. data/lib/starter_web/assets/images/pages/egrid/small/2.jpg +0 -0
  207. data/lib/starter_web/assets/images/pages/egrid/small/20.jpg +0 -0
  208. data/lib/starter_web/assets/images/pages/egrid/small/3.jpg +0 -0
  209. data/lib/starter_web/assets/images/pages/egrid/small/4.jpg +0 -0
  210. data/lib/starter_web/assets/images/pages/egrid/small/5.jpg +0 -0
  211. data/lib/starter_web/assets/images/pages/egrid/small/6.jpg +0 -0
  212. data/lib/starter_web/assets/images/pages/egrid/small/7.jpg +0 -0
  213. data/lib/starter_web/assets/images/pages/egrid/small/8.jpg +0 -0
  214. data/lib/starter_web/assets/images/pages/egrid/small/9.jpg +0 -0
  215. data/lib/starter_web/assets/images/pages/roundtrip/500_themes/themes-menu-1280x800.jpg +0 -0
  216. data/lib/starter_web/assets/images/promo/home/screenshot.jpg +0 -0
  217. data/lib/starter_web/assets/images/promo/jekyll/jekyll-generator.png +0 -0
  218. data/lib/starter_web/assets/images/promo/jekyll/jekyll-og.png +0 -0
  219. data/lib/starter_web/collections/asciidoc_skeletons/simple-post/_posts/yyyy-mm-dd-your-post-name.asciidoc +13 -10
  220. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +8 -3
  221. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +11 -6
  222. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-site-generators.adoc +13 -10
  223. data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +12 -9
  224. data/lib/starter_web/collections/posts/public/featured/_posts/_includes/attributes.asciidoc +2 -2
  225. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-01-post-wiki-series.adoc +13 -5
  226. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-02-post-wiki-series.adoc +13 -6
  227. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-03-post-wiki-series.adoc +13 -6
  228. data/lib/starter_web/index.html +85 -60
  229. data/lib/starter_web/package.json +1 -1
  230. data/lib/starter_web/pages/public/about/features.adoc +15 -7
  231. data/lib/starter_web/pages/public/about/reporting_issues.adoc +13 -5
  232. data/lib/starter_web/pages/public/about/site.adoc +2 -6
  233. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +14 -7
  234. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +15 -7
  235. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +14 -6
  236. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/_includes/documents/100_converter/111_about_the_converter.asciidoc +15 -10
  237. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +9 -8
  238. data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +9 -8
  239. data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +9 -8
  240. data/lib/starter_web/pages/public/blog/navigator/{archive.html → archive/allview.html} +53 -26
  241. data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +45 -20
  242. data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +49 -19
  243. data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +57 -53
  244. data/lib/starter_web/pages/public/blog/navigator/index.html +212 -35
  245. data/lib/starter_web/pages/public/features/general.adoc +12 -30
  246. data/lib/starter_web/pages/public/features/template.adoc +9 -33
  247. data/lib/starter_web/pages/public/learn/quickstart.adoc +10 -8
  248. data/lib/starter_web/pages/public/learn/roundtrip/_includes/attributes.asciidoc +0 -7
  249. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/410_table_bs_modal_examples.asciidoc +2 -2
  250. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_bootstrap.asciidoc +51 -0
  251. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_rouge.asciidoc +110 -0
  252. data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +11 -9
  253. data/lib/starter_web/pages/public/learn/roundtrip/bootstrap_themes.adoc +80 -0
  254. data/lib/starter_web/pages/public/learn/roundtrip/icon_fonts.adoc +9 -7
  255. data/lib/starter_web/pages/public/learn/roundtrip/{quicksearch.adoc → lunr_search.adoc} +23 -18
  256. data/lib/starter_web/pages/public/learn/roundtrip/{bs_modals_extentions.adoc → modal_extentions.adoc} +23 -24
  257. data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +12 -11
  258. data/lib/starter_web/pages/public/learn/roundtrip/present_videos.adoc +14 -10
  259. data/lib/starter_web/pages/public/learn/roundtrip/{responsive_tables_extensions.adoc → responsive_tables.adoc} +16 -13
  260. data/lib/starter_web/pages/public/learn/roundtrip/{typography.adoc → template_typography.adoc} +8 -7
  261. data/lib/starter_web/pages/public/learn/where_to_go.adoc +12 -29
  262. data/lib/starter_web/pages/public/legal/de/100_copyright.adoc +1 -1
  263. data/lib/starter_web/pages/public/legal/de/100_impress.adoc +1 -1
  264. data/lib/starter_web/pages/public/legal/de/300_privacy.adoc +1 -1
  265. data/lib/starter_web/pages/public/legal/de/400_comment_policy.adoc +3 -1
  266. data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +7 -5
  267. data/lib/starter_web/pages/public/legal/en/200_impress.adoc +7 -5
  268. data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +7 -5
  269. data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +9 -5
  270. data/lib/starter_web/pages/public/panels/intro_panel/panel.adoc +11 -10
  271. data/lib/starter_web/pages/public/plans/plans.adoc +8 -5
  272. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +15 -38
  273. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  274. data/lib/starter_web/utilsrv/package.json +1 -1
  275. metadata +170 -128
  276. data/_includes/themes/j1/blocks/footer/generator.html +0 -151
  277. data/_includes/themes/j1/layouts/content_generator_app.html +0 -32
  278. data/_includes/themes/j1/layouts/content_generator_article_navigator.html +0 -176
  279. data/_includes/themes/j1/layouts/content_generator_blog_archive.html +0 -251
  280. data/_layouts/app.html +0 -65
  281. data/_layouts/article_navigator.html +0 -66
  282. data/_layouts/blog_archive.html +0 -64
  283. data/assets/data/article_navigator/index.html +0 -51
  284. data/lib/starter_web/_data/layouts/app.yml +0 -172
  285. data/lib/starter_web/_data/layouts/article_navigator.yml +0 -173
  286. data/lib/starter_web/_data/layouts/blog_archive.yml +0 -191
  287. data/lib/starter_web/_includes/custom/static/custom_teaser.html +0 -64
  288. data/lib/starter_web/assets/images/banner/scalable/readme +0 -0
  289. data/lib/starter_web/assets/images/collections/blog/featured/dynamic-web-access.jpg +0 -0
  290. data/lib/starter_web/assets/images/collections/blog/featured/jamstack-generators-2.jpg +0 -0
  291. data/lib/starter_web/assets/images/collections/blog/featured/markus-spiske-2.jpg +0 -0
  292. data/lib/starter_web/assets/images/collections/blog/featured/static-web-access.jpg +0 -0
  293. data/lib/starter_web/assets/images/collections/blog/featured/welcome-to-j1-template.jpg +0 -0
  294. data/lib/starter_web/assets/images/collections/blog/featured/what-is-a-baseurl.jpg +0 -0
  295. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/j1_docker_banner.1280x500.png +0 -0
  296. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/kinematic_alpha.1280x600.png +0 -0
  297. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/kinematic_j1.1280x300.png +0 -0
  298. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/windows_docker_banner.1280x500.png +0 -0
  299. data/lib/starter_web/assets/images/modules/attics/1920x1280/moritz-kindler.jpg +0 -0
  300. data/lib/starter_web/assets/videos/gallery/dailymotion/meditation.jpg +0 -0
  301. data/lib/starter_web/assets/videos/gallery/dailymotion/pilates.jpg +0 -0
  302. data/lib/starter_web/assets/videos/gallery/html5/video1.mp4 +0 -0
  303. data/lib/starter_web/assets/videos/gallery/html5/video2.mp4 +0 -0
  304. data/lib/starter_web/assets/videos/gallery/kick-it-old-school-poster.jpg +0 -0
  305. data/lib/starter_web/assets/videos/gallery/nye-party-shop-poster.jpg +0 -0
  306. data/lib/starter_web/assets/videos/gallery/stay-colorful-poster.jpg +0 -0
  307. data/lib/starter_web/assets/videos/gallery/video1-poster.jpg +0 -0
  308. data/lib/starter_web/assets/videos/gallery/video1-thumb.jpg +0 -0
  309. data/lib/starter_web/assets/videos/gallery/video2-poster.jpg +0 -0
  310. data/lib/starter_web/assets/videos/gallery/video2-thumb.jpg +0 -0
  311. data/lib/starter_web/assets/videos/gallery/video_adele-poster.jpg +0 -0
  312. data/lib/starter_web/assets/videos/gallery/video_gaga-poster.jpg +0 -0
  313. data/lib/starter_web/assets/videos/gallery/video_gwen-poster.jpg +0 -0
  314. data/lib/starter_web/assets/videos/gallery/video_michelle-poster.jpg +0 -0
  315. data/lib/starter_web/assets/videos/gallery/vk/hai.jpg +0 -0
  316. data/lib/starter_web/assets/videos/gallery/vk/otter.jpg +0 -0
  317. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/battle.jpg +0 -0
  318. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/ben.jpg +0 -0
  319. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/constance.jpg +0 -0
  320. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/elisa.jpg +0 -0
  321. data/lib/starter_web/assets/videos/headers/present_videos/still/underground-broadway.jpg +0 -0
  322. data/lib/starter_web/assets/videos/headers/present_videos/underground-broadway.mp4 +0 -0
  323. data/lib/starter_web/assets/videos/tiktok/einhorn.jpg +0 -0
  324. data/lib/starter_web/assets/videos/tiktok/waluschka.jpg +0 -0
  325. data/lib/starter_web/pages/public/jupyter/examples/distributed/j1-circular-times-table.adoc +0 -142
  326. data/lib/starter_web/pages/public/jupyter/examples/distributed/j1-common-used-widgets.adoc +0 -232
  327. data/lib/starter_web/pages/public/jupyter/examples/distributed/j1-odes-in-python.adoc +0 -115
  328. data/lib/starter_web/pages/public/jupyter/examples/localized/j1_climate-change-forecast.adoc +0 -109
  329. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_circular_times_table.ipynb +0 -12382
  330. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_climate_change_forecast.ipynb +0 -1058
  331. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_docs_example_dynamic.ipynb +0 -14478
  332. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_interactive_widgets.ipynb +0 -442
  333. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets.ipynb +0 -523
  334. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_bar_chart.ipynb +0 -89
  335. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_hist_chart.ipynb +0 -87
  336. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_line_chart.ipynb +0 -90
  337. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_question_multiple_choice.ipynb +0 -64
  338. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_question_short_answer.ipynb +0 -122
  339. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_scatter_chart.ipynb +0 -89
  340. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_scatter_drag_chart.ipynb +0 -87
  341. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_odes_in_python.ipynb +0 -15227
  342. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_circular_times_table.html +0 -747
  343. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_climate_change_forecast.html +0 -1250
  344. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_docs_example_dynamic.html +0 -186
  345. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_interactive_widgets.html +0 -512
  346. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets.html +0 -629
  347. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_bar_chart.html +0 -95
  348. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_hist_chart.html +0 -93
  349. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_line_chart.html +0 -96
  350. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_question_multiple_choice.html +0 -70
  351. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_question_short_answer.html +0 -156
  352. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_scatter_chart.html +0 -95
  353. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_scatter_drag_chart.html +0 -93
  354. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_odes_in_python.html +0 -955
  355. data/lib/starter_web/pages/public/jupyter/where_to_go.adoc +0 -232
  356. data/lib/starter_web/pages/public/learn/roundtrip/_includes/google-ad.js +0 -130
  357. data/lib/starter_web/pages/public/learn/roundtrip/themes.adoc +0 -253
  358. data/lib/starter_web/pages/public/se/se-fake.adoc +0 -48
@@ -10,8 +10,6 @@
10
10
  # J1 Template is licensed under the MIT License.
11
11
  # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
12
12
  # ------------------------------------------------------------------------------
13
- # WARNING: This configuration can only be used for Ruby V3
14
- # ------------------------------------------------------------------------------
15
13
 
16
14
  # ==============================================================================
17
15
  # 1. BUILD configuration
@@ -53,16 +51,17 @@ environment: development
53
51
 
54
52
  # version
55
53
  # ------------------------------------------------------------------------------
56
- # Sets the build version of J1 Template Gem
54
+ # Sets the build version of J1 Template Gem
57
55
  #
58
- version: 2022.5.2
56
+ version: 2022.6.0
59
57
 
60
58
  # version
61
59
  # ------------------------------------------------------------------------------
62
- # Sets the build version of J1 Template
60
+ # Sets the build version of J1 Template
63
61
  #
64
62
  copyright: © 2022 J1 · All rights reserved
65
63
 
64
+
66
65
  # ==============================================================================
67
66
  # 2. THEME configuration
68
67
  #
@@ -78,16 +77,16 @@ copyright: © 2022 J1 · All rights reserved
78
77
  #
79
78
  # theme
80
79
  # ------------------------------------------------------------------------------
81
- # Sets the name of the (gem-based) theme used for Jekyll
82
- # serve and build
80
+ # Sets the name of the (gem-based) theme used for Jekyll
81
+ # serve and build
83
82
  #
84
83
  theme: j1-template
85
84
 
86
85
  # ------------------------------------------------------------------------------
87
- # J1 Template configuration
88
- # Sets J1 Template specific configurations
86
+ # J1 Template configuration
87
+ # Sets J1 Template specific configurations
89
88
  #
90
- # Note:
89
+ # NOTE:
91
90
  # Parameter "theme" is used by Jekyll >= 3.2.0 for gem-based
92
91
  # templates. For that reason, the configuration parameter for
93
92
  # the J1 Template was changed to "template" to not conflict with
@@ -95,19 +94,19 @@ theme: j1-template
95
94
  #
96
95
  # template.name
97
96
  # ------------------------------------------------------------------------------
98
- # Sets the theme "path" of J1 Template for the ~/assets/themes
99
- # folder. To not conflict with other template systems, all
100
- # template assets for J1 Template are stored under the default
101
- # path "/assets/themes/j1".
97
+ # Sets the theme "path" of J1 Template for the ~/assets/themes
98
+ # folder. To not conflict with other template systems, all
99
+ # template assets for J1 Template are stored under the default
100
+ # path "/assets/themes/j1".
102
101
  #
103
- # Note:
102
+ # NOTE:
104
103
  # Do NOT change template.name to other values.
105
104
  #
106
105
  # default: j1
107
106
  #
108
107
  # template.config
109
108
  # ------------------------------------------------------------------------------
110
- # Sets the name of the J1 Template configuration file
109
+ # Sets the name of the J1 Template configuration file
111
110
  #
112
111
  # default: j1_config
113
112
  #
@@ -115,6 +114,7 @@ template:
115
114
  name: j1
116
115
  config: j1_config
117
116
 
117
+
118
118
  # ==============================================================================
119
119
  # 3. SITE configuration
120
120
  #
@@ -124,13 +124,13 @@ template:
124
124
  #
125
125
  # language
126
126
  # ------------------------------------------------------------------------------
127
- # Sets the language used by the website. The parameter language
128
- # is used by Content-Language entity-header field (meta tag )
129
- # that describes the natural language(s) of the intended audience
130
- # for the enclosed entity. This might helpful for robots|search
131
- # engines.
127
+ # Sets the language used by the website. The parameter language
128
+ # is used by Content-Language entity-header field (meta tag )
129
+ # that describes the natural language(s) of the intended audience
130
+ # for the enclosed entity. This might helpful for robots|search
131
+ # engines.
132
132
  #
133
- # Note:
133
+ # NOTE:
134
134
  # This might not be equivalent to all the languages used within
135
135
  # the entity-body of the website but should describe the language
136
136
  # the language the site is using "overall".
@@ -142,16 +142,16 @@ template:
142
142
  #
143
143
  # coding
144
144
  # ------------------------------------------------------------------------------
145
- # Sets the content coding scheme (character encoding for the
146
- # HTML documents) of the website. Used for the meta tag "charset".
145
+ # Sets the content coding scheme (character encoding for the
146
+ # HTML documents) of the website. Used for the meta tag "charset".
147
147
  #
148
148
  # values: charset
149
149
  # default: UTF-8
150
150
  #
151
151
  # doctype
152
152
  # ------------------------------------------------------------------------------
153
- # Sets the HTML standard of the website. J1 template is using
154
- # HTML5, therefor the doctype is: <!DOCTYPE html>
153
+ # Sets the HTML standard of the website. J1 template is using
154
+ # HTML5, therefor the doctype is: <!DOCTYPE html>
155
155
  #
156
156
  # values: HTML doc types
157
157
  # default: html
@@ -166,35 +166,35 @@ doctype: html
166
166
 
167
167
  # title
168
168
  # ------------------------------------------------------------------------------
169
- # Sets the ...
169
+ # Sets the ...
170
170
  #
171
171
  # values: string
172
172
  # default: no default
173
173
  #
174
174
  # slogan
175
175
  # ------------------------------------------------------------------------------
176
- # Sets the <title> tag within the <head> section.
176
+ # Sets the <title> tag within the <head> section.
177
177
  #
178
178
  # values: string
179
179
  # default: no default
180
180
  #
181
181
  # description
182
182
  # ------------------------------------------------------------------------------
183
- # Sets the meta tag for "description"
183
+ # Sets the meta tag for "description"
184
184
  #
185
185
  # values: string
186
186
  # default: no default
187
187
  #
188
188
  # keywords
189
189
  # ------------------------------------------------------------------------------
190
- # Sets the meta tag for "keywords"
190
+ # Sets the meta tag for "keywords"
191
191
  #
192
192
  # values: string (comma separated)
193
193
  # default: no default
194
194
  #
195
195
  # author.name
196
196
  # ------------------------------------------------------------------------------
197
- # Sets the meta tag for "author"
197
+ # Sets the meta tag for "author"
198
198
  #
199
199
  # values: string (comma separated)
200
200
  # default: no default
@@ -206,21 +206,22 @@ doctype: html
206
206
  # is set to "noindex", if set to "true" the tag is set to
207
207
  # "index"
208
208
  #
209
- # values: boolean (true|false)
210
- # default: false
209
+ # values: boolean (true|false)
210
+ # default: false
211
211
  #
212
212
  # robots.follow
213
213
  # ------------------------------------------------------------------------------
214
- # Controls spider|robots of search engines. Sets the meta
215
- # tag for "robots". If set to "false", the meta tag robots
216
- # is set to "nofollow", if set to "true" the tag is set to
217
- # "follow".
214
+ # Controls spider|robots of search engines. Sets the meta
215
+ # tag for "robots". If set to "false", the meta tag robots
216
+ # is set to "nofollow", if set to "true" the tag is set to
217
+ # "follow".
218
218
  #
219
219
  # values: boolean (true|false)
220
220
  # default: false
221
+ # ------------------------------------------------------------------------------
221
222
  #
222
223
  title: Jekyll One
223
- slogan: j1 template starter web
224
+ slogan: template for jekyll
224
225
  description: >
225
226
  Made for Jekyll · Made for Your Web
226
227
  keywords: >
@@ -243,13 +244,6 @@ keywords: >
243
244
  google, analytics, advertising, search, console, silverlight, score,
244
245
  j1, template, jekyllone, comment
245
246
 
246
- author:
247
- name: Juergen Adams
248
- email: juergen@jekyll.one
249
- github: username
250
- twitter: username
251
- feedburner: feedname
252
-
253
247
  webmaster:
254
248
  email: webmaster@jekyll.one
255
249
 
@@ -277,6 +271,7 @@ favicon:
277
271
  image: icons/j1/j1-32x32.ico
278
272
  type: image/ico
279
273
 
274
+
280
275
  # ==============================================================================
281
276
  # 4. JEKYLL specific site configuration
282
277
  #
@@ -304,22 +299,26 @@ favicon:
304
299
  # for best support of various Web Servers with NO addtional
305
300
  # configuration needed.
306
301
  #
307
- # Note: The build-in Web server Ruby "Webrick" for Jekyll support
302
+ # NOTE: The build-in Web server Ruby "Webrick" for Jekyll support
308
303
  # pretty "links" out of the box. If other web servers are used to
309
304
  # serve the Web like Apache or Nginx, "extensionless" URLs are to
310
305
  # be enabled for those. See https://jekyllrb.com/docs/permalinks/
311
306
  # for more details.
312
307
  #
313
- # Note: For development, respectively "live-reload" functionality,
314
- # webpack-dev-server is used. The build-in Web server "Express"
315
- # for Webpack does *NOT* support "pretty links" out of the box.
308
+ # NOTE:
309
+ # For development, respectively "live-reload" functionality,
310
+ # webpack-dev-server is used. The build-in Web server "Express"
311
+ # for Webpack does *NOT* support "pretty links" out of the box.
312
+ #
313
+ # NOTE:
314
+ # The permalink style can individualy configured by
315
+ # frontmatter variables. It is highly recommended to use a
316
+ # "pretty style" for individual permalinks as well. For that
317
+ # reason, the permalink should always have a trailing backslash.
316
318
  #
317
- # Note: The permalink style can individualy configured by
318
- # frontmatter variables. It is highly recommended to use a
319
- # "pretty style" for individual permalinks as well. For that
320
- # reason, the permalink should always have a trailing backslash.
319
+ # See: https://jekyllrb.com/docs/permalinks/#template-variables
321
320
  #
322
- # See: https://jekyllrb.com/docs/permalinks/#template-variables
321
+ # ------------------------------------------------------------------------------
323
322
  #
324
323
  permalink: pretty
325
324
 
@@ -407,7 +406,8 @@ strict_front_matter: false
407
406
  # ------------------------------------------------------------------------------
408
407
  # SASS conversion options
409
408
  #
410
- # style, possible values: compact|compressed|expanded|nested
409
+ # Sets the style of the generate CSS file.
410
+ # Possible values: compact|compressed|expanded|nested
411
411
  #
412
412
  sass:
413
413
  sass_dir: _sass/scss
@@ -416,15 +416,16 @@ sass:
416
416
  # ------------------------------------------------------------------------------
417
417
  # WEBRICK Customizations
418
418
  # You can provide custom headers for your site
419
+ #
419
420
  # See: https://jekyllrb.com/docs/configuration/webrick/
420
421
  # https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
421
422
  #
422
423
  # NOTE:
423
- # Jekyll provides by default Content-Type and Cache-Control
424
- # response headers: one dynamic in order to specify the nature of
425
- # the data being served, the other static in order to disable
426
- # caching so that you don’t have to fight with Chrome’s aggressive
427
- # caching when you are in development mode.
424
+ # Jekyll provides by default Content-Type and Cache-Control
425
+ # response headers: one dynamic in order to specify the nature of
426
+ # the data being served, the other static in order to disable
427
+ # caching so that you don’t have to fight with Chrome’s aggressive
428
+ # caching when you are in development mode.
428
429
  #
429
430
  # webrick:
430
431
  # headers:
@@ -453,32 +454,12 @@ limit_posts: 1000000
453
454
  liquid:
454
455
  error_mode: warn
455
456
 
456
- # ------------------------------------------------------------------------------
457
- # PLUGIN configuration
458
- #
459
- plugins:
460
- # - algolia
461
- - asciidoctor
462
- # - asciidoctor-pdf
463
- - jekyll-asciidoc
464
- # - jekyll-feed
465
- # - jekyll-gist
466
- # - jekyll-redirect-from
467
- # - jekyll-sass-converter
468
- - jekyll-sitemap
469
- - j1-paginator
470
-
471
- # ------------------------------------------------------------------------------
472
- # JEKYLL FEED
473
- #
474
- # feed:
475
- # path: /assets/data/atom.xml
476
-
477
457
  # ------------------------------------------------------------------------------
478
458
  # MARKDOWN
479
459
  #
480
- # Note:
481
- # Option input/GFM turns on the recognition of Github Flavoured Markdown (GFM)
460
+ # NOTE:
461
+ # Option input/GFM turns on the recognition of Github Flavoured
462
+ # Markdown (GFM)
482
463
  #
483
464
  markdown: kramdown
484
465
  markdown_ext: markdown,md
@@ -492,6 +473,29 @@ kramdown:
492
473
  smart_quotes: lsquo,rsquo,ldquo,rdquo
493
474
  syntax_highlighter: rouge
494
475
 
476
+ # ------------------------------------------------------------------------------
477
+ # PLUGIN configuration
478
+ #
479
+ plugins:
480
+ # - algolia
481
+ - asciidoctor
482
+ # - asciidoctor-pdf
483
+ - jekyll-asciidoc
484
+ # - jekyll-gist
485
+ # - jekyll-redirect-from
486
+ # - jekyll-sass-converter
487
+
488
+ # ------------------------------------------------------------------------------
489
+ # ALGOLIA Search (Instantsearch)
490
+ #
491
+ algolia:
492
+ enabled: false
493
+ application_id: your_application_id
494
+ search_only_api_key: your_searchonly_api_key
495
+ index_name: your_index_name
496
+ extensions_to_index: [ adoc ]
497
+ files_to_exclude: []
498
+
495
499
  # ------------------------------------------------------------------------------
496
500
  # ASCIIDOCTOR (Asciidoc plugin)
497
501
  #
@@ -501,7 +505,7 @@ asciidoc_attributes: &asciidoc_attributes
501
505
  icons: font
502
506
  imagesdir: /assets/images
503
507
  iconsdir: '{imagesdir}/icons/asciidoc'
504
- # experimental: true # enable the UI macros, e.g kbd:[], for Asciidoctor globally
508
+ experimental: true # enable the UI macros, e.g kbd:[], for Asciidoctor globally
505
509
 
506
510
  asciidoc:
507
511
  processor: asciidoctor
@@ -513,17 +517,6 @@ asciidoctor:
513
517
  template_dir: _templates
514
518
  attributes: *asciidoc_attributes
515
519
 
516
- # ------------------------------------------------------------------------------
517
- # ALGOLIA Search (Instantsearch)
518
- #
519
- algolia:
520
- enabled: false
521
- application_id: your_application_id
522
- search_only_api_key: your_searchonly_api_key
523
- index_name: your_index_name
524
- extensions_to_index: [ adoc ]
525
- files_to_exclude: []
526
-
527
520
  # ------------------------------------------------------------------------------
528
521
  # SAFEMODE
529
522
  #
@@ -533,8 +526,48 @@ algolia:
533
526
  whitelist:
534
527
  - jekyll-asciidoc
535
528
 
529
+
536
530
  # ==============================================================================
537
- # 5. PAGE configuration
531
+ # 5. SEO ans Social Media settings (gloal)
532
+ #
533
+ # ------------------------------------------------------------------------------
534
+ #
535
+ author:
536
+ name: Juergen Adams
537
+ url: https://jekyll.one/
538
+ email: jadams@web.de
539
+ github:
540
+ facebook:
541
+ twitter:
542
+ feedburner:
543
+
544
+
545
+ logo: /assets/images/icons/j1/j1-512x512.png
546
+
547
+ image:
548
+ path: /assets/images/promo/home/screenshot.jpg
549
+ width: 1200
550
+ height: 800
551
+ alt: J1 Template Home
552
+
553
+ twitter:
554
+ username:
555
+
556
+ facebook:
557
+ author:
558
+ publisher:
559
+ app_id:
560
+ admins:
561
+
562
+ webmaster_verifications:
563
+ facebook:
564
+ google:
565
+ bing:
566
+ yandex:
567
+
568
+
569
+ # ==============================================================================
570
+ # 6. PAGE configuration
538
571
  #
539
572
  # ------------------------------------------------------------------------------
540
573
  #
@@ -547,7 +580,6 @@ excerpt_truncate_words: 100
547
580
  # ------------------------------------------------------------------------------
548
581
  # FRONTMATTER defaults
549
582
  #
550
-
551
583
  # Using the YAML Front Matter is a way the (individual) configuration
552
584
  # for post and pages can be specified. Very often, a lot of config
553
585
  # options are repeated on each and every post or page. Setting the
@@ -587,9 +619,19 @@ defaults:
587
619
 
588
620
  values:
589
621
  layout: page
590
- author: J1 Team
591
622
  compress: true
592
623
 
624
+ author:
625
+ name: Juergen Adams
626
+ url: https://jekyll.one/
627
+
628
+ logo: /assets/images/icons/j1/j1-512x512.png
629
+ image:
630
+ path: /assets/images/promo/home/screenshot.jpg
631
+ width: 1200
632
+ height: 800
633
+ alt: J1 Template Home
634
+
593
635
  robots:
594
636
  index: true
595
637
  follow: true
@@ -629,9 +671,19 @@ defaults:
629
671
 
630
672
  values:
631
673
  layout: post
632
- author: J1 Team
633
674
  compress: true
634
675
 
676
+ author:
677
+ name: Juergen Adams
678
+ url: https://jekyll.one/
679
+
680
+ logo: /assets/images/icons/j1/j1-512x512.png
681
+ image:
682
+ path: /assets/images/promo/home/screenshot.jpg
683
+ width: 1200
684
+ height: 800
685
+ alt: J1 Template Home
686
+
635
687
  robots:
636
688
  index: true
637
689
  follow: true
@@ -657,9 +709,19 @@ defaults:
657
709
 
658
710
  values:
659
711
  layout: post
660
- author: J1 Team
661
712
  compress: true
662
713
 
714
+ author:
715
+ name: Juergen Adams
716
+ url: https://jekyll.one/
717
+
718
+ logo: /assets/images/icons/j1/j1-512x512.png
719
+ image:
720
+ path: /assets/images/promo/home/screenshot.jpg
721
+ width: 1200
722
+ height: 800
723
+ alt: J1 Template Home
724
+
663
725
  robots:
664
726
  index: true
665
727
  follow: true
@@ -675,8 +737,9 @@ defaults:
675
737
  - toccer:
676
738
  collapseDepth: 3
677
739
 
740
+
678
741
  # ==============================================================================
679
- # 6. LAYOUT configuration
742
+ # 7. LAYOUT configuration
680
743
  #
681
744
  # ------------------------------------------------------------------------------
682
745
  #
@@ -685,61 +748,62 @@ defaults:
685
748
  #
686
749
  # enabled
687
750
  # ------------------------------------------------------------------------------
688
- # Enables|Disables the use of compress.
689
- # If enabled, all HTML pages generated for ALL layout
690
- # get compressed for production. To use compress, set
691
- # the ENVIRONMENT to production and the value of
692
- # compress_html.enable to "true".
751
+ # Enables|Disables the use of compress.
752
+ # If enabled, all HTML pages generated for ALL layout
753
+ # get compressed for production. To use compress, set
754
+ # the ENVIRONMENT to production and the value of
755
+ # compress_html.enable to "true".
693
756
  #
694
- # See http://jch.penibelst.de/ for more details.
757
+ # See http://jch.penibelst.de/ for more details.
695
758
  #
696
759
  # values: boolean (true|false)
697
760
  # default: false
698
761
  #
699
762
  # profile
700
763
  # ------------------------------------------------------------------------------
701
- # A boolean value to turn on the profile mode. If true, the
702
- # layout creates a HTML table after the compressed content. The
703
- # table contains the file size in bytes during the compressing
704
- # steps.
764
+ # A boolean value to turn on the profile mode. If true, the
765
+ # layout creates a HTML table after the compressed content. The
766
+ # table contains the file size in bytes during the compressing
767
+ # steps.
705
768
  #
706
- # The profile table provides attributes for styling and reading.
707
- # The id ends with build’s timestamp to be unique enough.
769
+ # The profile table provides attributes for styling and reading.
770
+ # The id ends with build’s timestamp to be unique enough.
708
771
  #
709
772
  # <table
710
773
  # id="compress_html_profile_YYYYMMDD"
711
774
  # class="compress_html_profile"
712
775
  # >
713
776
  #
714
- # This page itself is compressed in profile mode for analysis,
715
- # testing or educational purposes only. The table written to
716
- # the end of a page.
777
+ # This page itself is compressed in profile mode for analysis,
778
+ # testing or educational purposes only. The table written to
779
+ # the end of a page.
717
780
  #
718
- # NOTE: Never profile pages for public use.
781
+ # NOTE:
782
+ # Never profile pages for public use.
719
783
  #
720
784
  # values: boolean (true|false)
721
785
  # default: false
722
786
  #
723
787
  # blanklines
724
788
  # ------------------------------------------------------------------------------
725
- # A boolean value to turn on blanklines mode. This mode will
726
- # only remove lines consisting of whitespace and leave other
727
- # lines alone.
789
+ # A boolean value to turn on blanklines mode. This mode will
790
+ # only remove lines consisting of whitespace and leave other
791
+ # lines alone.
728
792
  #
729
793
  # values: boolean (true|false)
730
794
  # default: false
731
795
  #
732
796
  # clippings
733
797
  # ------------------------------------------------------------------------------
734
- # An array of elements to clip whitespace around them. The
735
- # following elements may be safe to clip:
798
+ # An array of elements to clip whitespace around them. The
799
+ # following elements may be safe to clip:
736
800
  #
737
801
  # - Metadata
738
802
  # - Sections
739
803
  # - Grouping content (except the pre element)
740
804
  # - Tabular data
741
805
  #
742
- # Use the shortcut all to clip all safe elements.
806
+ # Use the shortcut all to clip all safe elements.
743
807
  #
744
808
  # Example:
745
809
  #
@@ -750,9 +814,9 @@ defaults:
750
814
  #
751
815
  # comments
752
816
  # ------------------------------------------------------------------------------
753
- # An array of exactly two comment tags to strip comments
754
- # enclosed by them. The first string must be the start tag,
755
- # the second must be the end tag.
817
+ # An array of exactly two comment tags to strip comments
818
+ # enclosed by them. The first string must be the start tag,
819
+ # the second must be the end tag.
756
820
  #
757
821
  # Example:
758
822
  #
@@ -763,8 +827,8 @@ defaults:
763
827
  #
764
828
  # startings
765
829
  # ------------------------------------------------------------------------------
766
- # An array of elements with optional start tags. These start
767
- # tags will be >>removed<<.
830
+ # An array of elements with optional start tags. These start
831
+ # tags will be >>removed<<.
768
832
  #
769
833
  # Example:
770
834
  #
@@ -775,9 +839,9 @@ defaults:
775
839
  #
776
840
  # endings
777
841
  # ------------------------------------------------------------------------------
778
- # An array of elements with optional end tags. These end tags
779
- # will be >>removed<<. Use the shortcut all to remove all
780
- # optional endings.
842
+ # An array of elements with optional end tags. These end tags
843
+ # will be >>removed<<. Use the shortcut all to remove all
844
+ # optional endings.
781
845
  #
782
846
  # Example:
783
847
  #
@@ -788,10 +852,10 @@ defaults:
788
852
  #
789
853
  # ignore.envs
790
854
  # ------------------------------------------------------------------------------
791
- # An array of environments given by ENV["JEKYLL_ENV"]
792
- # where the compress layout is IGNORED. This is useful
793
- # while developing a website the content should NOT
794
- # compressed.
855
+ # An array of environments given by ENV["JEKYLL_ENV"]
856
+ # where the compress layout is IGNORED. This is useful
857
+ # while developing a website the content should NOT
858
+ # compressed.
795
859
  #
796
860
  # Example:
797
861
  #
@@ -75,7 +75,23 @@ settings:
75
75
  type: teaser
76
76
  badges: false
77
77
  icon_family: MDI
78
- properties: mt-3 mb-5
78
+ properties: mb-5
79
+
80
+ wave:
81
+ top:
82
+ enabled: false
83
+ height: 3 # [1 .. 9]
84
+ style: wave-1 # default
85
+ color: "#dcdcdc"
86
+ background_color: "#f5f5f5"
87
+ transform: false # false or rotate|flip-x|flip-y and combinations
88
+ bottom:
89
+ enabled: false
90
+ height: 3
91
+ style: wave-4
92
+ color: "#dcdcdc"
93
+ background_color: "#f5f5f5"
94
+ transform: rotate
79
95
 
80
96
  cards:
81
97
 
@@ -113,7 +129,7 @@ settings:
113
129
  # id: new-version
114
130
  # image: /assets/images/sticker/600x600/sticker-new-version.png
115
131
  # size: 200
116
- # title: Get new version 2022.5.2
132
+ # title: Get new version 2022.6.0
117
133
  # style: "width: 140px; height: 120px;"
118
134
  # href: "https://rubygems.org/gems/j1-template"
119
135
  # target: blank
@@ -36,8 +36,10 @@ defaults:
36
36
  # FOOTER properties
37
37
  #
38
38
  footer:
39
- id: default-footer
40
39
  enabled: true
40
+ id: default-footer
41
+ wave: false
42
+ wave_color: "#212121"
41
43
  comment: Default Footer
42
44
  theme: footer-light-theme
43
45