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
data/_layouts/app.html DELETED
@@ -1,65 +0,0 @@
1
- ---
2
- layout: default # base layout the page inherits GLOBAL content
3
- debug: false # enable|disable additional debug information written to (static) content source
4
- ---
5
-
6
- {% comment %}
7
- # -----------------------------------------------------------------------------
8
- # ~/_layouts/app.html
9
- # Liquid layout template for all pages of content-type APP
10
- #
11
- # Product/Info:
12
- # https://jekyll.one
13
- #
14
- # Copyright (C) 2022 Juergen Adams
15
- #
16
- # J1 Template is licensed under the MIT License.
17
- # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
18
- #
19
- # -----------------------------------------------------------------------------
20
- # NOTE:
21
- # This is the layout for all content pages of type APP.
22
- # Layout APP is based on layout BASE to inherit all (HTML) data.
23
- # -----------------------------------------------------------------------------
24
- # NOTE:
25
- # Do NOT add any CONTENT here.
26
- # For J1 template, Liquid procedures are being used intensively. To load
27
- # HTML data for a region (lane), the (Liquid) procedure "content_writer"
28
- # places the components specified in the connected YAML data file
29
- # 'app.yml' located in folder: ~/_data/layouts.
30
- # -----------------------------------------------------------------------------
31
- # Test data:
32
- # liquid_var: {{ liquid_var | debug }}
33
- #
34
- # -----------------------------------------------------------------------------
35
- {% endcomment %}
36
-
37
- {% comment %} Liquid procedures
38
- -------------------------------------------------------------------------------- {% endcomment %}
39
- {% capture default_writer %}themes/{{site.template.name}}/procedures/layouts/default_writer.proc{% endcapture %}
40
- {% capture content_writer %}themes/{{site.template.name}}/procedures/layouts/content_writer.proc{% endcapture %}
41
-
42
- {% comment %} Variables
43
- -------------------------------------------------------------------------------- {% endcomment %}
44
- {% assign lanes_collate = site.data.layouts.app.lanes %}
45
-
46
-
47
- {% comment %} Main
48
- -------------------------------------------------------------------------------- {% endcomment %}
49
-
50
- {% comment %} Collect the BODY-HEADER region
51
- ------------------------------------------------------------------------------ {% endcomment %}
52
-
53
- <!-- [INFO ] [j1.layout.app.html ] [ call default_writer for region: 'body-header' ] -->
54
- <header id="header">
55
- {% include {{default_writer}} region='body-header' items=lanes_collate %}
56
- </header>
57
- <!-- [INFO ] [j1.layout.app.html ] [ end processing default_writer for region: 'body-header' ] -->
58
-
59
- {% comment %} Collect the BODY-MAIN region
60
- ------------------------------------------------------------------------------ {% endcomment %}
61
- <!-- [INFO ] [j1.layout.app.html ] [ call content_writer for region: 'body-main' ] -->
62
- <div class="row">
63
- {% include {{content_writer}} region='body-main' items=lanes_collate %}
64
- </div>
65
- <!-- [INFO ] [j1.layout.app.html ] [end processing content_writer for region: 'body-main' ] -->
@@ -1,66 +0,0 @@
1
- ---
2
- layout: default # base layout the page inherits GLOBAL content
3
- debug: false # enable|disable additional debug information written to (static) content source
4
- ---
5
-
6
- {% comment %}
7
- # -----------------------------------------------------------------------------
8
- # ~/_layouts/article_navigator.html
9
- # Liquid layout template for all pages of content-type article_navigator
10
- # (used by ~/assets/data/article_navigator/index.html)
11
- #
12
- # Product/Info:
13
- # https://jekyll.one
14
- #
15
- # Copyright (C) 2022 Juergen Adams
16
- #
17
- # J1 Template is licensed under the MIT License.
18
- # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
19
- #
20
- # -----------------------------------------------------------------------------
21
- # NOTE:
22
- # This is the layout for the generator page of type BLOG ARCHIVE NAVIGATOR.
23
- # -----------------------------------------------------------------------------
24
- # NOTE:
25
- # Do NOT add any CONTENT here.
26
- # For J1 template, Liquid procedures are being used intensively. To load
27
- # HTML data for a region (lane), the (Liquid) procedure "content_writer"
28
- # places the components specified in the connected YAML data file
29
- # 'article_navigator.yml' located in folder: ~/_data/layouts.
30
- # -----------------------------------------------------------------------------
31
- # Test data:
32
- # {{ lanes_collate | debug }}
33
- #
34
- # -----------------------------------------------------------------------------
35
- {% endcomment %}
36
-
37
- {% comment %} Liquid procedures
38
- -------------------------------------------------------------------------------- {% endcomment %}
39
- {% capture default_writer %}themes/{{site.template.name}}/procedures/layouts/default_writer.proc{% endcapture %}
40
- {% capture content_writer %}themes/{{site.template.name}}/procedures/layouts/content_writer.proc{% endcapture %}
41
-
42
- {% comment %} Variables
43
- -------------------------------------------------------------------------------- {% endcomment %}
44
- {% assign lanes_collate = site.data.layouts.news_panel_posts.lanes %}
45
-
46
-
47
- {% comment %} Main
48
- -------------------------------------------------------------------------------- {% endcomment %}
49
-
50
- {% comment %} Collect the BODY-BANNER region
51
- ------------------------------------------------------------------------------ {% endcomment %}
52
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ call default_writer for region: 'body-header' ] -->
53
- <header id="header">
54
- {% include {{default_writer}} region='body-header' items=lanes_collate %}
55
- </header>
56
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ end processing default_writer for region: 'body-header' ] -->
57
-
58
-
59
- {% comment %} Collect the BODY-CONTENT region
60
- ------------------------------------------------------------------------------ {% endcomment %}
61
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ call default_writer for region: 'body-content' ] -->
62
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ padding-right set dynamically by core/js/ssm.js ] -->
63
- <div id="content" class="container">
64
- {% include {{content_writer}} region='body-main' items=lanes_collate %}
65
- </div>
66
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ end processing default_writer for region: 'body-content' ] -->
@@ -1,64 +0,0 @@
1
- ---
2
- layout: default # base layout the page inherits GLOBAL content
3
- debug: false # enable|disable additional debug information written to (static) content source
4
- ---
5
-
6
- {% comment %}
7
- # -----------------------------------------------------------------------------
8
- # ~/_layouts/blog_archive.html
9
- # Liquid layout template for all pages of content-type BLOG ARCHIVE
10
- #
11
- # Product/Info:
12
- # https://jekyll.one
13
- #
14
- # Copyright (C) 2022 Juergen Adams
15
- #
16
- # J1 Template is licensed under the MIT License.
17
- # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
18
- #
19
- # -----------------------------------------------------------------------------
20
- # NOTE:
21
- # This is the layout for the generator page of type BLOG ARCHIVE NAVIGATOR.
22
- # -----------------------------------------------------------------------------
23
- # NOTE:
24
- # Do NOT add any CONTENT here.
25
- # For J1 template, Liquid procedures are being used intensively. To load
26
- # HTML data for a region (lane), the (Liquid) procedure "content_writer"
27
- # places the components specified in the connected YAML data file
28
- # 'blog_archive.yml' located in folder: ~/_data/layouts.
29
- # -----------------------------------------------------------------------------
30
- # Test data:
31
- # {{ lanes_collate | debug }}
32
- #
33
- # -----------------------------------------------------------------------------
34
- {% endcomment %}
35
-
36
- {% comment %} Liquid procedures
37
- -------------------------------------------------------------------------------- {% endcomment %}
38
- {% capture default_writer %}themes/{{site.template.name}}/procedures/layouts/default_writer.proc{% endcapture %}
39
- {% capture content_writer %}themes/{{site.template.name}}/procedures/layouts/content_writer.proc{% endcapture %}
40
-
41
- {% comment %} Variables
42
- -------------------------------------------------------------------------------- {% endcomment %}
43
- {% assign lanes_collate = site.data.layouts.blog_archive.lanes %}
44
-
45
-
46
- {% comment %} Main
47
- -------------------------------------------------------------------------------- {% endcomment %}
48
-
49
- {% comment %} Collect the BODY-BANNER region
50
- ------------------------------------------------------------------------------ {% endcomment %}
51
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ call default_writer for region: 'body-header' ] -->
52
- <header id="header">
53
- {% include {{default_writer}} region='body-header' items=lanes_collate %}
54
- </header>
55
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ end processing default_writer for region: 'body-header' ] -->
56
-
57
- {% comment %} Collect the BODY-CONTENT region
58
- ------------------------------------------------------------------------------ {% endcomment %}
59
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ call default_writer for region: 'body-content' ] -->
60
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ padding-right set dynamically by core/js/ssm.js ] -->
61
- <div id="content" class="container">
62
- {% include {{content_writer}} region='body-main' items=lanes_collate %}
63
- </div>
64
- <!-- [INFO ] [j1.layout.blog_archive.html ] [ end processing default_writer for region: 'body-content' ] -->
@@ -1,51 +0,0 @@
1
- ---
2
- layout: article_navigator
3
- title: scroller pages
4
- tagline: scroller page
5
- description: >
6
- Create paginator pages for all posts.
7
- Used for infinite scroll for the news panel
8
- used by the Article Navigator.
9
-
10
- categories: [ Blog ]
11
- tags: [ Navigator ]
12
-
13
- pagination:
14
- enabled: false
15
- per_page: 2
16
- permalink: /page:num/
17
-
18
- sort: date
19
- toc: false
20
- # fab_menu_id: open_toc
21
-
22
- robots:
23
- index: false
24
- follow: false
25
-
26
- sitemap: false
27
- exclude_from_search: true
28
-
29
- analytics: false
30
- comments: false
31
-
32
- regenerate: true # needed to update the pagination pages (infinite scroll)
33
-
34
- resources: []
35
- resource_options: []
36
- ---
37
-
38
-
39
- <pre>
40
-
41
- This page is created by the layout: {{ page.layout }}.
42
-
43
- If this text is displayed (instead of the home page expected),
44
- something went wrong with the layout definitions. Check the
45
- output of the Jekyll engine building this site.
46
-
47
- Check the contents of folder _layouts. Verify if the base
48
- layout "{{ page.layout }}" exists and the referring chain
49
- (inheritance) is correct.
50
-
51
- </pre>
@@ -1,172 +0,0 @@
1
- # ------------------------------------------------------------------------------
2
- # ~/_data/layouts/app.yml
3
- # Configuration data to create the (HTML) Layout (data)
4
- # of all content pages of type APP
5
- #
6
- # Product/Info:
7
- # https://jekyll.one
8
- #
9
- # Copyright (C) 2022 Juergen Adams
10
- #
11
- # J1 Template is licensed under the MIT License.
12
- # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
13
- #
14
- # ------------------------------------------------------------------------------
15
- # NOTE:
16
- # By J1 template, "Liquid Procedures" are being used intensively. To load
17
- # HTML data for a layout, loader procedures places the data based this
18
- # YAML data file into the REGION specified by a LANE.
19
- # ------------------------------------------------------------------------------
20
-
21
- # ------------------------------------------------------------------------------
22
- # Layout configuration settings
23
-
24
- # lanes|lane
25
- # ----------------------------------------------------------------------------
26
- # Set LANE specific configuration parameters for a page LAYOUT. The
27
- # LANES array contains multiple (lane) hashes that describes the type
28
- # of the component that is loaded into a lane and their specific
29
- # (placement) parameters.
30
- #
31
- # region
32
- # ----------------------------------------------------------------------------
33
- # J1 templates defines, based on the general structure of a HTML page
34
- # (head|body), more specific REGIONS based on HTML5 semantic elements
35
- # to place HTML data:
36
- #
37
- # head <head> section. Contains (site-wide) meta data and
38
- # all CSS and JS files are to be loaded for a page.
39
- # body-navigation <body> NAV section. Contains the main navigation bar.
40
- # Placed a the BEGINNING of the <body> section.
41
- # body-header <body> HEADER section. Contains the page banner (header).
42
- # Placed AFTER the page navigation but BEFORE the main
43
- # content (body-main) of a page.
44
- # body-main <body> MAIN section. J1 template puts a <main> container
45
- # element in the <body> section to place the (main) content.
46
- # All content related elements are loaded into the region
47
- # 'body-main'. Content may components like boxes, panels,
48
- # quotes etc. and the document content like sections and
49
- # articles.
50
- # body-footer <body> FOOTER section. J1 template puts a <footer> element
51
- # at the end of the <BODY> section. The body-footer region
52
- # contains all elements that should be loaded at the end
53
- # of a page; typically the page footer.
54
- #
55
- # values: head|body-navigation|body-header|body-main|body-footer
56
- # default: no defaults
57
- #
58
- # type
59
- # ----------------------------------------------------------------------------
60
- # The (HTML) content of a lane can be included (from an include file) or
61
- # loaded asychronously from a HTML data file by AJAX (get|load) calls.
62
- # J1 template is using jQuery as an interface to AJAX calls.
63
- #
64
- # values: include|load
65
- # default: no defaults
66
- #
67
- # source
68
- # ----------------------------------------------------------------------------
69
- # The parameter source defines a (site root relativ) path to the data
70
- # source to be included or loaded.
71
- #
72
- # values: string (path)
73
- # default: no defaults
74
- #
75
- # file
76
- # ----------------------------------------------------------------------------
77
- # Defines the data file to be included or loaded.
78
- #
79
- # values: string
80
- # default: no defaults
81
- #
82
- # id
83
- # ----------------------------------------------------------------------------
84
- # Used for AJAX load calls (see parameter type). The id is used twice. First,
85
- # id references a HTML fragment as part of the (HTML) data file (see parameter
86
- # data below). Second, the id is used to identify the placeholder (div)
87
- # element where the AJAX call puts the data on.
88
- #
89
- # values: string
90
- # default: no defaults
91
- #
92
- # class
93
- # ----------------------------------------------------------------------------
94
- # Additional CSS classes that are put on the placeholder (div) element.
95
- # Can be used for type 'load', only.
96
- #
97
- # values: string (CSS class name)
98
- # default: no defaults
99
- #
100
- # ------------------------------------------------------------------------------
101
-
102
- # ------------------------------------------------------------------------------
103
- # Layout configuration settings
104
- #
105
- lanes:
106
- # ----------------------------------------------------------------------------
107
- # HEADER region (body-header)
108
- # The header region contains the 'master' header displayed on all pages.
109
- #
110
- # NOTE:
111
- # Do NOT add any HTML CONTENT here (directly).
112
- # For the J1 Template GEM (J1 run-time version), ONLY the building
113
- # blocks already prepared can be used to generate the contents of
114
- # a home page. To change the content for a 'attic', find the
115
- # configuration with:
116
- #
117
- # attic: ~/_data/modules/attics.yml
118
- #
119
- # NOTE:
120
- # individual settings like 'title' or 'tagline' can be configured with
121
- # the FRONTMATTER of a page.
122
- #
123
- # ----------------------------------------------------------------------------
124
-
125
- # ----------------------------------------------------------------------------
126
- # MASTER header (attic)
127
- # All pages are using a specific header to display a title and a
128
- # tagline. Title and tagline are to be configured with the FRONTMATTER
129
- # of an app for individual data (text).
130
- #
131
- # ----------------------------------------------------------------------------
132
- #
133
- - lane:
134
- enabled: true
135
- region: body-header
136
- type: sync
137
- base: _includes/themes/j1
138
- path: modules/attics
139
- file: generator.html
140
-
141
- # ----------------------------------------------------------------------------
142
- # CONTENT region (region body-main)
143
- #
144
- # NOTE:
145
- # The CONTENT may already rendered (page contains HTML data) or
146
- # unrendered (page contains MARKUP data). In both cases, rendered
147
- # or unrendered content, a valid FRONTMATTER is needed to pass the data.
148
- #
149
- # NOTE:
150
- # Do NOT add any HTML CONTENT here (directly).
151
- # For the J1 Template GEM (J1 run-time version), ONLY the building
152
- # blocks already prepared can be used to generate the contents of
153
- # a home page. To change the content for a 'lane', find the configuration
154
- # for page|post content and FABs (floting action button) with:
155
- #
156
- # page|post content: ~/_data/apps
157
- # fab: ~/_data/modules/fab.yml
158
- #
159
- # ----------------------------------------------------------------------------
160
-
161
- # ----------------------------------------------------------------------------
162
- # APP content
163
- - lane:
164
- enabled: true
165
- region: body-main
166
- type: sync
167
- base: _includes/themes/j1
168
- path: layouts
169
- file: content_generator_app.html
170
-
171
- # ------------------------------------------------------------------------------
172
- # END config
@@ -1,173 +0,0 @@
1
- # ------------------------------------------------------------------------------
2
- # ~/_data/layouts/previewer_posts.yml
3
- # Configuration data to create the (HTML) Layout (data) of
4
- # all content pages of type BLOG ARCHIVE
5
- #
6
- # Product/Info:
7
- # https://jekyll.one
8
- #
9
- # Copyright (C) 2022 Juergen Adams
10
- #
11
- # J1 Template is licensed under the MIT License.
12
- # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
13
- #
14
- # ------------------------------------------------------------------------------
15
- # NOTE:
16
- # By J1 template, "Liquid Procedures" are being used intensively. To load
17
- # HTML data for a layout, the loader procedure places the data based this
18
- # YAML data file into the REGION specified with a LANE.
19
- # ------------------------------------------------------------------------------
20
-
21
- # ------------------------------------------------------------------------------
22
- # Layout configuration settings
23
- #
24
- # lanes|lane
25
- # ----------------------------------------------------------------------------
26
- # Set LANE specific configuration parameters for a page LAYOUT. The
27
- # LANES array contains multiple (lane) hashes that describes the type
28
- # of the component that is loaded into a lane and their specific
29
- # (placement) parameters.
30
- #
31
- # region
32
- # ----------------------------------------------------------------------------
33
- # J1 templates defines, based on the general structure of a HTML page
34
- # (head|body), more specific REGIONS based on HTML5 semantic elements
35
- # to place HTML data:
36
- #
37
- # head <head> section. Contains (site-wide) meta data and
38
- # all CSS and JS files are to be loaded for a page.
39
- # body-navigation <body> NAV section. Contains the main navigation bar.
40
- # Placed a the BEGINNING of the <body> section.
41
- # body-header <body> HEADER section. Contains the page banner (header).
42
- # Placed AFTER the page navigation but BEFORE the main
43
- # content (body-main) of a page.
44
- # body-main <body> MAIN section. J1 template puts a <main> container
45
- # element in the <body> section to place the (main) content.
46
- # All content related elements are loaded into the region
47
- # 'body-main'. Content may components like boxes, panels,
48
- # quotes etc. and the document content like sections and
49
- # articles.
50
- # body-footer <body> FOOTER section. J1 template puts a <footer> element
51
- # at the end of the <BODY> section. The body-footer region
52
- # contains all elements that should be loaded at the end
53
- # of a page; typically the page footer.
54
- #
55
- # values: head|body-navigation|body-header|body-main|body-footer
56
- # default: no defaults
57
- #
58
- # type
59
- # ----------------------------------------------------------------------------
60
- # The (HTML) content of a lane can be included (from an include file) or
61
- # loaded asychronously from a HTML data file by AJAX (get|load) calls.
62
- # J1 template is using jQuery as an interface to AJAX calls.
63
- #
64
- # values: include|load
65
- # default: no defaults
66
- #
67
- # source
68
- # ----------------------------------------------------------------------------
69
- # The parameter source defines a (site root relativ) path to the data
70
- # source to be included or loaded.
71
- #
72
- # values: string (path)
73
- # default: no defaults
74
- #
75
- # file
76
- # ----------------------------------------------------------------------------
77
- # Defines the data file to be included or loaded.
78
- #
79
- # values: string
80
- # default: no defaults
81
- #
82
- # id
83
- # ----------------------------------------------------------------------------
84
- # Used for AJAX load calls (see parameter type). The id is used twice. First,
85
- # id references a HTML fragment as part of the (HTML) data file (see parameter
86
- # data below). Second, the id is used to identify the placeholder (div)
87
- # element where the AJAX call puts the data on.
88
- #
89
- # values: string
90
- # default: no defaults
91
- #
92
- # class
93
- # ----------------------------------------------------------------------------
94
- # Additional CSS classes that are put on the placeholder (div) element.
95
- # Can be used for type 'load', only.
96
- #
97
- # values: string (CSS class name)
98
- # default: no defaults
99
- #
100
- # ------------------------------------------------------------------------------
101
-
102
- # ------------------------------------------------------------------------------
103
- # Layout configuration settings
104
- #
105
- lanes:
106
-
107
- # ----------------------------------------------------------------------------
108
- # HEADER region (region body-header)
109
- # ----------------------------------------------------------------------------
110
-
111
- # ----------------------------------------------------------------------------
112
- # MASTER header (attic)
113
- #
114
- # NOTE:
115
- # All pages are using a specific header to display a title and a
116
- # tagline. Title and tagline are to be configured with the FRONTMATTER
117
- # of a page for individual data (text).
118
- # ----------------------------------------------------------------------------
119
- #
120
- - lane:
121
- enabled: false
122
- region: body-header
123
- type: sync
124
- base: _includes/themes/j1
125
- path: modules/attics
126
- file: generator.html
127
-
128
- # ----------------------------------------------------------------------------
129
- # CONTENT region (region body-main)
130
- #
131
- # NOTE:
132
- # The CONTENT of a post or page may already rendered (page contains HTML
133
- # data) or unrendered (page contains MARKUP data). In both cases, rendered
134
- # or unrendered content, a valid FRONTMATTER is needed to pass the data.
135
- #
136
- # The CONTENT generation for posts and pages depends on the data type,
137
- # the MARKUP language (Markdown, Asciidoc) the page is using. The data
138
- # type is specified by the file EXTENSION (e.g. ".md" for Markdown or
139
- # ".adoc" for Asciidoc formatted content).
140
- #
141
- # To enable Jekyll running the render phase, the respective processor
142
- # (e.g.kramdown for MARKDOWN or asciidoctor for ASCIIDOC) needs to be
143
- # loaded and configured (Gemfile and the side-wide configuration file
144
- # _config.yml).
145
- #
146
- # NOTE:
147
- # The CONTENT of a PAGE is passed trough a (Liquid) wrapper procedure
148
- # (page_content.html) to add or inject specific ADDITIONAL data like
149
- # a TOC etc. that influences the resulting page.
150
- #
151
- # To modify the wrapper, DO NOT CHANGE the template files. See with
152
- # ***URL*** howto create your own wrapper (and OVERLOAD the J1 template
153
- # system with the data you provided).
154
- #
155
- - lane:
156
- enabled: true
157
- region: body-main
158
- type: sync
159
- base: _includes/themes/j1
160
- path: layouts
161
- file: content_generator_article_navigator.html
162
-
163
- # ----------------------------------------------------------------------------
164
- # FAM
165
- #
166
- - lane:
167
- enabled: false
168
- id: fab-container
169
- region: body-main
170
- type: async
171
-
172
- # ------------------------------------------------------------------------------
173
- # END config