@leuffen/themejs1 5.0.1 → 5.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_tpl/_root/.editorconfig +34 -0
- package/_tpl/_root/.gitattributes +8 -0
- package/_tpl/_root/.kick.yml +40 -0
- package/_tpl/_root/docs/_config.yml +37 -0
- package/_tpl/_root/docs/_data/defaults.yaml +10 -0
- package/_tpl/_root/docs/_data/general.yml +44 -0
- package/_tpl/_root/docs/_data/languages.yml +4 -0
- package/_tpl/_root/docs/_data/openhours.yml +55 -0
- package/_tpl/_root/docs/_data/openhours.yml.d.json +84 -0
- package/_tpl/_root/docs/_data/openhours.yml.d.ts +31 -0
- package/_tpl/_root/docs/_data/translations.yml +2 -0
- package/_tpl/_root/docs/_includes/dist/index_embed.js +41 -0
- package/_tpl/_root/docs/_includes/dist/index_embed.js.map +1 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.css +1 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.css.map +1 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.js +4 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.js.map +1 -0
- package/_tpl/_root/docs/_includes/do/link.html +1 -0
- package/_tpl/_root/docs/_includes/do/remove-line-breaks.html +9 -0
- package/_tpl/_root/docs/_includes/do/trans.html +1 -0
- package/_tpl/_root/docs/_includes/el/address.html +11 -0
- package/_tpl/_root/docs/_includes/el/navbar.html +22 -0
- package/_tpl/_root/docs/_includes/el/openhours.html +14 -0
- package/_tpl/_root/docs/_includes/el/pagebuilder-link.html +1 -0
- package/_tpl/_root/docs/_includes/el/tag-link-list.html +7 -0
- package/_tpl/_root/docs/_includes/footer.md +33 -0
- package/_tpl/_root/docs/_includes/fragments.html +39 -0
- package/_tpl/_root/docs/_includes/global.md +15 -0
- package/_tpl/_root/docs/_layouts/0_blanc.html +88 -0
- package/_tpl/_root/docs/_layouts/1_body.html +13 -0
- package/_tpl/_root/docs/_layouts/2_script.html +18 -0
- package/_tpl/_root/docs/_layouts/3_1_navbar.html +36 -0
- package/_tpl/_root/docs/_layouts/3_2_footer.html +18 -0
- package/_tpl/_root/docs/_layouts/3_3_1_content.html +13 -0
- package/_tpl/_root/docs/_layouts/3_3_main.html +7 -0
- package/_tpl/_root/docs/_layouts/article.html +25 -0
- package/_tpl/_root/docs/_layouts/legal/impressum.html +46 -0
- package/_tpl/_root/docs/_layouts/legal.html +17 -0
- package/_tpl/_root/docs/_layouts/website.html +9 -0
- package/_tpl/_root/docs/assets/dist/index.js +5128 -0
- package/_tpl/_root/docs/assets/dist/index.js.LICENSE.txt +5 -0
- package/_tpl/_root/docs/assets/dist/index.js.map +1 -0
- package/_tpl/_root/docs/assets/dist/polyfill-custom-elements.js +3 -0
- package/_tpl/_root/docs/assets/dist/style.css +5 -0
- package/_tpl/_root/docs/assets/dist/style.css.map +1 -0
- package/_tpl/_root/docs/assets/dist/style.js +4 -0
- package/_tpl/_root/docs/assets/dist/style.js.map +1 -0
- package/_tpl/_root/docs/assets/dist/style_custom.css +5 -0
- package/_tpl/_root/docs/assets/dist/style_custom.js +4 -0
- package/_tpl/_root/docs/assets/dist/style_late.css +1 -0
- package/_tpl/_root/docs/assets/dist/style_late.css.map +1 -0
- package/_tpl/_root/docs/assets/dist/style_late.js +4 -0
- package/_tpl/_root/docs/assets/dist/style_late.js.map +1 -0
- package/_tpl/_root/docs/assets/leuffen-logo-big.svg +57 -0
- package/_tpl/_root/docs/assets/logo.png +0 -0
- package/_tpl/_root/docs/assets/logo.webp +0 -0
- package/_tpl/_root/package.json +28 -0
- package/_tpl/_root/src/_variables.scss +35 -0
- package/_tpl/_root/src/index.ts +5 -0
- package/_tpl/_root/src/index_embed.ts +4 -0
- package/_tpl/_root/src/style.scss +10 -0
- package/_tpl/_root/src/style_custom.scss +34 -0
- package/_tpl/_root/src/style_embed.scss +4 -0
- package/_tpl/_root/src/style_late.scss +3 -0
- package/_tpl/_root/tsconfig.json +20 -0
- package/_tpl/_root/webpack.config.js +75 -0
- package/_tpl/pages/praxis-gallery.de.md +34 -0
- package/_tpl/pages/termin-redirect.de.md +21 -0
- package/_variables.scss +1 -1
- package/elements/elements.scss +0 -1
- package/elements/elements.ts +0 -1
- package/index.scss +2 -0
- package/package.json +4 -4
- package/sections/cta-base/cta-base.ts +2 -2
- package/sections/cta-form/cta-form.ts +11 -9
- package/sections/footer-base/footer-base.scss +13 -1
- package/sections/footer-base/footer-base.ts +3 -3
- package/sections/hero-max/hero-max.ts +3 -2
- package/sections/image-gallery1/image-gallery1.scss +87 -0
- package/sections/image-gallery1/image-gallery1.ts +22 -0
- package/sections/sec-card-2col/sec-card-2col.scss +1 -1
- package/sections/sec-card-2col/sec-card-2col.ts +4 -2
- package/sections/sec-legal-content/sec-legal-content.ts +3 -2
- package/sections/sec-multi-card/sec-multi-card.scss +50 -5
- package/sections/sec-multi-card/sec-multi-card.ts +17 -3
- package/sections/sections.scss +1 -0
- package/sections/sections.ts +1 -0
- package/themes/theme2/index.scss +201 -0
- package/themes/theme2/theme1.dev.ts +127 -0
- package/elements/e-card-default/e-card-default.scss +0 -45
- package/elements/e-card-default/e-card-default.ts +0 -16
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assets/dist/style_late.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;ACNA","sources":["webpack:///webpack/bootstrap","webpack:///webpack/runtime/make namespace object","webpack:///./src/style_late.scss?0f8c"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// extracted by mini-css-extract-plugin\nexport {};"],"names":[],"sourceRoot":""}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg width="100%" height="100%" viewBox="0 0 368 116" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
+
<g transform="matrix(1,0,0,1,-574.997,-1110.98)">
|
|
5
|
+
<g transform="matrix(1.45789,0,0,0.9323,280.088,821.159)">
|
|
6
|
+
<g transform="matrix(1.02069,0,0,0.925532,-6.49663,24.955)">
|
|
7
|
+
<path d="M410.67,352.596C410.67,328.488 399.321,308.915 385.341,308.915L229.878,308.915C215.899,308.915 204.549,328.488 204.549,352.596L204.549,398.858C204.549,422.966 215.899,442.538 229.878,442.538L385.341,442.538C399.321,442.538 410.67,422.966 410.67,398.858L410.67,352.596Z" style="fill:none;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<g transform="matrix(1.02069,0,0,0.925532,-6.49663,24.955)">
|
|
10
|
+
<path d="M410.67,351.916C410.67,335.244 402.822,321.709 393.154,321.709L239.124,321.709C229.456,321.709 221.608,335.244 221.608,351.916L221.608,412.331C221.608,429.003 229.456,442.538 239.124,442.538L393.154,442.538C402.822,442.538 410.67,429.003 410.67,412.331L410.67,351.916Z" style="fill:rgb(55,181,82);"/>
|
|
11
|
+
</g>
|
|
12
|
+
<g transform="matrix(1.02069,0,0,0.925532,-6.49663,-61.879)">
|
|
13
|
+
<rect x="365.182" y="499.399" width="45.489" height="36.96" style="fill:rgb(55,181,82);"/>
|
|
14
|
+
</g>
|
|
15
|
+
<g transform="matrix(1.02069,0,0,0.925532,-6.49663,-61.879)">
|
|
16
|
+
<rect x="365.182" y="499.399" width="45.489" height="36.96" style="fill:rgb(55,181,82);"/>
|
|
17
|
+
</g>
|
|
18
|
+
<g transform="matrix(1.02069,0,0,0.925532,-153.041,-139.503)">
|
|
19
|
+
<rect x="365.182" y="499.399" width="45.489" height="36.96" style="fill:rgb(55,181,82);"/>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
<g transform="matrix(1.11236,0,0,0.921706,-92.571,592.848)">
|
|
23
|
+
<g transform="matrix(83.6174,0,0,91.6667,632.249,673.43)">
|
|
24
|
+
<path d="M0.259,0.01C0.223,0.009 0.193,0.005 0.17,-0.002C0.146,-0.009 0.127,-0.02 0.113,-0.034C0.099,-0.047 0.089,-0.064 0.084,-0.085C0.078,-0.105 0.075,-0.128 0.075,-0.154L0.075,-0.756L0.196,-0.776L0.196,-0.177C0.196,-0.162 0.197,-0.15 0.2,-0.14C0.202,-0.13 0.206,-0.122 0.212,-0.115C0.218,-0.108 0.226,-0.102 0.236,-0.099C0.247,-0.095 0.26,-0.092 0.276,-0.09L0.259,0.01Z" style="fill:white;fill-rule:nonzero;"/>
|
|
25
|
+
</g>
|
|
26
|
+
<g transform="matrix(83.6174,0,0,91.6667,653.906,673.43)">
|
|
27
|
+
<path d="M0.048,-0.259C0.048,-0.305 0.055,-0.345 0.069,-0.38C0.082,-0.415 0.1,-0.444 0.123,-0.467C0.146,-0.49 0.172,-0.507 0.201,-0.519C0.23,-0.53 0.26,-0.536 0.291,-0.536C0.363,-0.536 0.419,-0.514 0.46,-0.469C0.5,-0.424 0.52,-0.358 0.52,-0.269C0.52,-0.262 0.52,-0.255 0.52,-0.247C0.519,-0.238 0.519,-0.231 0.518,-0.224L0.173,-0.224C0.176,-0.182 0.191,-0.15 0.218,-0.127C0.244,-0.103 0.282,-0.092 0.332,-0.092C0.361,-0.092 0.388,-0.095 0.412,-0.1C0.437,-0.105 0.456,-0.111 0.47,-0.117L0.486,-0.018C0.479,-0.015 0.47,-0.011 0.459,-0.008C0.447,-0.004 0.434,-0.001 0.419,0.002C0.404,0.005 0.387,0.008 0.37,0.01C0.353,0.012 0.335,0.013 0.317,0.013C0.271,0.013 0.231,0.006 0.197,-0.008C0.163,-0.021 0.135,-0.04 0.113,-0.065C0.091,-0.089 0.075,-0.117 0.064,-0.151C0.053,-0.184 0.048,-0.22 0.048,-0.259ZM0.399,-0.313C0.399,-0.33 0.397,-0.345 0.392,-0.361C0.387,-0.376 0.381,-0.389 0.372,-0.4C0.363,-0.41 0.352,-0.419 0.339,-0.426C0.326,-0.432 0.31,-0.435 0.292,-0.435C0.273,-0.435 0.257,-0.432 0.243,-0.425C0.229,-0.418 0.217,-0.408 0.207,-0.397C0.198,-0.386 0.19,-0.373 0.185,-0.358C0.18,-0.343 0.176,-0.328 0.174,-0.313L0.399,-0.313Z" style="fill:white;fill-rule:nonzero;"/>
|
|
28
|
+
</g>
|
|
29
|
+
<g transform="matrix(83.6174,0,0,91.6667,694.795,673.43)">
|
|
30
|
+
<path d="M0.506,-0.016C0.483,-0.01 0.452,-0.004 0.415,0.002C0.378,0.009 0.337,0.012 0.292,0.012C0.25,0.012 0.215,0.006 0.187,-0.006C0.158,-0.018 0.136,-0.035 0.118,-0.056C0.102,-0.077 0.089,-0.103 0.082,-0.133C0.075,-0.162 0.071,-0.195 0.071,-0.23L0.071,-0.523L0.192,-0.523L0.192,-0.249C0.192,-0.193 0.2,-0.153 0.217,-0.129C0.233,-0.105 0.261,-0.093 0.302,-0.093C0.317,-0.093 0.332,-0.094 0.348,-0.095C0.365,-0.096 0.377,-0.098 0.385,-0.1L0.385,-0.523L0.506,-0.523L0.506,-0.016Z" style="fill:white;fill-rule:nonzero;"/>
|
|
31
|
+
</g>
|
|
32
|
+
<g transform="matrix(83.6174,0,0,91.6667,735.767,673.43)">
|
|
33
|
+
<path d="M0.29,-0.776C0.318,-0.776 0.343,-0.774 0.364,-0.769C0.385,-0.763 0.401,-0.759 0.412,-0.755L0.389,-0.655C0.378,-0.66 0.365,-0.665 0.349,-0.668C0.335,-0.671 0.318,-0.673 0.301,-0.673C0.282,-0.673 0.265,-0.67 0.252,-0.665C0.239,-0.659 0.228,-0.651 0.22,-0.641C0.212,-0.631 0.206,-0.619 0.203,-0.605C0.2,-0.59 0.198,-0.575 0.198,-0.558L0.198,-0.523L0.388,-0.523L0.388,-0.422L0.198,-0.422L0.198,-0L0.077,-0L0.077,-0.56C0.077,-0.627 0.095,-0.68 0.13,-0.719C0.165,-0.757 0.219,-0.776 0.29,-0.776Z" style="fill:white;fill-rule:nonzero;"/>
|
|
34
|
+
</g>
|
|
35
|
+
<g transform="matrix(83.6174,0,0,91.6667,762.357,673.43)">
|
|
36
|
+
<path d="M0.29,-0.776C0.318,-0.776 0.343,-0.774 0.364,-0.769C0.385,-0.763 0.401,-0.759 0.412,-0.755L0.389,-0.655C0.378,-0.66 0.365,-0.665 0.349,-0.668C0.335,-0.671 0.318,-0.673 0.301,-0.673C0.282,-0.673 0.265,-0.67 0.252,-0.665C0.239,-0.659 0.228,-0.651 0.22,-0.641C0.212,-0.631 0.206,-0.619 0.203,-0.605C0.2,-0.59 0.198,-0.575 0.198,-0.558L0.198,-0.523L0.388,-0.523L0.388,-0.422L0.198,-0.422L0.198,-0L0.077,-0L0.077,-0.56C0.077,-0.627 0.095,-0.68 0.13,-0.719C0.165,-0.757 0.219,-0.776 0.29,-0.776Z" style="fill:white;fill-rule:nonzero;"/>
|
|
37
|
+
</g>
|
|
38
|
+
<g transform="matrix(83.6174,0,0,91.6667,783.516,673.43)">
|
|
39
|
+
<path d="M0.048,-0.259C0.048,-0.305 0.055,-0.345 0.069,-0.38C0.082,-0.415 0.1,-0.444 0.123,-0.467C0.146,-0.49 0.172,-0.507 0.201,-0.519C0.23,-0.53 0.26,-0.536 0.291,-0.536C0.363,-0.536 0.419,-0.514 0.46,-0.469C0.5,-0.424 0.52,-0.358 0.52,-0.269C0.52,-0.262 0.52,-0.255 0.52,-0.247C0.519,-0.238 0.519,-0.231 0.518,-0.224L0.173,-0.224C0.176,-0.182 0.191,-0.15 0.218,-0.127C0.244,-0.103 0.282,-0.092 0.332,-0.092C0.361,-0.092 0.388,-0.095 0.412,-0.1C0.437,-0.105 0.456,-0.111 0.47,-0.117L0.486,-0.018C0.479,-0.015 0.47,-0.011 0.459,-0.008C0.447,-0.004 0.434,-0.001 0.419,0.002C0.404,0.005 0.387,0.008 0.37,0.01C0.353,0.012 0.335,0.013 0.317,0.013C0.271,0.013 0.231,0.006 0.197,-0.008C0.163,-0.021 0.135,-0.04 0.113,-0.065C0.091,-0.089 0.075,-0.117 0.064,-0.151C0.053,-0.184 0.048,-0.22 0.048,-0.259ZM0.399,-0.313C0.399,-0.33 0.397,-0.345 0.392,-0.361C0.387,-0.376 0.381,-0.389 0.372,-0.4C0.363,-0.41 0.352,-0.419 0.339,-0.426C0.326,-0.432 0.31,-0.435 0.292,-0.435C0.273,-0.435 0.257,-0.432 0.243,-0.425C0.229,-0.418 0.217,-0.408 0.207,-0.397C0.198,-0.386 0.19,-0.373 0.185,-0.358C0.18,-0.343 0.176,-0.328 0.174,-0.313L0.399,-0.313Z" style="fill:white;fill-rule:nonzero;"/>
|
|
40
|
+
</g>
|
|
41
|
+
<g transform="matrix(83.6174,0,0,91.6667,824.405,673.43)">
|
|
42
|
+
<path d="M0.077,-0.506C0.1,-0.513 0.131,-0.519 0.168,-0.525C0.205,-0.531 0.247,-0.534 0.292,-0.534C0.335,-0.534 0.37,-0.528 0.399,-0.517C0.428,-0.505 0.451,-0.489 0.468,-0.468C0.485,-0.447 0.497,-0.421 0.503,-0.392C0.51,-0.362 0.514,-0.329 0.514,-0.294L0.514,-0L0.393,-0L0.393,-0.275C0.393,-0.303 0.391,-0.327 0.388,-0.346C0.384,-0.366 0.378,-0.382 0.37,-0.395C0.361,-0.407 0.35,-0.416 0.336,-0.422C0.321,-0.427 0.304,-0.43 0.283,-0.43C0.268,-0.43 0.252,-0.429 0.235,-0.427C0.218,-0.425 0.206,-0.423 0.198,-0.422L0.198,-0L0.077,-0L0.077,-0.506Z" style="fill:white;fill-rule:nonzero;"/>
|
|
43
|
+
</g>
|
|
44
|
+
</g>
|
|
45
|
+
<g transform="matrix(0.955272,0,0,0.926643,420.342,811.4)">
|
|
46
|
+
<g transform="matrix(62.5,0,0,62.5,473.217,434.009)">
|
|
47
|
+
<path d="M0.213,-0.066C0.213,-0.043 0.205,-0.024 0.19,-0.009C0.174,0.006 0.155,0.013 0.133,0.013C0.11,0.013 0.091,0.006 0.076,-0.009C0.061,-0.024 0.053,-0.043 0.053,-0.066C0.053,-0.089 0.061,-0.109 0.076,-0.124C0.091,-0.139 0.11,-0.146 0.133,-0.146C0.155,-0.146 0.174,-0.139 0.19,-0.124C0.205,-0.109 0.213,-0.089 0.213,-0.066Z" style="fill:white;fill-rule:nonzero;"/>
|
|
48
|
+
</g>
|
|
49
|
+
<g transform="matrix(62.5,0,0,62.5,481.405,434.009)">
|
|
50
|
+
<path d="M0.172,-0.263C0.172,-0.21 0.185,-0.168 0.21,-0.138C0.235,-0.107 0.27,-0.092 0.315,-0.092C0.334,-0.092 0.351,-0.093 0.365,-0.095C0.378,-0.096 0.389,-0.098 0.398,-0.1L0.398,-0.4C0.387,-0.407 0.373,-0.414 0.356,-0.421C0.338,-0.427 0.319,-0.43 0.299,-0.43C0.255,-0.43 0.223,-0.415 0.203,-0.385C0.182,-0.355 0.172,-0.314 0.172,-0.263ZM0.519,-0.016C0.495,-0.009 0.465,-0.002 0.429,0.004C0.392,0.01 0.354,0.013 0.314,0.013C0.273,0.013 0.236,0.007 0.203,-0.006C0.17,-0.019 0.142,-0.037 0.119,-0.061C0.097,-0.084 0.079,-0.113 0.067,-0.147C0.054,-0.18 0.048,-0.218 0.048,-0.26C0.048,-0.301 0.053,-0.339 0.064,-0.373C0.074,-0.406 0.089,-0.435 0.109,-0.459C0.129,-0.483 0.153,-0.501 0.182,-0.515C0.211,-0.528 0.244,-0.534 0.281,-0.534C0.306,-0.534 0.329,-0.531 0.348,-0.525C0.367,-0.519 0.384,-0.512 0.398,-0.505L0.398,-0.756L0.519,-0.776L0.519,-0.016Z" style="fill:rgb(56,59,58);fill-rule:nonzero;"/>
|
|
51
|
+
</g>
|
|
52
|
+
<g transform="matrix(62.5,0,0,62.5,514.405,434.009)">
|
|
53
|
+
<path d="M0.048,-0.259C0.048,-0.305 0.055,-0.345 0.069,-0.38C0.082,-0.415 0.1,-0.444 0.123,-0.467C0.146,-0.49 0.172,-0.507 0.201,-0.519C0.23,-0.53 0.26,-0.536 0.291,-0.536C0.363,-0.536 0.419,-0.514 0.46,-0.469C0.5,-0.424 0.52,-0.358 0.52,-0.269C0.52,-0.262 0.52,-0.255 0.52,-0.247C0.519,-0.238 0.519,-0.231 0.518,-0.224L0.173,-0.224C0.176,-0.182 0.191,-0.15 0.218,-0.127C0.244,-0.103 0.282,-0.092 0.332,-0.092C0.361,-0.092 0.388,-0.095 0.412,-0.1C0.437,-0.105 0.456,-0.111 0.47,-0.117L0.486,-0.018C0.479,-0.015 0.47,-0.011 0.459,-0.008C0.447,-0.004 0.434,-0.001 0.419,0.002C0.404,0.005 0.387,0.008 0.37,0.01C0.353,0.012 0.335,0.013 0.317,0.013C0.271,0.013 0.231,0.006 0.197,-0.008C0.163,-0.021 0.135,-0.04 0.113,-0.065C0.091,-0.089 0.075,-0.117 0.064,-0.151C0.053,-0.184 0.048,-0.22 0.048,-0.259ZM0.399,-0.313C0.399,-0.33 0.397,-0.345 0.392,-0.361C0.387,-0.376 0.381,-0.389 0.372,-0.4C0.363,-0.41 0.352,-0.419 0.339,-0.426C0.326,-0.432 0.31,-0.435 0.292,-0.435C0.273,-0.435 0.257,-0.432 0.243,-0.425C0.229,-0.418 0.217,-0.408 0.207,-0.397C0.198,-0.386 0.19,-0.373 0.185,-0.358C0.18,-0.343 0.176,-0.328 0.174,-0.313L0.399,-0.313Z" style="fill:rgb(56,59,58);fill-rule:nonzero;"/>
|
|
54
|
+
</g>
|
|
55
|
+
</g>
|
|
56
|
+
</g>
|
|
57
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "src/index.ts",
|
|
3
|
+
"directories": {
|
|
4
|
+
"doc": "docs",
|
|
5
|
+
"lib": "lib"
|
|
6
|
+
},
|
|
7
|
+
"workspaces": [
|
|
8
|
+
"workspaces/*"
|
|
9
|
+
],
|
|
10
|
+
"author": "",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@leuffen/themejs1": "^5.0.3",
|
|
13
|
+
"@micx/lib-js": "^1.0.5"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"css-loader": "^6.7.1",
|
|
17
|
+
"dart-sass": "^1.25.0",
|
|
18
|
+
"esbuild-loader": "^2.20.0",
|
|
19
|
+
"mini-css-extract-plugin": "^2.6.1",
|
|
20
|
+
"raw-loader": "^4.0.2",
|
|
21
|
+
"sass": "^1.56.1",
|
|
22
|
+
"sass-loader": "^13.0.2",
|
|
23
|
+
"style-loader": "^3.3.1",
|
|
24
|
+
"webpack": "^5.75.0",
|
|
25
|
+
"webpack-cli": "^5.0.1",
|
|
26
|
+
"webpack-dev-server": "^4.11.1"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
$font-family-base: garamond,serif;
|
|
3
|
+
//$font-family-base: sans-serif;
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
$primary: #de7924;
|
|
8
|
+
$success: #22b573;
|
|
9
|
+
$danger: #bf1c0a;
|
|
10
|
+
$warning: #bf760a;
|
|
11
|
+
$dark: #483c32;
|
|
12
|
+
$background-primary: lighten($primary, 40%);
|
|
13
|
+
$background-accent: rgba(87, 45, 15, 0.20);
|
|
14
|
+
|
|
15
|
+
$content-offset-top: 100px;
|
|
16
|
+
$content-height-adjustment: 200px;
|
|
17
|
+
|
|
18
|
+
$font-size-base: 1.2rem;
|
|
19
|
+
$line-height-base: 1.2;
|
|
20
|
+
$paragraph-margin-bottom: 1.5rem;
|
|
21
|
+
|
|
22
|
+
$minibar-text-color: black;
|
|
23
|
+
$minibar-color: transparent;
|
|
24
|
+
|
|
25
|
+
$section-border-radius: 25px;
|
|
26
|
+
|
|
27
|
+
$background: rgba(189, 172, 155, 0.34);
|
|
28
|
+
$text-color: #483c32;
|
|
29
|
+
|
|
30
|
+
$border-radius: 25px;
|
|
31
|
+
|
|
32
|
+
$text-dark: #fff;
|
|
33
|
+
$background-dark: $text-color;
|
|
34
|
+
$section-border-color: transparent;
|
|
35
|
+
$header-text-transform: unset;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
|
|
2
|
+
@import "_variables";
|
|
3
|
+
@import "@leuffen/themejs1/theme1";
|
|
4
|
+
@import "@leuffen/themejs1";
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@function toRGB ($color) {
|
|
9
|
+
@return red($color) + ", " + green($color) + ", " + blue($color);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
nav {
|
|
14
|
+
--s-box-background: rgba(255, 255, 255, 0.0);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
.tjs__hero-ribbon {
|
|
21
|
+
|
|
22
|
+
h3 {
|
|
23
|
+
color: $primary;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.tjs__hero-ribbon--wrapper {
|
|
27
|
+
background-color: rgba(63, 28, 28, 0.08);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.tjs__hero-max {
|
|
33
|
+
|
|
34
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"outDir": "./dist/",
|
|
4
|
+
"noImplicitAny": false,
|
|
5
|
+
"module": "es2020",
|
|
6
|
+
"target": "es6",
|
|
7
|
+
"jsx": "react",
|
|
8
|
+
"allowJs": true,
|
|
9
|
+
"experimentalDecorators": true,
|
|
10
|
+
"emitDecoratorMetadata": true,
|
|
11
|
+
"moduleResolution": "node",
|
|
12
|
+
"lib": [
|
|
13
|
+
"es2021",
|
|
14
|
+
"dom"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"exclude": [
|
|
18
|
+
"/node_modules/**/*"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
3
|
+
const {ESBuildMinifyPlugin} = require("esbuild-loader");
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
entry: {
|
|
7
|
+
'_includes/dist/style_embed': './src/style_embed.scss',
|
|
8
|
+
'assets/dist/style': './src/style.scss',
|
|
9
|
+
'assets/dist/style_late': './src/style_late.scss',
|
|
10
|
+
'assets/dist/style_custom': './src/style_custom.scss',
|
|
11
|
+
|
|
12
|
+
'assets/dist/index': './src/index.ts',
|
|
13
|
+
'_includes/dist/index_embed': './src/index_embed.ts'
|
|
14
|
+
},
|
|
15
|
+
cache: true,
|
|
16
|
+
module: {
|
|
17
|
+
rules: [
|
|
18
|
+
{
|
|
19
|
+
test: /\.tsx?$/,
|
|
20
|
+
use: [
|
|
21
|
+
{
|
|
22
|
+
loader: 'esbuild-loader',
|
|
23
|
+
options: {
|
|
24
|
+
loader: "ts",
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
enforce: 'pre',
|
|
31
|
+
test: /\.html$/,
|
|
32
|
+
loader: 'raw-loader',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
test: /\.(scss|css)$/,
|
|
36
|
+
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
|
|
37
|
+
include: path.resolve(__dirname, "src")
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
],
|
|
42
|
+
},
|
|
43
|
+
resolve: {
|
|
44
|
+
extensions: ['.tsx', '.ts', '.js'],
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
devtool: "eval",
|
|
48
|
+
// switch to: 'development' to debug
|
|
49
|
+
mode: "production",
|
|
50
|
+
|
|
51
|
+
plugins: [
|
|
52
|
+
|
|
53
|
+
new MiniCssExtractPlugin({
|
|
54
|
+
// Options similar to the same options in webpackOptions.output
|
|
55
|
+
// both options are optional
|
|
56
|
+
filename: "[name].css",
|
|
57
|
+
chunkFilename: "[id].css",
|
|
58
|
+
}),
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
],
|
|
62
|
+
optimization: {
|
|
63
|
+
minimize: true,
|
|
64
|
+
usedExports: true,
|
|
65
|
+
minimizer: [
|
|
66
|
+
new ESBuildMinifyPlugin({
|
|
67
|
+
target: "es2015"
|
|
68
|
+
})
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
output: {
|
|
72
|
+
filename: '[name].js',
|
|
73
|
+
path: path.resolve(__dirname, 'docs/'),
|
|
74
|
+
},
|
|
75
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
_schiller_instructions: ""
|
|
3
|
+
description: ""
|
|
4
|
+
icon: bi bi-phone
|
|
5
|
+
image: ~
|
|
6
|
+
lang: de
|
|
7
|
+
layout: article
|
|
8
|
+
order: 30
|
|
9
|
+
permalink: /praxis
|
|
10
|
+
pid: pages/praxis
|
|
11
|
+
ptags:
|
|
12
|
+
- nav
|
|
13
|
+
published: true
|
|
14
|
+
skipHead: false
|
|
15
|
+
title: Praxis
|
|
16
|
+
type: article
|
|
17
|
+
---
|
|
18
|
+
## Unsere Praxis
|
|
19
|
+
{: layout="use: #image-gallery1" .d-none}
|
|
20
|
+
|
|
21
|
+
- 
|
|
22
|
+
- 
|
|
23
|
+
- 
|
|
24
|
+
- 
|
|
25
|
+
- 
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Kontakt
|
|
29
|
+
{: layout="use: #cta-base"}
|
|
30
|
+
|
|
31
|
+
Informationen zu unseren Leistungen, Sprechstundenzeiten und Kontaktdaten finden Sie auf den nachfolgenden Seiten.
|
|
32
|
+
|
|
33
|
+
[Unsere Leistungen](/leistungen)
|
|
34
|
+
[Kontakt](/kontakt)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: ""
|
|
3
|
+
icon: bi bi-phone
|
|
4
|
+
lang: de
|
|
5
|
+
layout: article
|
|
6
|
+
order: 80
|
|
7
|
+
permalink: /termin
|
|
8
|
+
pid: pages/termin
|
|
9
|
+
ptags:
|
|
10
|
+
- nav
|
|
11
|
+
published: true
|
|
12
|
+
short_title: Termin vereinbaren
|
|
13
|
+
skipHead: false
|
|
14
|
+
title: Termin vereinbaren
|
|
15
|
+
type: article
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
window.location.href = "{{site.data.general.termin_url}}";
|
|
20
|
+
</script>
|
|
21
|
+
|
package/_variables.scss
CHANGED
package/elements/elements.scss
CHANGED
package/elements/elements.ts
CHANGED
package/index.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leuffen/themejs1",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
4
4
|
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "proprietary",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
],
|
|
28
28
|
"author": "",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@leuffen/jodastyle": "^
|
|
30
|
+
"@leuffen/jodastyle": "^3.0.2",
|
|
31
31
|
"@kasimirjs/embed": "^1.0.8",
|
|
32
|
-
"@leuffen/isl-base": "^
|
|
33
|
-
"@leuffen/liscom": "^
|
|
32
|
+
"@leuffen/isl-base": "^2.0.2",
|
|
33
|
+
"@leuffen/liscom": "^2.0.1",
|
|
34
34
|
"@leuffen/liweco-base": "^2.0.2",
|
|
35
35
|
"bootstrap": "^5.3.0"
|
|
36
36
|
},
|
|
@@ -3,18 +3,20 @@ import {Joda} from "@leuffen/jodastyle";
|
|
|
3
3
|
Joda.registerTemplate("cta-form",
|
|
4
4
|
// language=HTML
|
|
5
5
|
`
|
|
6
|
-
<
|
|
7
|
-
<
|
|
8
|
-
<slot data-select=":scope h2"></slot>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="wrapper">
|
|
6
|
+
<section class="tjs__cta-form">
|
|
7
|
+
<form data-micx-formmail-preset="default" data-micx-formmail-sent-message="E-Mail erfolgreich gesendet!">
|
|
11
8
|
<div class="container">
|
|
12
|
-
<
|
|
13
|
-
|
|
9
|
+
<slot data-select=":scope h2"></slot>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="wrapper">
|
|
12
|
+
<div class="container">
|
|
13
|
+
<div class="row g-3">
|
|
14
|
+
<slot data-select=".section-hr" data-replace=""></slot>
|
|
14
15
|
|
|
16
|
+
</div>
|
|
15
17
|
</div>
|
|
16
18
|
</div>
|
|
17
|
-
</div>
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
</form>
|
|
21
|
+
</section>
|
|
20
22
|
`);
|
|
@@ -45,6 +45,14 @@
|
|
|
45
45
|
overflow: hidden;
|
|
46
46
|
border-top: 1px solid var(--t-section-background);
|
|
47
47
|
text-align: center;
|
|
48
|
+
|
|
49
|
+
img {
|
|
50
|
+
filter: grayscale(100%);
|
|
51
|
+
&:hover {
|
|
52
|
+
filter: grayscale(0%);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
48
56
|
}
|
|
49
57
|
h3 {
|
|
50
58
|
margin-top: 20px;
|
|
@@ -71,8 +79,12 @@
|
|
|
71
79
|
}
|
|
72
80
|
}
|
|
73
81
|
.content {
|
|
74
|
-
|
|
82
|
+
border-right: 1px solid var(--t-section-border-color);
|
|
83
|
+
&:last-of-type {
|
|
84
|
+
border-right: none;
|
|
85
|
+
}
|
|
75
86
|
}
|
|
87
|
+
|
|
76
88
|
.content:last-of-type {
|
|
77
89
|
--joda-class: unset;
|
|
78
90
|
}
|
|
@@ -4,14 +4,14 @@ Joda.registerTemplate("footer-base",
|
|
|
4
4
|
// language=HTML
|
|
5
5
|
`
|
|
6
6
|
|
|
7
|
-
<
|
|
7
|
+
<footer class="tjs__footer-base [[layout.class]]">
|
|
8
8
|
<div class="[[layout.container]] h-100">
|
|
9
9
|
<div class="row">
|
|
10
|
-
<slot data-select=".section-h3 > .content" data-class=":: col-12 :xl: col"></slot>
|
|
10
|
+
<slot data-select=".section-h3 > .content" data-child-class=":: col-12 :xl: col"></slot>
|
|
11
11
|
</div>
|
|
12
12
|
</div>
|
|
13
13
|
<div class="subfooter">
|
|
14
14
|
<slot data-select="#minifooter"></slot>
|
|
15
15
|
</div>
|
|
16
|
-
</
|
|
16
|
+
</footer>
|
|
17
17
|
`);
|
|
@@ -5,7 +5,7 @@ Joda.registerTemplate("hero-max",
|
|
|
5
5
|
// language=HTML
|
|
6
6
|
`
|
|
7
7
|
|
|
8
|
-
<
|
|
8
|
+
<section class="tjs__hero-max [[layout.class]] [[layout.autoheight === false ? '' : 'tjs__hero-max--autoheight' ]] :: mobile :lg: desktop">
|
|
9
9
|
<slot data-select="img.background, :scope>.content>p.background>img" class="slideshow"></slot>
|
|
10
10
|
<div class="tjs__hero-max--out-wrapper ">
|
|
11
11
|
<div class="tjs__hero-max--container [[layout.container]]">
|
|
@@ -17,5 +17,6 @@ Joda.registerTemplate("hero-max",
|
|
|
17
17
|
</div>
|
|
18
18
|
</div>
|
|
19
19
|
</div>
|
|
20
|
-
</
|
|
20
|
+
</section>
|
|
21
|
+
|
|
21
22
|
`);
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.tjs-image-gallery1 {
|
|
4
|
+
padding: var(--t-section-padding);
|
|
5
|
+
background: var(--t-section-background);
|
|
6
|
+
|
|
7
|
+
&__header {
|
|
8
|
+
text-align: center;
|
|
9
|
+
padding-bottom: 40px;
|
|
10
|
+
&:empty {
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&__images {
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-wrap: wrap;
|
|
18
|
+
width: 100%;
|
|
19
|
+
ul {
|
|
20
|
+
margin: 0;
|
|
21
|
+
|
|
22
|
+
&> li {
|
|
23
|
+
list-style: none;
|
|
24
|
+
margin: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&__images-image {
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
flex-grow: 3;
|
|
35
|
+
transform: scale(100%);
|
|
36
|
+
transition: transform 0.2s ease-in-out;
|
|
37
|
+
min-width: 300px;
|
|
38
|
+
padding: 5px;
|
|
39
|
+
display: inline-block;
|
|
40
|
+
img {
|
|
41
|
+
&:hover {
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
border-radius: var(--t-section-border-radius);
|
|
46
|
+
width: 100%;
|
|
47
|
+
height: 100%;
|
|
48
|
+
object-fit: cover;
|
|
49
|
+
object-position: center center;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&.mobile &__images-image {
|
|
54
|
+
width: 100%;
|
|
55
|
+
height: auto;
|
|
56
|
+
aspect-ratio: 16/9;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&__images-image:last-child {
|
|
60
|
+
width: 50%;
|
|
61
|
+
height: auto;
|
|
62
|
+
aspect-ratio: 16/9;
|
|
63
|
+
flex-grow: 3;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&__images-image:nth-child(1n) {
|
|
67
|
+
width: 75%;
|
|
68
|
+
height: auto;
|
|
69
|
+
aspect-ratio: 16/9;
|
|
70
|
+
}
|
|
71
|
+
&__images-image:nth-child(2n) {
|
|
72
|
+
width: 25%;
|
|
73
|
+
aspect-ratio: 2/1;
|
|
74
|
+
}
|
|
75
|
+
&__images-image:nth-child(3n) {
|
|
76
|
+
width: 25%;
|
|
77
|
+
aspect-ratio: 5/4;
|
|
78
|
+
}
|
|
79
|
+
&__images-image:nth-child(4n) {
|
|
80
|
+
width: 25%;
|
|
81
|
+
aspect-ratio: 2/1;
|
|
82
|
+
}
|
|
83
|
+
&__images-image:nth-child(5n) {
|
|
84
|
+
width: 50%;
|
|
85
|
+
aspect-ratio: 2/1;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {Joda} from "@leuffen/jodastyle";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
Joda.registerTemplate("image-gallery1__images-image",
|
|
5
|
+
// language=HTML
|
|
6
|
+
`
|
|
7
|
+
|
|
8
|
+
<slot class="tjs-image-gallery1__images-image" data-select="img"></slot>
|
|
9
|
+
|
|
10
|
+
`);
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
Joda.registerTemplate("image-gallery1",
|
|
14
|
+
// language=HTML
|
|
15
|
+
`
|
|
16
|
+
|
|
17
|
+
<section class="tjs-image-gallery1 container :: mobile :lg: desktop">
|
|
18
|
+
<slot class="tjs-image-gallery1__header"></slot>
|
|
19
|
+
<slot class="tjs-image-gallery1__images" data-select="ul > li" data-child-layout="use: #image-gallery1__images-image"></slot>
|
|
20
|
+
</section>
|
|
21
|
+
|
|
22
|
+
`);
|