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
@@ -1085,7 +1085,7 @@
1085
1085
  if ($(myID).is(':visible')) {
1086
1086
  // clear interval checking
1087
1087
  clearInterval(isVisible);
1088
- logger.info('\n' + 'container visible on id: ' + myID);
1088
+ logger.debug('\n' + 'container visible on id: ' + myID);
1089
1089
  that.resize();
1090
1090
  }
1091
1091
  }, 50); // END 'isVisible'
@@ -17,4 +17,4 @@
17
17
  # See: https://github.com/danielgindi/jquery-backstretch
18
18
  # -----------------------------------------------------------------------------
19
19
  */
20
- "use strict";!function(t,e,i){var o,r=/^.*(youtu\.be\/|youtube\.com\/v\/|youtube\.com\/embed\/|youtube\.com\/watch\?v=|youtube\.com\/watch\?.*\&v=)([^#\&\?]*).*/i;t.fn.backstretch=function(i,o){var r,a=arguments;return 0===t(e).scrollTop()&&e.scrollTo(0,0),this.each(function(e){var n=t(this),s=n.data("backstretch");if(s){if("string"==typeof a[0]&&"function"==typeof s[a[0]]){var h=s[a[0]].apply(s,Array.prototype.slice.call(a,1));return h===s&&(h=void 0),void(void 0!==h&&((r=r||[])[e]=h))}o=t.extend(s.options,o),s.hasOwnProperty("destroy")&&s.destroy(!0)}if(!i||i&&0===i.length){var c=n.css("background-image");c&&"none"!==c?i=[{url:n.css("backgroundImage").replace(/url\(|\)|"|'/g,"")}]:t.error("No images were supplied for Backstretch, or element must have a CSS-defined background image.")}s=new w(this,i,o||{}),n.data("backstretch",s)}),r?1===r.length?r[0]:r:this},t.backstretch=function(e,i){return t("body").backstretch(e,i).data("backstretch")},t.expr[":"].backstretch=function(e){return void 0!==t(e).data("backstretch")},t.fn.backstretch.defaults={debug:!1,duration:5e3,transition:"fade",transitionDuration:0,animateFirst:!0,alignX:.5,alignY:.5,paused:!1,start:0,preload:2,preloadSize:1,resolutionRefreshRate:2500,resolutionChangeRatioThreshold:.1};var a,n,s,h,c,d,l={wrap:{left:0,top:0,overflow:"hidden",margin:0,padding:0,height:"100%",width:"100%",zIndex:-999999},itemWrapper:{position:"absolute",display:"none",margin:0,padding:0,border:"none",width:"100%",height:"100%",zIndex:-999999},item:{position:"absolute",margin:0,padding:0,border:"none",width:"100%",height:"100%",maxWidth:"none"}},u=(a=function(t){for(var e=1;e<t.length;e++){for(var i=t[e],o=e;t[o-1]&&parseInt(t[o-1].width,10)>parseInt(i.width,10);)t[o]=t[o-1],--o;t[o]=i}return t},n=function(t,i,o){for(var r,a,n=e.devicePixelRatio||1,s=z(),h=(S(),i>t?"portrait":t>i?"landscape":"square"),c=0,d=0;d<o.length&&("string"==typeof(a=o[d])&&(a=o[d]={url:a}),a.pixelRatio&&"auto"!==a.pixelRatio&&parseFloat(a.pixelRatio)!==n||a.deviceOrientation&&a.deviceOrientation!==s||a.windowOrientation&&a.windowOrientation!==s||a.orientation&&a.orientation!==h||(c=d,r=t,"auto"===a.pixelRatio&&(t*=n),!(a.width>=r)));d++);return o[Math.min(d,c)]},s=function(t,e){if("string"==typeof t)t=t.replace(/{{(width|height)}}/g,e);else if(t instanceof Array)for(var i=0;i<t.length;i++)t[i].src?t[i].src=s(t[i].src,e):t[i]=s(t[i],e);return t},function(e,i){for(var o=e.width(),r=e.height(),h=[],c=function(t,e){return"width"===e?o:"height"===e?r:t},d=0;d<i.length;d++)if(t.isArray(i[d])){i[d]=a(i[d]);var l=n(o,r,i[d]);h.push(l)}else{"string"==typeof i[d]&&(i[d]={url:i[d]});var u=t.extend({},i[d]);u.url=s(u.url,c),h.push(u)}return h}),p=function(t){return r.test(t.url)||t.isVideo},g=(h=[],c=function(t){for(var e=0;e<h.length;e++)if(h[e].src===t.src)return h[e];return h.push(t),t},d=function(t,e,i){"function"==typeof e&&e.call(t,i)},function e(i,o,r,a,n){if(void 0!==i){t.isArray(i)||(i=[i]),arguments.length<5&&"function"==typeof arguments[arguments.length-1]&&(n=arguments[arguments.length-1]),o="function"!=typeof o&&o?o:0,r="function"==typeof r||!r||r<0?i.length:Math.min(r,i.length),a="function"!=typeof a&&a?a:1,o>=i.length&&(o=0,r=0),a<0&&(a=r),a=Math.min(a,r);var s=i.slice(o+a,r-a);if(i=i.slice(o,a),r=i.length)for(var h,l=0,u=function(){++l===r&&(d(i,n,!s),e(s,0,0,a,n))},g=0;g<i.length;g++)p(i[g])||((h=new Image).src=i[g].url,(h=c(h)).complete?u():t(h).on("load error",u));else d(i,n,!0)}}),f=function(e){for(var i=[],o=0;o<e.length;o++)"string"==typeof e[o]?i.push({url:e[o]}):t.isArray(e[o])?i.push(f(e[o])):i.push(y(e[o]));return i},y=function(t,i){return(t.centeredX||t.centeredY)&&(e.console&&e.console.log&&e.console.log("jquery.backstretch: `centeredX`/`centeredY` is deprecated, please use `alignX`/`alignY`"),t.centeredX&&(t.alignX=.5),t.centeredY&&(t.alignY=.5)),void 0!==t.speed&&(e.console&&e.console.log&&e.console.log("jquery.backstretch: `speed` is deprecated, please use `transitionDuration`"),t.transitionDuration=t.speed,t.transition="fade"),void 0!==t.resolutionChangeRatioTreshold&&(e.console.log("jquery.backstretch: `treshold` is a typo!"),t.resolutionChangeRatioThreshold=t.resolutionChangeRatioTreshold),void 0!==t.fadeFirst&&(t.animateFirst=t.fadeFirst),void 0!==t.fade&&(t.transitionDuration=t.fade,t.transition="fade"),t.scale&&(t.scale=b(t.scale)),v(t)},v=function(t,e){return"left"===t.alignX?t.alignX=0:"center"===t.alignX?t.alignX=.5:"right"===t.alignX?t.alignX=1:(void 0!==t.alignX||e)&&(t.alignX=parseFloat(t.alignX),isNaN(t.alignX)&&(t.alignX=.5)),"top"===t.alignY?t.alignY=0:"center"===t.alignY?t.alignY=.5:"bottom"===t.alignY?t.alignY=1:(void 0!==t.alignX||e)&&(t.alignY=parseFloat(t.alignY),isNaN(t.alignY)&&(t.alignY=.5)),t},m={cover:"cover",fit:"fit","fit-smaller":"fit-smaller",fill:"fill"};function b(t){return m.hasOwnProperty(t)?t:"cover"}var w=function(i,o,r){this.options=t.extend({},t.fn.backstretch.defaults,r||{}),this.firstShow=!0,y(this.options,!0),this.images=f(t.isArray(o)?o:[o]),this.options.paused&&(this.paused=!0),this.options.start>=this.images.length&&(this.options.start=this.images.length-1),this.options.start<0&&(this.options.start=0),this.isBody=i===document.body;var a=t(e);this.$container=t(i),this.$root=this.isBody?A?a:t(document):this.$container,this.originalImages=this.images,this.images=u(this.options.alwaysTestWindowResolution?a:this.$root,this.originalImages),g(this.images,this.options.start||0,this.options.preload||1);var n=this.$container.children(".backstretch").first();if(this.$wrap=n.length?n:t('<div class="backstretch"></div>').css(this.options.bypassCss?{}:l.wrap).appendTo(this.$container),!this.options.bypassCss){if(!this.isBody){var s=this.$container.css("position"),h=this.$container.css("zIndex");this.$container.css({position:"static"===s?"relative":s,zIndex:"auto"===h?0:h}),this.$wrap.css({zIndex:-999998})}this.$wrap.css({position:this.isBody&&A?"fixed":"absolute"})}this.index=this.options.start,this.show(this.index),a.on("resize.backstretch",t.proxy(this.resize,this)).on("orientationchange.backstretch",t.proxy(function(){this.isBody&&0===e.pageYOffset&&(e.scrollTo(0,1),this.resize())},this))};w.prototype={resize:function(){try{var i=log4javascript.getLogger("j1.core.attic"),r=this.options.alwaysTestWindowResolution?t(e):this.$root,a=r.width(),n=r.height(),s=a/(this._lastResizeContainerWidth||0),h=n/(this._lastResizeContainerHeight||0),c=this.options.resolutionChangeRatioThreshold||0;if((a!==this._lastResizeContainerWidth||n!==this._lastResizeContainerHeight)&&(Math.abs(s-1)>=c||isNaN(s)||Math.abs(h-1)>=c||isNaN(h))&&(this._lastResizeContainerWidth=a,this._lastResizeContainerHeight=n,this.images=u(r,this.originalImages),this.options.preload&&g(this.images,(this.index+1)%this.images.length,this.options.preload),1===this.images.length&&this._currentImage.url!==this.images[0].url)){var d=this;clearTimeout(d._selectAnotherResolutionTimeout),d._selectAnotherResolutionTimeout=setTimeout(function(){d.show(0)},this.options.resolutionRefreshRate)}var l,p,f={left:0,top:0,right:"auto",bottom:"auto"},y=this.isBody?this.$root.width():this.$root.innerWidth(),v=this.isBody?e.innerHeight?e.innerHeight:this.$root.height():this.$root.innerHeight(),m=this.$itemWrapper.data("width"),w=this.$itemWrapper.data("height"),_=m/w||1,$=void 0===this._currentImage.alignX?this.options.alignX:this._currentImage.alignX,x=void 0===this._currentImage.alignY?this.options.alignY:this._currentImage.alignY,T=b(this._currentImage.scale||this.options.scale);if(this.options.debug&&(o="\nresize: boxHeight x boxWidth: "+v+" x "+y,i.debug(o)),"fit"===T||"fit-smaller"===T){if(p=w,(l=m)>y||p>v||"fit-smaller"===T){var k=y/v;k>_?(l=Math.floor(v*_),p=v):k<_?(l=y,p=Math.floor(y/_)):(l=y,p=v)}}else"fill"===T?(l=y,p=v):(l=Math.max(v*_,y),p=Math.max(l/_,v));f.top=-(p-v)*x,f.left=-(l-y)*$,f.width=l,f.height=p,this.options.bypassCss||this.$wrap.css({width:y,height:v}).find(">.backstretch-item").not(".deleteable").each(function(){t(this).find("img,video,iframe").css(f)});var W=t.Event("backstretch.resize",{relatedTarget:this.$container[0]});this.$container.trigger(W,this)}catch(t){o="resize: jadams, IE7 hack to let it fail gracefully: "+t,i.warn(o)}return this},show:function(e,i){var o=log4javascript.getLogger("j1.core.attic");if(!(Math.abs(e)>this.images.length-1)){var r=this,a=r.$wrap.find(">.backstretch-item").addClass("deleteable"),n=r.videoWrapper,s={relatedTarget:r.$container[0]};r.$container.trigger(t.Event("backstretch.before",s),[r,e]),this.index=e;var h=r.images[e];clearTimeout(r._cycleTimeout),delete r.videoWrapper;var c=p(h);return c?(r.videoWrapper=new _(h),r.$item=r.videoWrapper.$video.css("pointer-events","none")):r.$item=t("<img />"),r.$itemWrapper=t('<div class="backstretch-item">').append(r.$item),this.options.bypassCss?r.$itemWrapper.css({display:"none"}):(r.$itemWrapper.css(l.itemWrapper),r.$item.css(l.item)),r.$item.bind(c?"canplay":"load",function(h){var d=t(this).parent(),l=d.data("options");i&&(l=t.extend({},l,i));var u=this.naturalWidth||this.videoWidth||this.width,p=this.naturalHeight||this.videoHeight||this.height;d.data("width",u).data("height",p);var g=function(t){return void 0!==l[t]?l[t]:r.options[t]},f=g("transition"),y=g("transitionEasing"),v=g("transitionDuration"),m=function(){n&&(n.stop(),n.destroy()),a.remove(),!r.paused&&r.images.length>1&&r.cycle(),!r.options.bypassCss&&r.isBody,t(["before","after","show"]).each(function(){r.$container.trigger(t.Event("backstretch."+this,s),[r,e])}),c&&r.videoWrapper.play()};r.firstShow&&!r.options.animateFirst||!v||!f?(d.show(),m()):function(e){var i=e.transition||"fade";"string"==typeof i&&i.indexOf("|")>-1&&(i=i.split("|")),i instanceof Array&&(i=i[Math.round(Math.random()*(i.length-1))]);var o=e.new,r=e.old?e.old:t([]);switch(i.toString().toLowerCase()){default:case"fade":o.fadeIn({duration:e.duration,complete:e.complete,easing:e.easing||void 0});break;case"fadeinout":case"fade_in_out":var a=function(){o.fadeIn({duration:e.duration/2,complete:e.complete,easing:e.easing||void 0})};r.length?r.fadeOut({duration:e.duration/2,complete:a,easing:e.easing||void 0}):a();break;case"pushleft":case"push_left":case"pushright":case"push_right":case"pushup":case"push_up":case"pushdown":case"push_down":case"coverleft":case"cover_left":case"coverright":case"cover_right":case"coverup":case"cover_up":case"coverdown":case"cover_down":var n=i.match(/^(cover|push)_?(.*)$/),s="left"===n[2]?"right":"right"===n[2]?"left":"down"===n[2]?"top":"up"===n[2]?"bottom":"right",h={display:""},c={};if(h[s]="-100%",c[s]=0,o.css(h).animate(c,{duration:e.duration,complete:function(){o.css(s,""),e.complete.apply(this,arguments)},easing:e.easing||void 0}),"push"===n[1]&&r.length){var d={};d[s]="100%",r.animate(d,{duration:e.duration,complete:function(){r.css("display","none")},easing:e.easing||void 0})}}}({new:d,old:a,transition:f,duration:v,easing:y,complete:m}),r.firstShow=!1;var b=this.naturalWidth||this.videoWidth||this.width,w="show: imageHeight x imageWidth: "+(this.naturalHeight||this.videoHeight||this.height)+" x "+b;r.options.debug&&o.debug(w);var _="#"+r.$container[0].id,$=setInterval(function(){t(_).is(":visible")&&(clearInterval($),o.info("\ncontainer visible on id: "+_),r.resize())},50)}),r.$itemWrapper.appendTo(r.$wrap),r.$item.attr("alt",h.alt||""),r.$itemWrapper.data("options",h),c||r.$item.attr("src",h.url),r._currentImage=h,r}},current:function(){return this.index},next:function(){var t=Array.prototype.slice.call(arguments,0);return t.unshift(this.index<this.images.length-1?this.index+1:0),this.show.apply(this,t)},prev:function(){var t=Array.prototype.slice.call(arguments,0);return t.unshift(0===this.index?this.images.length-1:this.index-1),this.show.apply(this,t)},pause:function(){return this.paused=!0,this.videoWrapper&&this.videoWrapper.pause(),this},resume:function(){return this.paused=!1,this.videoWrapper&&this.videoWrapper.play(),this.cycle(),this},cycle:function(){if(this.images.length>1){clearTimeout(this._cycleTimeout);var e=this._currentImage&&this._currentImage.duration||this.options.duration,i=p(this._currentImage),o=function(){this.$item.off(".cycle"),this.paused||this.next()};if(i){if(!this._currentImage.loop){var r=0;this.$item.on("playing.cycle",function(){var e=t(this).data("player");clearTimeout(r),void 0!==e&&(r=setTimeout(function(){e.pause(),e.$video.trigger("ended")},1e3*(e.getDuration()-e.getCurrentTime())))}).on("ended.cycle",function(){clearTimeout(r)})}this.$item.on("error.cycle initerror.cycle",t.proxy(o,this))}i&&!this._currentImage.duration?this.$item.on("ended.cycle",t.proxy(o,this)):this._cycleTimeout=setTimeout(t.proxy(o,this),e)}return this},destroy:function(i){t(e).off("resize.backstretch orientationchange.backstretch"),this.videoWrapper&&this.videoWrapper.destroy(),clearTimeout(this._cycleTimeout),i||this.$wrap.remove(),this.$container.removeData("backstretch")}};var _=function(){this.init.apply(this,arguments)};_.prototype.init=function(i){var o,a=this,n=function(){a.$video=o,a.video=o[0]},s="video";if(i.url instanceof Array||!r.test(i.url)||(s="youtube"),a.type=s,"youtube"===s){_.loadYoutubeAPI(),a.ytId=i.url.match(r)[2];var h="https://www.youtube.com/embed/"+a.ytId+"?rel=0&autoplay=0&showinfo=0&controls=0&modestbranding=1&cc_load_policy=0&disablekb=1&iv_load_policy=3&loop=0&enablejsapi=1&origin="+encodeURIComponent(e.location.origin);a.__ytStartMuted=!!i.mute||void 0===i.mute,o=t("<iframe />").attr({src_to_load:h}).css({border:0,margin:0,padding:0}).data("player",a),i.loop&&o.on("ended.loop",function(){a.__manuallyStopped||a.play()}),a.ytReady=!1,n(),e.YT?(a._initYoutube(),o.trigger("initsuccess")):t(e).one("youtube_api_load",function(){a._initYoutube(),o.trigger("initsuccess")})}else{o=t("<video>").prop("autoplay",!1).prop("controls",!1).prop("loop",!!i.loop).prop("muted",!!i.mute||void 0===i.mute).prop("preload","auto").prop("poster",i.poster||"");for(var c=i.url instanceof Array?i.url:[i.url],d=0;d<c.length;d++){var l=c[d];"string"==typeof l&&(l={src:l}),t("<source>").attr("src",l.src).attr("type",l.type||null).appendTo(o)}o[0].canPlayType&&c.length?o.trigger("initsuccess"):o.trigger("initerror"),n()}},_.prototype._initYoutube=function(){var i=this,o=e.YT;i.$video.attr("src",i.$video.attr("src_to_load")).removeAttr("src_to_load");var r=!!i.$video[0].parentNode;if(!r){var a=t("<div>").css("display","none !important").appendTo(document.body);i.$video.appendTo(a)}var n=new o.Player(i.video,{events:{onReady:function(){i.__ytStartMuted&&n.mute(),r||(i.$video[0].parentNode===a[0]&&i.$video.detach(),a.remove()),i.ytReady=!0,i._updateYoutubeSize(),i.$video.trigger("canplay")},onStateChange:function(t){switch(t.data){case o.PlayerState.PLAYING:i.$video.trigger("playing");break;case o.PlayerState.ENDED:i.$video.trigger("ended");break;case o.PlayerState.PAUSED:i.$video.trigger("pause");break;case o.PlayerState.BUFFERING:i.$video.trigger("waiting");break;case o.PlayerState.CUED:i.$video.trigger("canplay")}},onPlaybackQualityChange:function(){i._updateYoutubeSize(),i.$video.trigger("resize")},onError:function(t){i.hasError=!0,i.$video.trigger({type:"error",error:t})}}});return i.ytPlayer=n,i},_.prototype._updateYoutubeSize=function(){switch(this.ytPlayer.getPlaybackQuality()||"medium"){case"small":this.video.videoWidth=426,this.video.videoHeight=240;break;case"medium":this.video.videoWidth=640,this.video.videoHeight=360;break;default:case"large":this.video.videoWidth=854,this.video.videoHeight=480;break;case"hd720":this.video.videoWidth=1280,this.video.videoHeight=720;break;case"hd1080":this.video.videoWidth=1920,this.video.videoHeight=1080;break;case"highres":this.video.videoWidth=2560,this.video.videoHeight=1440}return this},_.prototype.play=function(){return this.__manuallyStopped=!1,"youtube"===this.type?this.ytReady&&(this.$video.trigger("play"),this.ytPlayer.playVideo()):this.video.play(),this},_.prototype.pause=function(){return this.__manuallyStopped=!1,"youtube"===this.type?this.ytReady&&this.ytPlayer.pauseVideo():this.video.pause(),this},_.prototype.stop=function(){return this.__manuallyStopped=!0,"youtube"===this.type?this.ytReady&&(this.ytPlayer.pauseVideo(),this.ytPlayer.seekTo(0)):(this.video.pause(),this.video.currentTime=0),this},_.prototype.destroy=function(){return this.ytPlayer&&this.ytPlayer.destroy(),this.$video.remove(),this},_.prototype.getCurrentTime=function(t){return"youtube"!==this.type?this.video.currentTime:this.ytReady?this.ytPlayer.getCurrentTime():0},_.prototype.setCurrentTime=function(t){return"youtube"===this.type?this.ytReady&&this.ytPlayer.seekTo(t,!0):this.video.currentTime=t,this},_.prototype.getDuration=function(){return"youtube"!==this.type?this.video.duration:this.ytReady?this.ytPlayer.getDuration():0},_.loadYoutubeAPI=function(){if(!e.YT){t("script[src*=www\\.youtube\\.com\\/iframe_api]").length||t('<script type="text/javascript" src="https://www.youtube.com/iframe_api">').appendTo("body");var i=setInterval(function(){e.YT&&e.YT.loaded&&(t(e).trigger("youtube_api_load"),clearTimeout(i))},50)}};var $,x,T,k,W,I,R,Y,P,C,z=function(){if("matchMedia"in e){if(e.matchMedia("(orientation: portrait)").matches)return"portrait";if(e.matchMedia("(orientation: landscape)").matches)return"landscape"}return screen.height>screen.width?"portrait":"landscape"},S=function(){return e.innerHeight>e.innerWidth?"portrait":e.innerWidth>e.innerHeight?"landscape":"square"},A=($=navigator.userAgent,x=navigator.platform,T=$.match(/AppleWebKit\/([0-9]+)/),k=!!T&&T[1],W=$.match(/Fennec\/([0-9]+)/),I=!!W&&W[1],R=$.match(/Opera Mobi\/([0-9]+)/),Y=!!R&&R[1],P=$.match(/MSIE ([0-9]+)/),C=!!P&&P[1],!((x.indexOf("iPhone")>-1||x.indexOf("iPad")>-1||x.indexOf("iPod")>-1)&&k&&k<534||e.operamini&&"[object OperaMini]"==={}.toString.call(e.operamini)||R&&Y<7458||$.indexOf("Android")>-1&&k&&k<533||I&&I<6||"palmGetResource"in e&&k&&k<534||$.indexOf("MeeGo")>-1&&$.indexOf("NokiaBrowser/8.5.0")>-1||C&&C<=6))}(jQuery,window);
20
+ "use strict";!function(t,e,i){var r,o=/^.*(youtu\.be\/|youtube\.com\/v\/|youtube\.com\/embed\/|youtube\.com\/watch\?v=|youtube\.com\/watch\?.*\&v=)([^#\&\?]*).*/i;t.fn.backstretch=function(r,o){var a,n=arguments;return 0===t(e).scrollTop()&&e.scrollTo(0,0),this.each(function(e){var s=t(this),h=s.data("backstretch");if(h){if("string"==typeof n[0]&&"function"==typeof h[n[0]]){var c=h[n[0]].apply(h,Array.prototype.slice.call(n,1));c===h&&(c=i),c!==i&&((a=a||[])[e]=c);return}o=t.extend(h.options,o),h.hasOwnProperty("destroy")&&h.destroy(!0)}if(!r||r&&0===r.length){var d=s.css("background-image");d&&"none"!==d?r=[{url:s.css("backgroundImage").replace(/url\(|\)|"|'/g,"")}]:t.error("No images were supplied for Backstretch, or element must have a CSS-defined background image.")}h=new b(this,r,o||{}),s.data("backstretch",h)}),a?1===a.length?a[0]:a:this},t.backstretch=function(e,i){return t("body").backstretch(e,i).data("backstretch")},t.expr[":"].backstretch=function(e){return i!==t(e).data("backstretch")},t.fn.backstretch.defaults={debug:!1,duration:5e3,transition:"fade",transitionDuration:0,animateFirst:!0,alignX:.5,alignY:.5,paused:!1,start:0,preload:2,preloadSize:1,resolutionRefreshRate:2500,resolutionChangeRatioThreshold:.1};var a,n,s,h,c,d,l={wrap:{left:0,top:0,overflow:"hidden",margin:0,padding:0,height:"100%",width:"100%",zIndex:-999999},itemWrapper:{position:"absolute",display:"none",margin:0,padding:0,border:"none",width:"100%",height:"100%",zIndex:-999999},item:{position:"absolute",margin:0,padding:0,border:"none",width:"100%",height:"100%",maxWidth:"none"}},u=(a=function(t){for(var e=1;e<t.length;e++){for(var i=t[e],r=e;t[r-1]&&parseInt(t[r-1].width,10)>parseInt(i.width,10);)t[r]=t[r-1],--r;t[r]=i}return t},n=function(t,i,r){var o=e.devicePixelRatio||1,a=S();X();for(var n,s,h=i>t?"portrait":t>i?"landscape":"square",c=0,d=0;d<r.length&&("string"==typeof(s=r[d])&&(s=r[d]={url:s}),s.pixelRatio&&"auto"!==s.pixelRatio&&parseFloat(s.pixelRatio)!==o||s.deviceOrientation&&s.deviceOrientation!==a||s.windowOrientation&&s.windowOrientation!==a||s.orientation&&s.orientation!==h||(c=d,n=t,"auto"===s.pixelRatio&&(t*=o),!(s.width>=n)));d++);return r[Math.min(d,c)]},s=function(t,e){if("string"==typeof t)t=t.replace(/{{(width|height)}}/g,e);else if(t instanceof Array)for(var i=0;i<t.length;i++)t[i].src?t[i].src=s(t[i].src,e):t[i]=s(t[i],e);return t},function(e,i){for(var r=e.width(),o=e.height(),h=[],c=function(t,e){return"width"===e?r:"height"===e?o:t},d=0;d<i.length;d++)if(t.isArray(i[d])){i[d]=a(i[d]);var l=n(r,o,i[d]);h.push(l)}else{"string"==typeof i[d]&&(i[d]={url:i[d]});var u=t.extend({},i[d]);u.url=s(u.url,c),h.push(u)}return h}),p=function(t){return o.test(t.url)||t.isVideo},g=(h=[],c=function(t){for(var e=0;e<h.length;e++)if(h[e].src===t.src)return h[e];return h.push(t),t},d=function(t,e,i){"function"==typeof e&&e.call(t,i)},function e(i,r,o,a,n){if(void 0!==i){t.isArray(i)||(i=[i]),arguments.length<5&&"function"==typeof arguments[arguments.length-1]&&(n=arguments[arguments.length-1]),r="function"!=typeof r&&r?r:0,o="function"==typeof o||!o||o<0?i.length:Math.min(o,i.length),a="function"!=typeof a&&a?a:1,r>=i.length&&(r=0,o=0),a<0&&(a=o),a=Math.min(a,o);var s,h=i.slice(r+a,o-a);if(!(o=(i=i.slice(r,a)).length)){d(i,n,!0);return}for(var l=0,u=function(){++l===o&&(d(i,n,!h),e(h,0,0,a,n))},g=0;g<i.length;g++)!p(i[g])&&((s=new Image).src=i[g].url,(s=c(s)).complete?u():t(s).on("load error",u))}}),f=function(e){for(var i=[],r=0;r<e.length;r++)"string"==typeof e[r]?i.push({url:e[r]}):t.isArray(e[r])?i.push(f(e[r])):i.push(y(e[r]));return i},y=function(t,r){return(t.centeredX||t.centeredY)&&(e.console&&e.console.log&&e.console.log("jquery.backstretch: `centeredX`/`centeredY` is deprecated, please use `alignX`/`alignY`"),t.centeredX&&(t.alignX=.5),t.centeredY&&(t.alignY=.5)),i!==t.speed&&(e.console&&e.console.log&&e.console.log("jquery.backstretch: `speed` is deprecated, please use `transitionDuration`"),t.transitionDuration=t.speed,t.transition="fade"),i!==t.resolutionChangeRatioTreshold&&(e.console.log("jquery.backstretch: `treshold` is a typo!"),t.resolutionChangeRatioThreshold=t.resolutionChangeRatioTreshold),i!==t.fadeFirst&&(t.animateFirst=t.fadeFirst),i!==t.fade&&(t.transitionDuration=t.fade,t.transition="fade"),t.scale&&(t.scale=$(t.scale)),v(t)},v=function(t,e){return"left"===t.alignX?t.alignX=0:"center"===t.alignX?t.alignX=.5:"right"===t.alignX?t.alignX=1:(i!==t.alignX||e)&&(t.alignX=parseFloat(t.alignX),isNaN(t.alignX)&&(t.alignX=.5)),"top"===t.alignY?t.alignY=0:"center"===t.alignY?t.alignY=.5:"bottom"===t.alignY?t.alignY=1:(i!==t.alignX||e)&&(t.alignY=parseFloat(t.alignY),isNaN(t.alignY)&&(t.alignY=.5)),t},m={cover:"cover",fit:"fit","fit-smaller":"fit-smaller",fill:"fill"};function $(t){return m.hasOwnProperty(t)?t:"cover"}var b=function(i,r,o){this.options=t.extend({},t.fn.backstretch.defaults,o||{}),this.firstShow=!0,y(this.options,!0),this.images=f(t.isArray(r)?r:[r]),this.options.paused&&(this.paused=!0),this.options.start>=this.images.length&&(this.options.start=this.images.length-1),this.options.start<0&&(this.options.start=0),this.isBody=i===document.body;var a=t(e);this.$container=t(i),this.$root=this.isBody?H?a:t(document):this.$container,this.originalImages=this.images,this.images=u(this.options.alwaysTestWindowResolution?a:this.$root,this.originalImages),g(this.images,this.options.start||0,this.options.preload||1);var n=this.$container.children(".backstretch").first();if(this.$wrap=n.length?n:t('<div class="backstretch"></div>').css(this.options.bypassCss?{}:l.wrap).appendTo(this.$container),!this.options.bypassCss){if(!this.isBody){var s=this.$container.css("position"),h=this.$container.css("zIndex");this.$container.css({position:"static"===s?"relative":s,zIndex:"auto"===h?0:h}),this.$wrap.css({zIndex:-999998})}this.$wrap.css({position:this.isBody&&H?"fixed":"absolute"})}this.index=this.options.start,this.show(this.index),a.on("resize.backstretch",t.proxy(this.resize,this)).on("orientationchange.backstretch",t.proxy(function(){this.isBody&&0===e.pageYOffset&&(e.scrollTo(0,1),this.resize())},this))},w=function(e){var r=e.transition||"fade";"string"==typeof r&&r.indexOf("|")>-1&&(r=r.split("|")),r instanceof Array&&(r=r[Math.round(Math.random()*(r.length-1))]);var o=e.new,a=e.old?e.old:t([]);switch(r.toString().toLowerCase()){default:case"fade":o.fadeIn({duration:e.duration,complete:e.complete,easing:e.easing||i});break;case"fadeinout":case"fade_in_out":var n=function(){o.fadeIn({duration:e.duration/2,complete:e.complete,easing:e.easing||i})};a.length?a.fadeOut({duration:e.duration/2,complete:n,easing:e.easing||i}):n();break;case"pushleft":case"push_left":case"pushright":case"push_right":case"pushup":case"push_up":case"pushdown":case"push_down":case"coverleft":case"cover_left":case"coverright":case"cover_right":case"coverup":case"cover_up":case"coverdown":case"cover_down":var s=r.match(/^(cover|push)_?(.*)$/),h="left"===s[2]?"right":"right"===s[2]?"left":"down"===s[2]?"top":"up"===s[2]?"bottom":"right",c={display:""},d={};if(c[h]="-100%",d[h]=0,o.css(c).animate(d,{duration:e.duration,complete:function(){o.css(h,""),e.complete.apply(this,arguments)},easing:e.easing||i}),"push"===s[1]&&a.length){var l={};l[h]="100%",a.animate(l,{duration:e.duration,complete:function(){a.css("display","none")},easing:e.easing||i})}}};b.prototype={resize:function(){try{var o,a,n=log4javascript.getLogger("j1.core.attic"),s=this.options.alwaysTestWindowResolution?t(e):this.$root,h=s.width(),c=s.height(),d=h/(this._lastResizeContainerWidth||0),l=c/(this._lastResizeContainerHeight||0),p=this.options.resolutionChangeRatioThreshold||0;if((h!==this._lastResizeContainerWidth||c!==this._lastResizeContainerHeight)&&(Math.abs(d-1)>=p||isNaN(d)||Math.abs(l-1)>=p||isNaN(l))&&(this._lastResizeContainerWidth=h,this._lastResizeContainerHeight=c,this.images=u(s,this.originalImages),this.options.preload&&g(this.images,(this.index+1)%this.images.length,this.options.preload),1===this.images.length&&this._currentImage.url!==this.images[0].url)){var f=this;clearTimeout(f._selectAnotherResolutionTimeout),f._selectAnotherResolutionTimeout=setTimeout(function(){f.show(0)},this.options.resolutionRefreshRate)}var y={left:0,top:0,right:"auto",bottom:"auto"},v=this.isBody?this.$root.width():this.$root.innerWidth(),m=this.isBody?e.innerHeight?e.innerHeight:this.$root.height():this.$root.innerHeight(),b=this.$itemWrapper.data("width"),w=this.$itemWrapper.data("height"),_=b/w||1,x=i===this._currentImage.alignX?this.options.alignX:this._currentImage.alignX,k=i===this._currentImage.alignY?this.options.alignY:this._currentImage.alignY,W=$(this._currentImage.scale||this.options.scale);if(this.options.debug&&(r="\nresize: boxHeight x boxWidth: "+m+" x "+v,n.debug(r)),"fit"===W||"fit-smaller"===W){if(o=b,a=w,o>v||a>m||"fit-smaller"===W){var T=v/m;T>_?(o=Math.floor(m*_),a=m):T<_?(o=v,a=Math.floor(v/_)):(o=v,a=m)}}else"fill"===W?(o=v,a=m):(o=Math.max(m*_,v),a=Math.max(o/_,m));y.top=-(a-m)*k,y.left=-(o-v)*x,y.width=o,y.height=a,this.options.bypassCss||this.$wrap.css({width:v,height:m}).find(">.backstretch-item").not(".deleteable").each(function(){t(this).find("img,video,iframe").css(y)});var R=t.Event("backstretch.resize",{relatedTarget:this.$container[0]});this.$container.trigger(R,this)}catch(Y){r="resize: jadams, IE7 hack to let it fail gracefully: "+Y,n.warn(r)}return this},show:function(e,r){var o=log4javascript.getLogger("j1.core.attic");if(!(Math.abs(e)>this.images.length-1)){var a=this,n=a.$wrap.find(">.backstretch-item").addClass("deleteable"),s=a.videoWrapper,h={relatedTarget:a.$container[0]};a.$container.trigger(t.Event("backstretch.before",h),[a,e]),this.index=e;var c=a.images[e];clearTimeout(a._cycleTimeout),delete a.videoWrapper;var d=p(c);return d?(a.videoWrapper=new _(c),a.$item=a.videoWrapper.$video.css("pointer-events","none")):a.$item=t("<img />"),a.$itemWrapper=t('<div class="backstretch-item">').append(a.$item),this.options.bypassCss?a.$itemWrapper.css({display:"none"}):(a.$itemWrapper.css(l.itemWrapper),a.$item.css(l.item)),a.$item.bind(d?"canplay":"load",function(c){var l=t(this).parent(),u=l.data("options");r&&(u=t.extend({},u,r));var p=this.naturalWidth||this.videoWidth||this.width,g=this.naturalHeight||this.videoHeight||this.height;l.data("width",p).data("height",g);var f=function(t){return i!==u[t]?u[t]:a.options[t]},y=f("transition"),v=f("transitionEasing"),m=f("transitionDuration"),$=function(){s&&(s.stop(),s.destroy()),n.remove(),!a.paused&&a.images.length>1&&a.cycle(),a.options.bypassCss||a.isBody,t(["before","after","show"]).each(function(){a.$container.trigger(t.Event("backstretch."+this,h),[a,e])}),d&&a.videoWrapper.play()};(!a.firstShow||a.options.animateFirst)&&m&&y?w({new:l,old:n,transition:y,duration:m,easing:v,complete:$}):(l.show(),$()),a.firstShow=!1;var b=this.naturalWidth||this.videoWidth||this.width,_=this.naturalHeight||this.videoHeight||this.height;a.options.debug&&o.debug("show: imageHeight x imageWidth: "+_+" x "+b);var x="#"+a.$container["0"].id,k=setInterval(function(){t(x).is(":visible")&&(clearInterval(k),o.debug("\ncontainer visible on id: "+x),a.resize())},50)}),a.$itemWrapper.appendTo(a.$wrap),a.$item.attr("alt",c.alt||""),a.$itemWrapper.data("options",c),d||a.$item.attr("src",c.url),a._currentImage=c,a}},current:function(){return this.index},next:function(){var t=Array.prototype.slice.call(arguments,0);return t.unshift(this.index<this.images.length-1?this.index+1:0),this.show.apply(this,t)},prev:function(){var t=Array.prototype.slice.call(arguments,0);return t.unshift(0===this.index?this.images.length-1:this.index-1),this.show.apply(this,t)},pause:function(){return this.paused=!0,this.videoWrapper&&this.videoWrapper.pause(),this},resume:function(){return this.paused=!1,this.videoWrapper&&this.videoWrapper.play(),this.cycle(),this},cycle:function(){if(this.images.length>1){clearTimeout(this._cycleTimeout);var e=this._currentImage&&this._currentImage.duration||this.options.duration,i=p(this._currentImage),r=function(){this.$item.off(".cycle"),this.paused||this.next()};if(i){if(!this._currentImage.loop){var o=0;this.$item.on("playing.cycle",function(){var e=t(this).data("player");clearTimeout(o),void 0!==e&&(o=setTimeout(function(){e.pause(),e.$video.trigger("ended")},(e.getDuration()-e.getCurrentTime())*1e3))}).on("ended.cycle",function(){clearTimeout(o)})}this.$item.on("error.cycle initerror.cycle",t.proxy(r,this))}i&&!this._currentImage.duration?this.$item.on("ended.cycle",t.proxy(r,this)):this._cycleTimeout=setTimeout(t.proxy(r,this),e)}return this},destroy:function(i){t(e).off("resize.backstretch orientationchange.backstretch"),this.videoWrapper&&this.videoWrapper.destroy(),clearTimeout(this._cycleTimeout),i||this.$wrap.remove(),this.$container.removeData("backstretch")}};var _=function(){this.init.apply(this,arguments)};_.prototype.init=function(r){var a,n=this,s=function(){n.$video=a,n.video=a[0]},h="video";if(!(r.url instanceof Array)&&o.test(r.url)&&(h="youtube"),n.type=h,"youtube"===h){_.loadYoutubeAPI(),n.ytId=r.url.match(o)[2];var c="https://www.youtube.com/embed/"+n.ytId+"?rel=0&autoplay=0&showinfo=0&controls=0&modestbranding=1&cc_load_policy=0&disablekb=1&iv_load_policy=3&loop=0&enablejsapi=1&origin="+encodeURIComponent(e.location.origin);n.__ytStartMuted=!!r.mute||i===r.mute,a=t("<iframe />").attr({src_to_load:c}).css({border:0,margin:0,padding:0}).data("player",n),r.loop&&a.on("ended.loop",function(){n.__manuallyStopped||n.play()}),n.ytReady=!1,s(),e.YT?(n._initYoutube(),a.trigger("initsuccess")):t(e).one("youtube_api_load",function(){n._initYoutube(),a.trigger("initsuccess")})}else{a=t("<video>").prop("autoplay",!1).prop("controls",!1).prop("loop",!!r.loop).prop("muted",!!r.mute||i===r.mute).prop("preload","auto").prop("poster",r.poster||"");for(var d=r.url instanceof Array?r.url:[r.url],l=0;l<d.length;l++){var u=d[l];"string"==typeof u&&(u={src:u}),t("<source>").attr("src",u.src).attr("type",u.type||null).appendTo(a)}a[0].canPlayType&&d.length?a.trigger("initsuccess"):a.trigger("initerror"),s()}},_.prototype._initYoutube=function(){var i=this,r=e.YT;i.$video.attr("src",i.$video.attr("src_to_load")).removeAttr("src_to_load");var o=!!i.$video[0].parentNode;if(!o){var a=t("<div>").css("display","none !important").appendTo(document.body);i.$video.appendTo(a)}var n=new r.Player(i.video,{events:{onReady:function(){i.__ytStartMuted&&n.mute(),o||(i.$video[0].parentNode===a[0]&&i.$video.detach(),a.remove()),i.ytReady=!0,i._updateYoutubeSize(),i.$video.trigger("canplay")},onStateChange:function(t){switch(t.data){case r.PlayerState.PLAYING:i.$video.trigger("playing");break;case r.PlayerState.ENDED:i.$video.trigger("ended");break;case r.PlayerState.PAUSED:i.$video.trigger("pause");break;case r.PlayerState.BUFFERING:i.$video.trigger("waiting");break;case r.PlayerState.CUED:i.$video.trigger("canplay")}},onPlaybackQualityChange:function(){i._updateYoutubeSize(),i.$video.trigger("resize")},onError:function(t){i.hasError=!0,i.$video.trigger({type:"error",error:t})}}});return i.ytPlayer=n,i},_.prototype._updateYoutubeSize=function(){var t=this;switch(t.ytPlayer.getPlaybackQuality()||"medium"){case"small":t.video.videoWidth=426,t.video.videoHeight=240;break;case"medium":t.video.videoWidth=640,t.video.videoHeight=360;break;default:case"large":t.video.videoWidth=854,t.video.videoHeight=480;break;case"hd720":t.video.videoWidth=1280,t.video.videoHeight=720;break;case"hd1080":t.video.videoWidth=1920,t.video.videoHeight=1080;break;case"highres":t.video.videoWidth=2560,t.video.videoHeight=1440}return t},_.prototype.play=function(){var t=this;return t.__manuallyStopped=!1,"youtube"===t.type?t.ytReady&&(t.$video.trigger("play"),t.ytPlayer.playVideo()):t.video.play(),t},_.prototype.pause=function(){var t=this;return t.__manuallyStopped=!1,"youtube"===t.type?t.ytReady&&t.ytPlayer.pauseVideo():t.video.pause(),t},_.prototype.stop=function(){var t=this;return t.__manuallyStopped=!0,"youtube"===t.type?t.ytReady&&(t.ytPlayer.pauseVideo(),t.ytPlayer.seekTo(0)):(t.video.pause(),t.video.currentTime=0),t},_.prototype.destroy=function(){return this.ytPlayer&&this.ytPlayer.destroy(),this.$video.remove(),this},_.prototype.getCurrentTime=function(t){return"youtube"!==this.type?this.video.currentTime:this.ytReady?this.ytPlayer.getCurrentTime():0},_.prototype.setCurrentTime=function(t){var e=this;return"youtube"===e.type?e.ytReady&&e.ytPlayer.seekTo(t,!0):e.video.currentTime=t,e},_.prototype.getDuration=function(){return"youtube"!==this.type?this.video.duration:this.ytReady?this.ytPlayer.getDuration():0},_.loadYoutubeAPI=function(){if(!e.YT){t("script[src*=www\\.youtube\\.com\\/iframe_api]").length||t('<script type="text/javascript" src="https://www.youtube.com/iframe_api">').appendTo("body");var i=setInterval(function(){e.YT&&e.YT.loaded&&(t(e).trigger("youtube_api_load"),clearTimeout(i))},50)}};var x,k,W,T,R,Y,I,P,C,z,S=function(){if("matchMedia"in e){if(e.matchMedia("(orientation: portrait)").matches)return"portrait";if(e.matchMedia("(orientation: landscape)").matches)return"landscape"}return screen.height>screen.width?"portrait":"landscape"},X=function(){return e.innerHeight>e.innerWidth?"portrait":e.innerWidth>e.innerHeight?"landscape":"square"},H=(x=navigator.userAgent,k=navigator.platform,T=!!(W=x.match(/AppleWebKit\/([0-9]+)/))&&W[1],Y=!!(R=x.match(/Fennec\/([0-9]+)/))&&R[1],P=!!(I=x.match(/Opera Mobi\/([0-9]+)/))&&I[1],z=!!(C=x.match(/MSIE ([0-9]+)/))&&C[1],!((k.indexOf("iPhone")>-1||k.indexOf("iPad")>-1||k.indexOf("iPod")>-1)&&T&&T<534||e.operamini&&"[object OperaMini]"===({}).toString.call(e.operamini)||I&&P<7458||x.indexOf("Android")>-1&&T&&T<533||Y&&Y<6||"palmGetResource"in e&&T&&T<534||x.indexOf("MeeGo")>-1&&x.indexOf("NokiaBrowser/8.5.0")>-1||z&&z<=6))}(jQuery,window);
@@ -0,0 +1,28 @@
1
+ Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+
10
+ Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ Neither the name of Anaconda nor the names of any contributors
15
+ may be used to endorse or promote products derived from this software
16
+ without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28
+ THE POSSIBILITY OF SUCH DAMAGE.
@@ -1,3 +1,20 @@
1
+ /*
2
+ # -----------------------------------------------------------------------------
3
+ # ~/assets/themes/j1/modules/jquery/js/extensions/hasClass.js
4
+ # jQuery Plugin for J1 Template
5
+ # Used to check whether selected elements have specified class name or not.
6
+ #
7
+ # Product/Info:
8
+ # https://jekyll.one
9
+ # https://github.com/Dogfalo/materialize
10
+ #
11
+ # Copyright (C) 2022 Juergen Adams
12
+ #
13
+ # J1 Template is licensed under the MIT License.
14
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
15
+ # -----------------------------------------------------------------------------
16
+ */
17
+ 'use strict';
1
18
 
2
19
  ;(function(hasClass) {
3
20
 
@@ -0,0 +1,17 @@
1
+ /*
2
+ # -----------------------------------------------------------------------------
3
+ # ~/assets/themes/j1/modules/jquery/js/extensions/hasClass.js
4
+ # jQuery Plugin for J1 Template
5
+ # Used to check whether selected elements have specified class name or not.
6
+ #
7
+ # Product/Info:
8
+ # https://jekyll.one
9
+ # https://github.com/Dogfalo/materialize
10
+ #
11
+ # Copyright (C) 2022 Juergen Adams
12
+ #
13
+ # J1 Template is licensed under the MIT License.
14
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
15
+ # -----------------------------------------------------------------------------
16
+ */
17
+ "use strict";!function(t){jQuery.fn.hasClass=function(s){if(s&&"function"==typeof s.test){for(var n=0,r=this.length;n<r;n++)for(var e=this[n].className.split(/\s+/),f=0,i=e.length;f<i;f++)if(s.test(e[f]))return!0;return!1}return t.call(this,s)}}(jQuery.fn.hasClass);
@@ -1,3 +1,21 @@
1
+ /*
2
+ # -----------------------------------------------------------------------------
3
+ # ~/assets/themes/j1/modules/jquery/js/extensions/removeClass.js
4
+ # jQuery Plugin for J1 Template
5
+ # Used to to remove one or more class names from a selected element.
6
+ #
7
+ # Product/Info:
8
+ # https://jekyll.one
9
+ # https://github.com/Dogfalo/materialize
10
+ #
11
+ # Copyright (C) 2022 Juergen Adams
12
+ #
13
+ # J1 Template is licensed under the MIT License.
14
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
15
+ # -----------------------------------------------------------------------------
16
+ */
17
+ 'use strict';
18
+
1
19
  ;(function(removeClass) {
2
20
 
3
21
  jQuery.fn.removeClass = function( value ) {
@@ -0,0 +1,17 @@
1
+ /*
2
+ # -----------------------------------------------------------------------------
3
+ # ~/assets/themes/j1/modules/jquery/js/extensions/removeClass.js
4
+ # jQuery Plugin for J1 Template
5
+ # Used to to remove one or more class names from a selected element.
6
+ #
7
+ # Product/Info:
8
+ # https://jekyll.one
9
+ # https://github.com/Dogfalo/materialize
10
+ #
11
+ # Copyright (C) 2022 Juergen Adams
12
+ #
13
+ # J1 Template is licensed under the MIT License.
14
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
15
+ # -----------------------------------------------------------------------------
16
+ */
17
+ "use strict";!function(e){jQuery.fn.removeClass=function(s){if(s&&"function"==typeof s.test)for(var t=0,i=this.length;t<i;t++){var r=this[t];if(1===r.nodeType&&r.className){for(var n=r.className.split(/\s+/),a=n.length;a--;)s.test(n[a])&&n.splice(a,1);r.className=jQuery.trim(n.join(" "))}}else e.call(this,s);return this}}(jQuery.fn.removeClass);
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2013 BunKat
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,229 @@
1
+ aber,
2
+ alle,
3
+ allem,
4
+ allen,
5
+ aller,
6
+ alles,
7
+ als,
8
+ also,
9
+ am,
10
+ an,
11
+ ander,
12
+ andere,
13
+ anderem,
14
+ anderen,
15
+ anderer,
16
+ anderes,
17
+ anders,
18
+ auch,
19
+ auf,
20
+ aus,
21
+ bei,
22
+ bin,
23
+ bis,
24
+ bist,
25
+ da,
26
+ damit,
27
+ dann,
28
+ der,
29
+ den,
30
+ des,
31
+ dem,
32
+ die,
33
+ das,
34
+ daß,
35
+ dass,
36
+ derselbe,
37
+ derselben,
38
+ denselben,
39
+ desselben,
40
+ demselben,
41
+ dieselbe,
42
+ dieselben,
43
+ dasselbe,
44
+ dazu,
45
+ dein,
46
+ deine,
47
+ deinem,
48
+ deinen,
49
+ deiner,
50
+ deines,
51
+ denn,
52
+ derer,
53
+ dessen,
54
+ dich,
55
+ dir,
56
+ du,
57
+ dies,
58
+ diese,
59
+ diesem,
60
+ diesen,
61
+ dieser,
62
+ dieses,
63
+ doch,
64
+ dort,
65
+ durch,
66
+ ein,
67
+ eine,
68
+ einem,
69
+ einen,
70
+ einer,
71
+ eines,
72
+ einig,
73
+ einige,
74
+ einigem,
75
+ einigen,
76
+ einiger,
77
+ einiges,
78
+ einmal,
79
+ er,
80
+ es,
81
+ etwas,
82
+ euch,
83
+ euer,
84
+ eure,
85
+ eurem,
86
+ euren,
87
+ eurer,
88
+ eures,
89
+ für,
90
+ gegen,
91
+ gewesen,
92
+ hab,
93
+ habe,
94
+ haben,
95
+ hat,
96
+ hatte,
97
+ hatten,
98
+ hier,
99
+ hin,
100
+ hinter,
101
+ ich,
102
+ mich,
103
+ mir,
104
+ ihn,
105
+ ihm,
106
+ ihr,
107
+ ihre,
108
+ ihrem,
109
+ ihren,
110
+ ihrer,
111
+ ihres,
112
+ im,
113
+ in,
114
+ indem,
115
+ ins,
116
+ ist,
117
+ jede,
118
+ jedem,
119
+ jeden,
120
+ jeder,
121
+ jedes,
122
+ jene,
123
+ jenem,
124
+ jenen,
125
+ jener,
126
+ jenes,
127
+ jetzt,
128
+ kann,
129
+ kein,
130
+ keine,
131
+ keinem,
132
+ keinen,
133
+ keiner,
134
+ keines,
135
+ können,
136
+ könnte,
137
+ machen,
138
+ man,
139
+ manche,
140
+ manchem,
141
+ manchen,
142
+ mancher,
143
+ manches,
144
+ mein,
145
+ meine,
146
+ meinem,
147
+ meinen,
148
+ meiner,
149
+ meines,
150
+ mit,
151
+ muss,
152
+ musste,
153
+ nach,
154
+ nicht,
155
+ nichts,
156
+ noch,
157
+ nun,
158
+ nur,
159
+ ob,
160
+ oder,
161
+ ohne,
162
+ sehr,
163
+ sein,
164
+ seine,
165
+ seinem,
166
+ seinen,
167
+ seiner,
168
+ seines,
169
+ selbst,
170
+ sich,
171
+ sie,
172
+ ihnen,
173
+ sind,
174
+ so,
175
+ solche,
176
+ solchem,
177
+ solchen,
178
+ solcher,
179
+ solches,
180
+ soll,
181
+ sollte,
182
+ sondern,
183
+ sonst,
184
+ über,
185
+ um,
186
+ und,
187
+ uns,
188
+ unse,
189
+ unsem,
190
+ unsen,
191
+ unser,
192
+ unses,
193
+ unter,
194
+ viel,
195
+ vom,
196
+ von,
197
+ vor,
198
+ während,
199
+ war,
200
+ waren,
201
+ warst,
202
+ was,
203
+ weg,
204
+ weil,
205
+ weiter,
206
+ welche,
207
+ welchem,
208
+ welchen,
209
+ welcher,
210
+ welches,
211
+ wenn,
212
+ werde,
213
+ werden,
214
+ wie,
215
+ wieder,
216
+ will,
217
+ wir,
218
+ wird,
219
+ wirst,
220
+ wo,
221
+ wollen,
222
+ wollte,
223
+ würde,
224
+ würden,
225
+ zu,
226
+ zum,
227
+ zur,
228
+ zwar,
229
+ zwischen