@leuffen/themejs1 2.0.7 → 2.0.9

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.
Files changed (54) hide show
  1. package/docs/CNAME +1 -0
  2. package/docs/_config.yml +34 -0
  3. package/docs/_includes/navbar.html +16 -0
  4. package/docs/_layouts/blank.html +18 -0
  5. package/docs/_layouts/default.html +27 -0
  6. package/docs/assets/ani.svg +5 -0
  7. package/docs/assets/dist/index.js +16091 -0
  8. package/docs/assets/dist/index.js.map +1 -0
  9. package/docs/assets/dist/style.css +1095 -0
  10. package/docs/assets/dist/style.css.map +1 -0
  11. package/docs/assets/dist/style.js +28 -0
  12. package/docs/assets/dist/style.js.map +1 -0
  13. package/docs/assets/morphing.svg +5 -0
  14. package/docs/pages/html.html +11 -0
  15. package/docs/pages/index.md +39 -0
  16. package/elements/e-card-default/e-card-default.scss +18 -0
  17. package/elements/e-card-default/e-card-default.ts +13 -0
  18. package/elements/elements.scss +1 -0
  19. package/elements/elements.ts +1 -0
  20. package/index.dev.ts +3 -0
  21. package/index.ts +5 -0
  22. package/package.json +7 -2
  23. package/sections/_defaults.scss +20 -0
  24. package/sections/cta-base/cta-base.scss +15 -0
  25. package/sections/cta-base/cta-base.ts +12 -0
  26. package/sections/cta-form/cta-form.scss +21 -0
  27. package/sections/cta-form/cta-form.ts +20 -0
  28. package/sections/footer-base/footer-base.scss +59 -0
  29. package/sections/footer-base/footer-base.ts +17 -0
  30. package/sections/hero-max/hero-max.scss +100 -0
  31. package/sections/hero-max/hero-max.ts +21 -0
  32. package/sections/hero-ribbon/hero-ribbon.scss +37 -0
  33. package/sections/hero-ribbon/hero-ribbon.ts +20 -0
  34. package/sections/hero-title-small/hero-title-small.scss +28 -0
  35. package/sections/hero-title-small/hero-title-small.ts +15 -0
  36. package/sections/navbar-blox/navbar-blox.scss +177 -0
  37. package/sections/navbar-blox/navbar-blox.ts +54 -0
  38. package/sections/sec-card-2col/sec-card-2col.scss +35 -0
  39. package/sections/sec-card-2col/sec-card-2col.ts +20 -0
  40. package/sections/sec-card-feature/sec-card-feature.scss +35 -0
  41. package/sections/sec-card-feature/sec-card-feature.ts +22 -0
  42. package/sections/sec-legal-content/sec-legal-content.scss +46 -0
  43. package/sections/sec-legal-content/sec-legal-content.ts +20 -0
  44. package/sections/sec-multi-card/sec-multi-card.scss +22 -0
  45. package/sections/sec-multi-card/sec-multi-card.ts +18 -0
  46. package/sections/sec-testimonial-ribbon/sec-testimonial-ribbon.scss +52 -0
  47. package/sections/sec-testimonial-ribbon/sec-testimonial-ribbon.ts +26 -0
  48. package/sections/sections.scss +14 -0
  49. package/sections/sections.ts +13 -0
  50. package/themes/_general/root-format.scss +108 -0
  51. package/themes/_vendor/font-bootstrap-icons.scss +4022 -0
  52. package/themes/_vendor/font-ubuntu.scss +38 -0
  53. package/themes/theme1/index.scss +119 -0
  54. package/templates/theme1/leistungen/_default.de.md +0 -68
package/docs/CNAME ADDED
@@ -0,0 +1 @@
1
+ themejs.lab.leuffen.de
@@ -0,0 +1,34 @@
1
+ # Changes to this file will NOT be reloaded in jekyll --watch mode! Restart
2
+ # jekyll after updating this file!
3
+
4
+ google_analytics:
5
+ show_downloads: true
6
+
7
+ # Make directory-style links
8
+ #permalink: pretty
9
+ #exclude: ['assets']
10
+
11
+ sass:
12
+ sass_dir: _sass_disabled
13
+
14
+ livereload: true
15
+
16
+ defaults:
17
+ - scope:
18
+ path: ""
19
+ values:
20
+ layout: "default"
21
+ - scope:
22
+ path: "_posts"
23
+ values:
24
+ layout: "post"
25
+
26
+ collections:
27
+ snippets:
28
+ output: false
29
+
30
+
31
+ plugins:
32
+ - jekyll-optional-front-matter
33
+ - jekyll-sitemap
34
+
@@ -0,0 +1,16 @@
1
+
2
+ <nav>
3
+ <p class="navbar-brand">
4
+ Hamburger Brand
5
+ </p>
6
+
7
+ <ul class="mainbar">
8
+ <li><a href="index.html">Home</a></li>
9
+ <li><a href="about.html">About</a></li>
10
+ </ul>
11
+
12
+ <ul class="minibar">
13
+ <li><a href="index.html">Home</a></li>
14
+ <li><a href="about.html">About</a></li>
15
+ </ul>
16
+ </nav>
@@ -0,0 +1,18 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Title</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, shrink-to-fit=no, user-scalable=no">
7
+
8
+ <link href="/assets/dist/style.css" rel="stylesheet">
9
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
10
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
11
+ <script src="/assets/dist/index.js" type="module"></script>
12
+
13
+
14
+ </head>
15
+ <body>
16
+ {{ content }}
17
+ </body>
18
+ </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Title</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, shrink-to-fit=no, user-scalable=no">
7
+ <link href="/assets/dist/style.css" rel="stylesheet">
8
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
9
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
10
+ <script src="/assets/dist/index.js" type="module"></script>
11
+
12
+ </head>
13
+ <body>
14
+
15
+ <main class="container-fluid">
16
+ <joda-content class="debug">
17
+
18
+ {{ content }}
19
+
20
+
21
+
22
+ </joda-content>
23
+
24
+ </main>
25
+
26
+ </body>
27
+ </html>
@@ -0,0 +1,5 @@
1
+ <svg id="epYzPWyjkmi1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 600" shape-rendering="geometricPrecision" text-rendering="geometricPrecision">
2
+ <style><![CDATA[
3
+ #epYzPWyjkmi5_to {animation: epYzPWyjkmi5_to__to 3000ms linear 1 normal forwards}@keyframes epYzPWyjkmi5_to__to { 0% {transform: translate(280.008982px,100.031998px)} 6.666667% {transform: translate(280.008982px,125.806168px)} 13.333333% {transform: translate(280.008982px,100.031998px)} 100% {transform: translate(280.008982px,100.031998px)}} #epYzPWyjkmi6_tr {animation: epYzPWyjkmi6_tr__tr 3000ms linear 1 normal forwards}@keyframes epYzPWyjkmi6_tr__tr { 0% {transform: translate(280.008987px,320.019785px) rotate(0deg)} 6.666667% {transform: translate(280.008987px,320.019785px) rotate(0deg)} 100% {transform: translate(280.008987px,320.019785px) rotate(360deg)}}
4
+ ]]></style>
5
+ <g transform="translate(19.991013 0)"><ellipse rx="180" ry="180" transform="translate(280.008982 320.019785)" fill="#fff" stroke="#166bff" stroke-width="14"/><path d="M230.300596,110.171584h60" transform="matrix(.69016 0.723657-.723657 0.69016 339.381731-84.384601)" fill="#fff" stroke="#166bff" stroke-width="14" stroke-linecap="round"/><g id="epYzPWyjkmi5_to" transform="translate(280.008982,100.031998)"><path d="M230.300596,110.171584h80" transform="translate(-270.300596,-110.171584)" fill="#fff" stroke="#166bff" stroke-width="14" stroke-linecap="round"/></g><g id="epYzPWyjkmi6_tr" transform="translate(280.008987,320.019785) rotate(0)"><path d="M265.150298,229.743893v-140" transform="translate(-265.150304,-229.743893)" fill="#fff" stroke="#166bff" stroke-width="14" stroke-linecap="round"/></g></g></svg>