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
@@ -0,0 +1,110 @@
1
+ == Code Highlighter Rouge
2
+
3
+ _Rouge_ is a pure Ruby and themeable syntax highlighter. It can highlight
4
+ 100+ different languages and output HTML or ANSI 256-color text. Find all
5
+ available themes and examples for several languages of how
6
+ highlighting works using _Rouge_.
7
+
8
+ For the default theme `Uno` of J1 Template, the following _Rouge_ themes
9
+ are used:
10
+
11
+ * light: `igorpro`
12
+ * dark: `monokai.sublime`
13
+
14
+ NOTE: The default themes used for the J1 Template can be configured with the
15
+ global template config file `~/_data/j1_config.yml`.
16
+
17
+
18
+ === Apply a theme
19
+
20
+ Make a selection of a theme below to preview.
21
+
22
+ ++++
23
+ <div class="btn-group">
24
+ <!-- See: https://stackoverflow.com/questions/47242702/force-bootstrap-dropdown-menu-to-always-display-at-the-bottom-and-allow-it-go-of -->
25
+ <!-- NOTE: control the behaviour of popper.js for positioning -->
26
+ <!-- NOTE: set attribute data-flip="false" to open the SELECT list at the BOTTOM of the BUTTON -->
27
+ <button class="btn btn-primary btn-flex btn-lg dropdown-toggle" data-flip="false" type="button" data-bs-toggle="dropdown" data-bs-target="#navbarDropdown" aria-haspopup="true" aria-expanded="false">
28
+ Select Theme<span class="caret"></span>
29
+ </button>
30
+ <ul class="dropdown-menu scrollable-menu" role="menu">
31
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16</a></li>
32
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.dark')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.dark</a></li>
33
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.light')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.light</a></li>
34
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.monokai')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.monokai</a></li>
35
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.monokai.dark')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.monokai.dark</a></li>
36
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.monokai.light')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.monokai.light</a></li>
37
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.solarized')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.solarized</a></li>
38
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.solarized.dark')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.solarized.dark</a></li>
39
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('base16.solarized.light')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>base16.solarized.light</a></li>
40
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('colorful')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>colorful</a></li>
41
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('github')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>github</a></li>
42
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('gruvbox')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>gruvbox</a></li>
43
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('gruvbox.light')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>gruvbox.light</a></li>
44
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('igorpro')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>igorpro</a></li>
45
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('molokai')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>molokai</a></li>
46
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('monokai')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>monokai</a></li>
47
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('monokai.sublime')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>monokai.sublime</a></li>
48
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('pastie')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>pastie</a></li>
49
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('thankful_eyes')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>thankful_eyes</a></li>
50
+ <li><a class="dropdown-item" onclick="j1.adapter.rouge.reaplyStyles('tulip')"> <i class="mdi mdi-view-quilt mdi-18px mr-2" style="color: #9E9E9E"></i>tulip</a></li>
51
+ </ul>
52
+ </div>
53
+ <div id="selected" class="mt-1 mb-3"></div>
54
+ ++++
55
+
56
+ === Highlight Liquid code
57
+
58
+ {% raw %}
59
+ [source, liquid]
60
+ ----
61
+ Hello {{ 'now' | date: "%Y %h" }}
62
+
63
+ {% comment %} if item.quantity is 4... {% endcomment %}
64
+ {% for i in (1..item.quantity) %}
65
+ {{ i }}
66
+ {% endfor %}
67
+ ----
68
+ {% endraw %}
69
+
70
+ === Highlight Javascript code
71
+
72
+ [source, javascript]
73
+ ----
74
+ // helper functions
75
+ //
76
+ function styleSheetLoaded(styleSheet) {
77
+ var sheets = document.styleSheets,
78
+ stylesheet = sheets[(sheets.length - 1)];
79
+
80
+ // find CSS file 'styleSheetName' in document
81
+ for(var i in document.styleSheets) {
82
+ if(sheets[i].href && sheets[i].href.indexOf(styleSheet) > -1) {
83
+ return true;;
84
+ }
85
+ }
86
+ }
87
+ ----
88
+
89
+ === Highlight Ruby code
90
+
91
+ [source, ruby]
92
+ ----
93
+ require 'asciidoctor/extensions' unless RUBY_ENGINE == 'opal'
94
+ include Asciidoctor <1>
95
+
96
+ Asciidoctor::Extensions.register do
97
+ class J1BlockMacro < Extensions::BlockMacroProcessor
98
+ use_dsl
99
+ named :banner
100
+ name_positional_attributes 'role'
101
+
102
+ def process parent, target, attrs
103
+ html = %(<div id="#{target}" class="#{attrs['role']}"></div>)
104
+ create_pass_block parent, html, attrs, subs: nil
105
+ end
106
+ end
107
+ block_macro J1BlockMacro
108
+ end
109
+ ----
110
+ <1> don't miss to load the Asciidoctor ruby
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: asciidoc extensions
2
+ title: Asciidoc Enhancements
3
+ tagline: Asciidoctor Extensions
4
4
  date: 2020-11-07 00:00:00
5
5
  description: >
6
6
  J1 Template implements some incubating Ruby-based
@@ -9,21 +9,23 @@ description: >
9
9
  Lab. All implemented Asciidoctor Extensions can be
10
10
  found in this article.
11
11
 
12
- categories: [ Roundtrip ]
13
- tags: [ Introduction, Module, Asciidoc, Extension ]
14
12
 
15
- fab_menu_id: page_ctrl
13
+ categories: [ Roundtrip, Asciidoc ]
14
+ tags: [ Extension ]
15
+
16
+ image:
17
+ path: /assets/images/pages/roundtrip/puzzle-1920x1280-bw.jpg
18
+ width: 1920
19
+ height: 1280
20
+ alt: puzzle-1920x1280-bw
16
21
 
17
22
  permalink: /pages/public/learn/roundtrip/asciidoc_extensions/
18
23
  regenerate: false
19
24
 
20
25
  resources: [ animate, clipboard, lightbox, iconify, twemoji, rouge ]
21
26
  resource_options:
22
-
23
27
  - attic:
24
-
25
28
  slides:
26
-
27
29
  - url: /assets/images/pages/roundtrip/puzzle-1920x1280-bw.jpg
28
30
  alt: puzzle-1920x1280-bw
29
31
  ---
@@ -719,5 +721,5 @@ The next preview is focussing on advanced Bootstrap Modals. The modals feature
719
721
  is currently in beta status, but it is a great option to customize your
720
722
  user dialogues using them!
721
723
 
722
- Have a look for the link:{url-roundtrip--extended-modals}[BS Modal Extensions]
724
+ Have a look for the link:{url-roundtrip--extended-modals}[Modal Extensions]
723
725
  feature of J1 Template.
@@ -0,0 +1,80 @@
1
+ ---
2
+ title: Bootstrap Themes
3
+ tagline: J1 Template Theming
4
+ date: 2020-11-10 00:00:00
5
+ description: >
6
+ The themes feature for J1 is in an experimental
7
+ state for the template system. Anyway, it makes
8
+ sense to present what is possible using different
9
+ versions of Bootstrap's CSS styles for a website.
10
+
11
+ categories: [ Roundtrip, Bootstrap ]
12
+ tags: [ Module, Themes ]
13
+
14
+ image:
15
+ path: /assets/images/pages/roundtrip/themes-1920x1280-bw.jpg
16
+ width: 1920
17
+ height: 1280
18
+ alt: Photo by Clem Onojeghuo on Unsplash
19
+
20
+ permalink: /pages/public/learn/roundtrip/themes/
21
+ regenerate: true
22
+
23
+ resources: [ animate, rouge, clipboard, lightbox ]
24
+ resource_options:
25
+ - attic:
26
+ slides:
27
+ - url: /assets/images/pages/roundtrip/themes-1920x1280-bw.jpg
28
+ alt: Photo by Clem Onojeghuo on Unsplash
29
+ badge:
30
+ type: unsplash
31
+ author: Clem Onojeghuo
32
+ href: https://unsplash.com/@clemono
33
+ ---
34
+
35
+ // Page Initializer
36
+ // =============================================================================
37
+ // Enable the Liquid Preprocessor
38
+ :page-liquid:
39
+
40
+ // Set (local) page attributes here
41
+ // -----------------------------------------------------------------------------
42
+ // :page--attr: <attr-value>
43
+ :images-dir: {imagesdir}/pages/roundtrip/100_present_images
44
+
45
+ // Load Liquid procedures
46
+ // -----------------------------------------------------------------------------
47
+ {% capture load_attributes %}themes/{{site.template.name}}/procedures/global/attributes_loader.proc{%endcapture%}
48
+
49
+ // Load page attributes
50
+ // -----------------------------------------------------------------------------
51
+ {% include {{load_attributes}} scope="all" %}
52
+
53
+
54
+ // Page content
55
+ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
56
+
57
+ [role="dropcap"]
58
+ Themes for the template system J1 are based on the free and open-source CSS
59
+ front-end framework {url-bs--home}[Bootstrap, {browser-window--new}] of
60
+ version V5. Bootstrap is an HTML, CSS & JS Library that focuses on simplifying
61
+ the development of modern web pages. The primary purpose of applying the
62
+ framework to J1 is to provide a general standard for colors, sizes, fonts,
63
+ and the overall layout of a J1-based site.
64
+
65
+ Using Bootstrap styles results in a uniform appearance for the content in
66
+ terms of the overall layout, text, tables, and form elements across all
67
+ modern web browsers available on the market. In addition, developers can take
68
+ advantage of CSS classes defined in Bootstrap to customize content
69
+ individually.
70
+
71
+ // Include sub-documents (if any)
72
+ // -----------------------------------------------------------------------------
73
+ include::{documentdir}/themes_bootstrap.asciidoc[]
74
+
75
+ == What next
76
+
77
+ An important feature for larger webs is searching. The visitors should be able
78
+ to search your site to find pages and posts they are interested in. Check what
79
+ is searching a J1 website all about at
80
+ link:{url-roundtrip--quicksearch}[Lunr Search].
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: icon fonts
2
+ title: Icon Fonts
3
+ tagline: Popular Icons Sets
4
4
  date: 2020-11-06 00:00:00
5
5
  description: >
6
6
  J1 Template supports popular icons font sets out-of-the-box.
@@ -10,20 +10,22 @@ description: >
10
10
  loaded over the Internet using the so-called Unified OpenSource Icon
11
11
  Framework.
12
12
 
13
- categories: [ Roundtrip ]
14
- tags: [ Introduction, Module, Icon, Fonts ]
13
+ categories: [ Roundtrip, Icon Fonts ]
14
+ tags: [ Module, Icon ]
15
15
 
16
- fab_menu_id: page_ctrl
16
+ image:
17
+ path: assets/images/pages/roundtrip/icon-fonts-1920x1280-bw.jpg
18
+ width: 1920
19
+ height: 1280
20
+ alt: Photo by Harpal Singh on Unsplash
17
21
 
18
22
  permalink: /pages/public/learn/roundtrip/mdi_icon_font/
19
23
  regenerate: false
20
24
 
21
25
  resources: [ animate, iconify ]
22
26
  resource_options:
23
-
24
27
  - attic:
25
28
  slides:
26
-
27
29
  - url: /assets/images/pages/roundtrip/icon-fonts-1920x1280-bw.jpg
28
30
  alt: Photo by Harpal Singh on Unsplash
29
31
  badge:
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: full text search
2
+ title: Lunr Search
3
+ tagline: QuickSearch for J1
4
4
  date: 2020-11-08 00:00:00
5
5
  description: >
6
6
  QuickSearch is based on the search engine Lunr,
@@ -11,26 +11,30 @@ description: >
11
11
  on the Internet like Google.
12
12
 
13
13
  categories: [ Roundtrip ]
14
- tags: [ Introduction, Module, Lunr, QuickSearch ]
14
+ tags: [ Module, Quicksearch ]
15
15
 
16
- toc: true
17
- scrollbar: false
18
- fab_menu_id: page_ctrl
16
+ image:
17
+ path: /assets/images/modules/attics/lunr-1280x800.jpg
18
+ width: 1920
19
+ height: 1280
20
+ alt: Lunr Search Engine
19
21
 
20
22
  permalink: /pages/public/learn/roundtrip/quicksearch/
21
23
  regenerate: false
22
24
 
25
+ toc: true
26
+ scrollbar: false
27
+
23
28
  resources: [ animate, clipboard, lightbox, rouge ]
24
29
  resource_options:
25
-
26
30
  - toccer:
27
31
  collapseDepth: 3
28
-
29
32
  - attic:
30
-
33
+ # alignY: 0.1
34
+ # padding_top: 500
31
35
  slides:
32
36
  - url: /assets/images/modules/attics/lunr-1280x800.jpg
33
- alt: Lunr
37
+ alt: Lunr Search Engine
34
38
  ---
35
39
 
36
40
  // Page Initializer
@@ -56,14 +60,15 @@ resource_options:
56
60
  // Include sub-documents (if any)
57
61
  // -----------------------------------------------------------------------------
58
62
  [role="dropcap"]
59
- QuickSearch is based on the search engine Lunr, fully integrated with the J1
60
- Template. Lunr is designed to be lightweight yet full-featured to provide a
61
- great search experience. No need for complex external, server-sided search
62
- engines or commercial services on the Internet like Google. Searching a website
63
- using QuickSearch is different from search engines like Google or Microsoft
64
- Bing. Those search platforms using complex algorithms to provide a simple
65
- interface to the public but using a lot of artificial intelligence (AI) methods
66
- to make sense of results out of a handful of words given for a search.
63
+ The QuickSearch module for J1 Template is based on the search engine _Lunr_,
64
+ fully integrated with the template system. _Lunr_ is designed to be lightweight
65
+ yet full-featured to provide a great search experience. No need for complex
66
+ external, server-sided search engines or commercial services on the Internet
67
+ like Google. Searching a website using QuickSearch is different from search
68
+ engines like Google or Microsoft Bing. Those search platforms using complex
69
+ algorithms to provide a simple interface to the public but using a lot of
70
+ artificial intelligence (AI) methods to make sense of results out of a
71
+ handful of words given for a search.
67
72
 
68
73
  Nevertheless, QuickSearch, the J1 implementation of Lunr, is simple like
69
74
  searching at Google but offers additional features to do searches more
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: advanced bootstrap modals
2
+ title: Modal Extensions
3
+ tagline: Improve Visitor Experience
4
4
  date: 2020-11-08 00:00:00
5
5
  description: >
6
6
  Advanced Bootstrap modals are used to add dialogs to your
@@ -9,24 +9,26 @@ description: >
9
9
  everything else in the document so that messages get the
10
10
  user's attention.
11
11
 
12
- categories: [ Roundtrip ]
13
- tags: [ Introduction, Bootstrap, Modal, Extension ]
12
+ categories: [ Roundtrip, Bootstrap ]
13
+ tags: [ Modal, Extension ]
14
14
 
15
- flowtext: false
16
- fab_menu_id: page_ctrl
15
+ image:
16
+ path: /assets/images/pages/roundtrip/bootstrap-1920x1000-bw.jpg
17
+ width: 1920
18
+ height: 1280
19
+ alt: Bootstrap Framework Logo
17
20
 
18
21
  permalink: /pages/public/learn/roundtrip/modals/
19
22
  regenerate: false
20
23
 
24
+ # flowtext: false
25
+
21
26
  resources: [ animate ]
22
27
  resource_options:
23
-
24
28
  - attic:
25
-
26
29
  slides:
27
-
28
30
  - url: /assets/images/pages/roundtrip/bootstrap-1920x1000-bw.jpg
29
- alt: bootstrap
31
+ alt: Bootstrap Framework Logo
30
32
  ---
31
33
 
32
34
  // Page Initializer
@@ -51,19 +53,16 @@ resource_options:
51
53
  // Page content
52
54
  // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
53
55
 
56
+ [role="dropcap"]
57
+ Enhanced Bootstrap Modals are used to add dialogues to your web pages for user
58
+ notifications. To highlight important information to your visitors. Modals are
59
+ positioned over everything else in the document so that messages get the
60
+ user's attention.
61
+
62
+
54
63
  // Include sub-documents (if any)
55
64
  // -----------------------------------------------------------------------------
56
- [role="dropcap"]
57
- Advanced Bootstrap Modals are based on the free package of
58
- link:{url-mdb--home}[Material Design for Bootstrap, {browser-window--new}] on version
59
- *4.3.2*. This version can be found following this link:
60
- link:{url-mdb--bs-modals-legacy}[Enhanced Bootstrap Modals, {browser-window--new}]. A more
61
- current version is available from here:
62
- link:{url-mdb--bs-modals}[Modal examples & templates, {browser-window--new}].
63
- Bootstrap modals are used to add dialogues to your web pages for user
64
- notifications. To highlight important information to your visitors. Modals
65
- are positioned over everything else in the document so that messages
66
- get the user's attention.
65
+ == Modal Examples
67
66
 
68
67
  To improve your visitor's experience on important information that shouldn't
69
68
  be missed. Modals are a great choice to bring the user's attention. Using the
@@ -71,8 +70,8 @@ J1 Template BS enhanced predefined modal styles, some emotional weight is
71
70
  added to the information displayed - ranging from an info level, a simple
72
71
  warning to critical messages.
73
72
 
74
- NOTE: For more information on how to use Bootstrap’s JavaScript modal
75
- plugin, refer to: link:{url-bs-doc--components-modal}[Bootstrap Docs, {browser-window--new}].
73
+ TIP: For more information on how to use Bootstrap’s JavaScript modal
74
+ plugin, refer to: link:{url-bs-docs--components-modal}[Bootstrap Docs, {browser-window--new}].
76
75
 
77
76
  // include::{documentdir}/tables/bs_modal_examples.asciidoc[]
78
77
  include::{documentdir}/410_table_bs_modal_examples.asciidoc[]
@@ -87,7 +86,7 @@ needs some enhancement to display tables on low-resolution devices or smaller
87
86
 
88
87
  The first version for improved responsive tables that scale better is available
89
88
  for the J1 Template. Check out from here what the
90
- link:{url-roundtrip--responsive-tables}[BS Table Extensions] can do!
89
+ link:{url-roundtrip--responsive-tables}[Responsive Tables] can do!
91
90
 
92
91
  // Include the modals HTML portion
93
92
  // -----------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: present images
2
+ title: Present Images
3
+ tagline: Manage Image Contents
4
4
  date: 2020-11-03 00:00:00
5
5
  description: >
6
6
  Welcome to the preview page focussing on the image module. This page
@@ -8,9 +8,13 @@ description: >
8
8
  content using lightboxes, carousels (slider), and galleries.
9
9
 
10
10
  categories: [ Roundtrip ]
11
- tags: [ Introduction, Module, Image ]
11
+ tags: [ Module, Carousel, Lightbox, Image, Slider ]
12
12
 
13
- fab_menu_id: page_ctrl
13
+ image:
14
+ path: /assets/images/modules/attics/1920x1280/quino-al-2.jpg
15
+ width: 1920
16
+ height: 1280
17
+ alt: Photo by Quino Al Angel on Unsplash
14
18
 
15
19
  permalink: /pages/public/learn/roundtrip/present_images/
16
20
  regenerate: false
@@ -21,17 +25,14 @@ resources: [
21
25
  masterslider, rouge
22
26
  ]
23
27
  resource_options:
24
-
25
28
  - attic:
26
-
27
29
  slides:
28
-
29
- - url: /assets/images/pages/roundtrip/images-1920x1280-bw.jpg
30
- alt: Photo by Ricardo Gomez Angel on Unsplash
30
+ - url: /assets/images/modules/attics/1920x1280/quino-al-2.jpg
31
+ alt: Photo by Quino Al Angel on Unsplash
31
32
  badge:
32
33
  type: unsplash
33
- author: Ricardo Gomez Angel
34
- href: https://unsplash.com/@ripato/portfolio
34
+ author: Quino Al Angel
35
+ href: https://unsplash.com/@quinoal
35
36
  ---
36
37
 
37
38
 
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: present video content
2
+ title: Present Videos
3
+ tagline: Playing Video On Webpages
4
4
  date: 2020-11-04 00:00:00 +100
5
5
  description: >
6
6
  Playing video on web pages seems not that special since you can already
@@ -10,13 +10,17 @@ description: >
10
10
  proprietary software.
11
11
 
12
12
  categories: [ Roundtrip ]
13
- tags: [ Introduction, Module, Video ]
13
+ tags: [ Module, Video ]
14
+
15
+ image:
16
+ path: /assets/videos/headers/present_videos/still/underground-broadway.jpg
17
+ width: 1920
18
+ height: 1280
19
+ alt: Broadway Underground
14
20
 
15
21
  permalink: /pages/public/learn/roundtrip/present_videos/
16
22
  regenerate: false
17
-
18
23
  personalization: true
19
- fab_menu_id: page_ctrl
20
24
 
21
25
  resources: [
22
26
  animate, lightGallery, justifiedGallery, video_js,
@@ -30,15 +34,15 @@ resource_options:
30
34
  # Broadway Underground - still image (animate default)
31
35
  - url: /assets/videos/headers/present_videos/still/underground-broadway.jpg
32
36
  alt: Broadway Underground
33
- title: Roundtrip
34
- tagline: present video content
37
+ title: Present Videos
38
+ tagline: Playing Video On Webpages
35
39
  alignY: top
36
40
  animateFirst: false
37
41
 
38
42
  # Broadway Underground - FAYETTE ST, moved file to Github/LFS
39
43
  - url: /assets/videos/headers/present_videos/underground-broadway.mp4
40
44
  alt: Broadway Underground Video
41
- title: Roundtrip
45
+ title: Present Videos
42
46
  tagline: Broadway Underground
43
47
  alignY: 0
44
48
  isVideo: true
@@ -48,8 +52,8 @@ resource_options:
48
52
  # Broadway Underground - still image (animate random)
49
53
  - url: /assets/videos/headers/present_videos/still/underground-broadway.jpg
50
54
  alt: Broadway Underground
51
- title: Roundtrip
52
- tagline: manage video content for your site
55
+ title: Present Videos
56
+ tagline: Manage Video Content For Your Site
53
57
  alignY: top
54
58
  transition: push_left|push_right|cover_up|cover_down|fade|fadeInOut
55
59
  ---
@@ -1,14 +1,20 @@
1
1
  ---
2
- title: Roundtrip
3
- tagline: responsive tables
2
+ title: Responsive Tables
3
+ tagline: Tables Viewed Best On All Devices
4
4
  date: 2020-11-09 00:00:00
5
5
  description: >
6
6
  Creating a design for responsive tables is challenging. The approach used by
7
7
  J1 Template is based on pure CSS styles on top of the classic Bootstrap tags for
8
8
  simplicity and portability to be viewed best on all devices and browsers.
9
9
 
10
- categories: [ Roundtrip ]
11
- tags: [ Introduction, Bootstrap, Table, Extension ]
10
+ categories: [ Roundtrip, Bootstrap ]
11
+ tags: [ Tables, Extension ]
12
+
13
+ image:
14
+ path: /assets/images/pages/roundtrip/tables-1920x1280-bw.jpg
15
+ width: 1920
16
+ height: 1280
17
+ alt: Photo by Markus Spiske on Unsplash
12
18
 
13
19
  flowtext: false
14
20
  fab_menu_id: page_ctrl
@@ -19,12 +25,9 @@ regenerate: true
19
25
 
20
26
  resources: [ animate, clipboard, lightbox, rouge ]
21
27
  resource_options:
22
-
23
28
  - attic:
24
29
  opacity: 0.7
25
-
26
30
  slides:
27
-
28
31
  - url: /assets/images/pages/roundtrip/tables-1920x1280-bw.jpg
29
32
  alt: Photo by Markus Spiske on Unsplash
30
33
  badge:
@@ -96,13 +99,13 @@ To see the transformation on a table in action, resize for desktop devices the
96
99
  browser window or use a device the viewport is smaller than 768px (mobiles or
97
100
  tablets).
98
101
 
99
- == Tables 2-column
102
+ == Table 2-column
100
103
 
101
104
  Tables are widely used for documentation pages. Below, simple 2-column tables
102
105
  are used to explain some of the Jekyll variables for templating your content
103
106
  pages.
104
107
 
105
- === Bootstrap tables
108
+ === Bootstrap table
106
109
 
107
110
  Bootstrap tables support tables to be scrolled horizontally on smaller
108
111
  viewports. From a specified breakpoint and up, the table will behave
@@ -186,7 +189,7 @@ Post's front matter by specifying a new date/time in the format
186
189
  |===
187
190
 
188
191
 
189
- === Responsive tables
192
+ === Responsive table
190
193
 
191
194
  Responsive tables *rebuild* a table. The header is set to invisible, and
192
195
  all columns get vertically *stacked as rows*.
@@ -276,7 +279,7 @@ available to better control over what viewport sizes table are transformed.
276
279
  From a specified breakpoint and up, the table will behave normally
277
280
  and do not scroll horizontally.
278
281
 
279
- === Bootstrap tables
282
+ === Bootstrap table
280
283
 
281
284
  Bootstrap responsive tables make use of the CSS `overflow-x: auto`, which
282
285
  clips off any content that goes beyond the bottom or top edges of the table.
@@ -353,7 +356,7 @@ the form `#RRGGBB`
353
356
 
354
357
  |===
355
358
 
356
- === Responsive tables
359
+ === Responsive table
357
360
 
358
361
  .R Table using fixed text size `no-rtext`
359
362
  [source, asciidoc, role="noclip"]
@@ -433,4 +436,4 @@ An exciting feature may be the use of themes. But much, much more can the J1
433
436
  do for your Web Site.
434
437
 
435
438
  Check out what themes can do. Have a look at the
436
- link:{url-roundtrip--themes}[BS Themes] feature!
439
+ link:{url-roundtrip--themes}[Bootstrap Themes] feature!