@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,39 @@
|
|
|
1
|
+
|
|
2
|
+
<template id="sprechzeiten">
|
|
3
|
+
<div class="row gx-5">
|
|
4
|
+
<div class="col-12 col-lg-6">
|
|
5
|
+
<slot></slot>
|
|
6
|
+
</div>
|
|
7
|
+
<article class="col-12 col-lg-6">
|
|
8
|
+
<div class="sprechzeiten">
|
|
9
|
+
<div class="row g-5">
|
|
10
|
+
<div class="d-none d-xl-block col-12 col-xl-6 image">
|
|
11
|
+
<slot data-select="img.sprechzeiten"></slot>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="col-12 col-xl-6">
|
|
14
|
+
<div class="card">
|
|
15
|
+
<div class="row g-5">
|
|
16
|
+
<div class="col-12 col-sm-6 col-lg-12">
|
|
17
|
+
<h3>Unsere Sprechzeiten</h3>
|
|
18
|
+
{% include el/openhours.html %}
|
|
19
|
+
</div>
|
|
20
|
+
<div class="col-12 col-sm-6 col-lg-12">
|
|
21
|
+
<h3 class="">Sie finden uns in der</h3>
|
|
22
|
+
<address>
|
|
23
|
+
{{ site.data.general.street }}<br>
|
|
24
|
+
{{ site.data.general.zip }} {{ site.data.general.city }}
|
|
25
|
+
</address>
|
|
26
|
+
<figure class="phone">
|
|
27
|
+
<a href="tel:{{ site.data.general.phone1 }}" title="Telefon"><i class="bi bi-phone"></i> {{site.data.general.phone1_text}}</a>
|
|
28
|
+
</figure>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
</article>
|
|
38
|
+
</div>
|
|
39
|
+
</template>
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
---
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html class="loader" lang="{{ page.lang }}">
|
|
6
|
+
<head>
|
|
7
|
+
<base href="{% if site.baseurl == "" or site.baseurl == null %}/{% else %}{{ site.baseurl }}{% endif %}">
|
|
8
|
+
|
|
9
|
+
<meta name="google-site-verification" content="_KjVejDq0FutLH5_94v9Oq9nUIox549Ksb1LHjtUHXc" />
|
|
10
|
+
|
|
11
|
+
<link rel="canonical" href="{{ site.data.general.site_base_url }}{{ page.url }}"/>
|
|
12
|
+
<meta charset="utf-8">
|
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5.0, shrink-to-fit=no">
|
|
14
|
+
|
|
15
|
+
<title>{% if page.type != 'website' %}{{ page.title | strip_html | escape }} - {%endif%}{{ site.data.general.title }}</title>
|
|
16
|
+
<meta name="description" content="{{ page.description | strip_newlines| strip_html | escape | replace: " ", " " | replace: " ", " " | replace: " ", " " | lstrip}}">
|
|
17
|
+
<meta name="keywords" content="{{ page.keywords | strip_newlines | escape }}">
|
|
18
|
+
<meta name="last-modified" content="{{ site.time }}">
|
|
19
|
+
<meta name="robots" content="index,follow">
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
<meta property="og:url" content="{{ site.data.general.site_base_url }}{{ page.dir }}">
|
|
23
|
+
<meta property="og:type" content="{{ page.type | default: 'article' }}">
|
|
24
|
+
<meta property="og:site_name" content="{{ site.data.general.title }}">
|
|
25
|
+
<meta property="og:title" content="{% if page.type != 'website' %}{{ page.title | strip_html | escape }}} - {%endif%}{{ site.data.general.title }}">
|
|
26
|
+
<meta property="og:description" content="{{ page.description | strip_html | strip_newlines | escape | replace: " ", " " | replace: " ", " " | replace: " ", " " | lstrip }}">
|
|
27
|
+
|
|
28
|
+
<meta property="og:image" itemprop="image" content="{{ site.data.style.logo256 }}">
|
|
29
|
+
<meta property="og:image:type" content="image/png">
|
|
30
|
+
<meta property="og:image:width" content="200">
|
|
31
|
+
<meta property="og:image:height" content="200">
|
|
32
|
+
|
|
33
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
34
|
+
<meta name="twitter:title" content="{{ page.title | strip_html }}">
|
|
35
|
+
<meta name="twitter:description" content="{{ page.description | strip_html | strip_newlines | escape }}">
|
|
36
|
+
<meta name="twitter:image" content="{{ site.data.style.logo256 }}">
|
|
37
|
+
|
|
38
|
+
{% if page.type != 'website' %}
|
|
39
|
+
<meta property="article:author" content="{{ site.data.general.title }}">
|
|
40
|
+
<meta property="article:tag" content="{{ page.keywords }}">
|
|
41
|
+
<meta property="article:section" content="{{ page.section }}">
|
|
42
|
+
{% endif %}
|
|
43
|
+
|
|
44
|
+
<link rel="dns-prefetch" href="https://cdn.leuffen.de">
|
|
45
|
+
<link rel="preconnect" href="https://cdn.leuffen.de">
|
|
46
|
+
|
|
47
|
+
<link rel="icon" href="/assets/logo.png" />
|
|
48
|
+
<script>
|
|
49
|
+
window.lang = '{{ page.lang }}';
|
|
50
|
+
window.pid = '{{ page.pid }}'
|
|
51
|
+
window.layout = '{{ page.layout }}'
|
|
52
|
+
window.openhours = {{ site.data.openhours | jsonify }};
|
|
53
|
+
window.micx_subscription_id = '{{ site.data.general.subscription_id }}';
|
|
54
|
+
window.mapUrl = '{{ site.data.general.map_url }}';
|
|
55
|
+
</script>
|
|
56
|
+
<script>
|
|
57
|
+
const isNotSafari = () => {
|
|
58
|
+
const userAgent = navigator.userAgent.toLowerCase();
|
|
59
|
+
return userAgent.indexOf('safari') == -1 || userAgent.indexOf('chrome') > -1;
|
|
60
|
+
}
|
|
61
|
+
if( ! isNotSafari()) {
|
|
62
|
+
console.log("Safari Browser detected - loading polyfill...");
|
|
63
|
+
let node = document.createElement("script");
|
|
64
|
+
node.setAttribute("src", "/assets/dist/polyfill-custom-elements.js")
|
|
65
|
+
document.head.append(node)
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
</script>
|
|
70
|
+
<style>
|
|
71
|
+
{% include dist/style_embed.css %}
|
|
72
|
+
</style>
|
|
73
|
+
<script>
|
|
74
|
+
{% capture js %}
|
|
75
|
+
{% include dist/index_embed.js %}
|
|
76
|
+
{% endcapture %}
|
|
77
|
+
{{ js | replace: "</script>", "<\/script>"}}
|
|
78
|
+
</script>
|
|
79
|
+
|
|
80
|
+
<script src="assets/dist/index.js" type="module" async></script>
|
|
81
|
+
<link rel="preload" href="assets/dist/style_custom.css" as="style" onload="this.onload=null;this.rel='stylesheet';">
|
|
82
|
+
<link rel="preload" href="assets/dist/style.css" as="style" onload="this.onload=null;this.rel='stylesheet';this.nextElementSibling.rel='preload'">
|
|
83
|
+
<link rel="" href="assets/dist/style_late.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
</head>
|
|
87
|
+
{{ content }}
|
|
88
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: 1_body
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{{ content }}
|
|
6
|
+
|
|
7
|
+
<!-- Templates from /_elements -->
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
{% for template in site.elements %}
|
|
11
|
+
<template id="{{ template.slug }}">
|
|
12
|
+
{{ template.content | strip_newlines | whitespace_strip }}
|
|
13
|
+
</template>
|
|
14
|
+
{% endfor %}
|
|
15
|
+
|
|
16
|
+
<!-- # Put <script> here -->
|
|
17
|
+
<liweco-vacation-modal></liweco-vacation-modal>
|
|
18
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: 2_script
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
<nav layout="use: #navbar-switch1">
|
|
7
|
+
|
|
8
|
+
<div class="brand" style="margin-right: 20px;">
|
|
9
|
+
<a href="/">
|
|
10
|
+
<img src="/assets/logo.webp" alt="{{ site.data.general.logoalt }}" height="64" class="p-1" style="float:left">
|
|
11
|
+
<div style="font-size: 1.1em;float:right" class="m-2 text-dark">
|
|
12
|
+
Hausarztpraxis<br>Dr. Heike Falk
|
|
13
|
+
</div>
|
|
14
|
+
</a>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<ul class="navbar-top">
|
|
18
|
+
<li>
|
|
19
|
+
<a href="/kontakt" aria-label="Anschrift"><i class="bi bi-geo-alt-fill text-primary"></i><span class=":: d-none :xl:"> {{ site.data.general.street }}, {{ site.data.general.city }}</span></a>
|
|
20
|
+
</li>
|
|
21
|
+
<li>
|
|
22
|
+
<a href="tel:{{site.data.general.phone1 }}" aria-label="Telefonnummer - jetzt anrufen"><i class="bi bi-phone-fill text-primary"></i><span class=":: d-none :xl:"> {{ site.data.general.phone1_text }}</span></a>
|
|
23
|
+
</li>
|
|
24
|
+
<li>
|
|
25
|
+
<a href="{% if site.data.general.termin_url %}{{site.data.general.termin_url}}{% else %}/kontakt{% endif %}" target="_blank" aria-label="Termin vereinbaren"><i class="bi bi-calendar-check-fill text-primary"></i><span class=":: d-none :xl:"> Termin vereinbaren</span></a>
|
|
26
|
+
</li>
|
|
27
|
+
</ul>
|
|
28
|
+
|
|
29
|
+
<ul class="navbar-main">
|
|
30
|
+
{% include el/navbar.html ptag="nav" %}
|
|
31
|
+
</ul>
|
|
32
|
+
</nav>
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
{{ content }}
|
|
36
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: 3_1_navbar
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{{content}}
|
|
6
|
+
|
|
7
|
+
<!-- Path: docs/_layouts/3_2_footer.html -->
|
|
8
|
+
<footer style="--joda-use: #footer-base;--layout-class: dark;--border-color: transparent;">
|
|
9
|
+
<joda-split>
|
|
10
|
+
|
|
11
|
+
{% capture footer_include %}
|
|
12
|
+
{% include footer.md %}
|
|
13
|
+
{% endcapture %}
|
|
14
|
+
|
|
15
|
+
{{ footer_include | markdownify }}
|
|
16
|
+
|
|
17
|
+
</joda-split>
|
|
18
|
+
</footer>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: 3_3_1_content
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
<joda-split class="article bg-light">
|
|
8
|
+
|
|
9
|
+
<h1 layout="use: #hero-title-small">{{ page.title }}</h1>
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
{% if page.image %}
|
|
13
|
+
<img src="{{ page.image }}">
|
|
14
|
+
{% endif %}
|
|
15
|
+
{% if page.header %}
|
|
16
|
+
{{ page.header }}
|
|
17
|
+
{% endif %}
|
|
18
|
+
<h2 hidden></h2>
|
|
19
|
+
|
|
20
|
+
{{ content }}
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
</joda-split>
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: legal
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
<h2>Angaben gemäß § 5 TMG</h2>
|
|
7
|
+
|
|
8
|
+
<p>
|
|
9
|
+
<span class="fw-bold">{{ site.data.general.name}}</span><br>
|
|
10
|
+
{% if site.data.general.name2 %}
|
|
11
|
+
{{site.data.general.name2}}<br>
|
|
12
|
+
{% endif %}
|
|
13
|
+
{{site.data.general.street}}<br>
|
|
14
|
+
{{site.data.general.zip}} {{site.data.general.city}}<br><br>
|
|
15
|
+
<span class="fw-bold">Konakt:</span><br>
|
|
16
|
+
Telefon: <a href="tel:{{site.data.general.phone1}}">{{site.data.general.phone1_text}}</a><br>
|
|
17
|
+
{% if site.data.general.fax1_text %}
|
|
18
|
+
Telefax: {{site.data.general.fax1_text}}<br>
|
|
19
|
+
{% endif %}
|
|
20
|
+
<a href="tel:{{site.data.general.email}}">{{site.data.general.email}}</a><br>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
{{ content }}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
<h2>Design & Umsetzung</h2>
|
|
29
|
+
|
|
30
|
+
<a href="https://leuffen.de/"><img style="width: 150px;margin-left:-10px" src="https://leuffen.de/assets/leuffen-logo-big.svg" alt="leuffen.de logo"></a>
|
|
31
|
+
|
|
32
|
+
<p class="mt-2">leuffen.de<br>Webprogrammierung & Webservices</p>
|
|
33
|
+
<a href="https://med.leuffen.de" target="_blank" class="link-pointer">Websites für Ärzte</a>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<h2>Bildnachweise</h2>
|
|
38
|
+
<p class="mt-2">
|
|
39
|
+
{% if site.data.general.bildnachweise %}
|
|
40
|
+
{{ site.data.general.bildnachweise}}
|
|
41
|
+
{% else %}
|
|
42
|
+
Bilder in Lizenz von <a href="https://stock.adobe.com/" target="_blank">stock.adobe.com</a>.
|
|
43
|
+
{% endif %}
|
|
44
|
+
</p>
|
|
45
|
+
|
|
46
|
+
|