@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
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import {Joda} from "@leuffen/jodastyle";
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
|
|
5
|
+
|
|
4
6
|
Joda.registerTemplate("sec-card-2col",
|
|
5
7
|
// language=HTML
|
|
6
8
|
`
|
|
7
9
|
|
|
8
|
-
<
|
|
10
|
+
<section class="tjs__sec-card-2col">
|
|
9
11
|
<div class="tjs__sec-card-2col--container [[layout.container]]">
|
|
10
12
|
<div class="row [[layout.order === 'reverse' ? 'flex-row-reverse': '']] [[layout.mobile_reverse === 'yes' ? ':: flex-row-reverse :lg:': '']]">
|
|
11
13
|
<div class="tjs__sec-card-2col--col-start tjs__section-text">
|
|
@@ -16,5 +18,5 @@ Joda.registerTemplate("sec-card-2col",
|
|
|
16
18
|
</div>
|
|
17
19
|
</div>
|
|
18
20
|
</div>
|
|
19
|
-
</
|
|
21
|
+
</section>
|
|
20
22
|
`);
|
|
@@ -5,7 +5,7 @@ Joda.registerTemplate("sec-legal-content",
|
|
|
5
5
|
// language=HTML
|
|
6
6
|
`
|
|
7
7
|
|
|
8
|
-
<
|
|
8
|
+
<section class="tjs__sec-legal-content :: mobile :lg:">
|
|
9
9
|
<div class="out-wrapper">
|
|
10
10
|
<div class="container p-0">
|
|
11
11
|
<div class="inner-wrapper :: p-4 :lg: p-5">
|
|
@@ -15,6 +15,7 @@ Joda.registerTemplate("sec-legal-content",
|
|
|
15
15
|
</div>
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
|
+
|
|
18
19
|
</div>
|
|
19
|
-
</
|
|
20
|
+
</section>
|
|
20
21
|
`);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
.tjs__sec-multi-card {
|
|
3
3
|
|
|
4
|
+
|
|
4
5
|
padding: var(--t-section-padding);
|
|
5
6
|
|
|
6
7
|
background: var(--t-section-background);
|
|
@@ -10,13 +11,57 @@
|
|
|
10
11
|
text-align: center;
|
|
11
12
|
padding-bottom: 40px;
|
|
12
13
|
}
|
|
13
|
-
.card {
|
|
14
14
|
|
|
15
|
-
}
|
|
16
15
|
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
|
|
18
|
+
&__item {
|
|
19
|
+
@extend .col;
|
|
20
|
+
|
|
21
|
+
.wrapper {
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
border: 1px solid var(--t-section-border-color);
|
|
27
|
+
border-radius: var(--t-section-border-radius);
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
background-color: white;
|
|
30
|
+
height: 100%;
|
|
31
|
+
min-width: 300px;
|
|
32
|
+
|
|
33
|
+
--aspect-ratio: var(--layout-aspect-ratio, 16 / 9);
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
.tjs__sec-multi-card__item-img {
|
|
40
|
+
&:empty {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
width: 100%;
|
|
45
|
+
aspect-ratio: var(--aspect-ratio);
|
|
46
|
+
display: block;
|
|
47
|
+
overflow: hidden;
|
|
48
|
+
img {
|
|
49
|
+
|
|
50
|
+
width: 100%;
|
|
51
|
+
height: 100%;
|
|
52
|
+
object-fit: cover;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.tjs__sec-multi-card__item__body {
|
|
59
|
+
@extend .p-4;
|
|
60
|
+
height: 100%;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
21
64
|
}
|
|
65
|
+
|
|
66
|
+
|
|
22
67
|
}
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import {Joda} from "@leuffen/jodastyle";
|
|
2
2
|
|
|
3
|
+
Joda.registerTemplate("sec-multi-card__item",
|
|
4
|
+
// language=HTML
|
|
5
|
+
`
|
|
6
|
+
<div class="col tjs__sec-multi-card__item">
|
|
7
|
+
<div class="wrapper">
|
|
8
|
+
|
|
9
|
+
<slot class="tjs__sec-multi-card__item-img" data-select="img"></slot>
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<div class="tjs__sec-multi-card__item__body text-format">
|
|
13
|
+
<slot></slot>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
3
16
|
|
|
17
|
+
</div>
|
|
18
|
+
`
|
|
19
|
+
);
|
|
4
20
|
Joda.registerTemplate("sec-multi-card",
|
|
5
21
|
// language=HTML
|
|
6
22
|
`
|
|
@@ -10,9 +26,7 @@ Joda.registerTemplate("sec-multi-card",
|
|
|
10
26
|
<slot data-select=":scope > .content"></slot>
|
|
11
27
|
</div>
|
|
12
28
|
<div class="container">
|
|
13
|
-
<
|
|
14
|
-
<slot data-select=":scope > .children > *" data-replace=""></slot>
|
|
15
|
-
</div>
|
|
29
|
+
<slot class="row g-3 row-cols-1 row-cols-lg-[[ layout.cols ?? 3 ]]" data-select=":scope > .children > *" data-child-layout="use: #sec-multi-card__item"></slot>
|
|
16
30
|
</div>
|
|
17
31
|
</div>
|
|
18
32
|
`);
|
package/sections/sections.scss
CHANGED
package/sections/sections.ts
CHANGED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
@import "../../variables";
|
|
2
|
+
@import "../_mixins/default-element-format";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
$primary: #de7924 !default;
|
|
6
|
+
$success: #22b573 !default;
|
|
7
|
+
$danger: #bf1c0a !default;
|
|
8
|
+
$warning: #bf760a !default;
|
|
9
|
+
$dark: #483c32 !default;
|
|
10
|
+
$background-primary: lighten($primary, 40%) !default;
|
|
11
|
+
$background-accent: rgba(87, 45, 15, 0.20) !default;
|
|
12
|
+
|
|
13
|
+
$content-offset-top: 100px !default;
|
|
14
|
+
$content-height-adjustment: 200px !default;
|
|
15
|
+
|
|
16
|
+
$font-size-base: 1.2rem !default;
|
|
17
|
+
$line-height-base: 1.2 !default;
|
|
18
|
+
$paragraph-margin-bottom: 1.5rem !default;
|
|
19
|
+
|
|
20
|
+
$minibar-text-color: black !default;
|
|
21
|
+
$minibar-color: transparent !default;
|
|
22
|
+
|
|
23
|
+
$section-border-radius: 25px !default;
|
|
24
|
+
|
|
25
|
+
$background: rgba(189, 172, 155, 0.34) !default;
|
|
26
|
+
$text-color: #483c32 !default ;
|
|
27
|
+
|
|
28
|
+
$border-radius: 25px !default;
|
|
29
|
+
|
|
30
|
+
$text-dark: #fff !default;
|
|
31
|
+
$background-dark: $text-color !default;
|
|
32
|
+
$section-border-color: transparent !default;
|
|
33
|
+
$header-text-transform: unset !default;
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
:root {
|
|
37
|
+
--layout-container: container;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
--t-border-radius: #{$section-border-radius};
|
|
42
|
+
--t-background-footer: #{$background-footer};
|
|
43
|
+
--t-text-footer: #{$text-footer};
|
|
44
|
+
--t-footer-header-color: #{$text-footer};
|
|
45
|
+
--t-section-border-color: #{$section-border-color};
|
|
46
|
+
--t-background-dark: #{$background-dark};
|
|
47
|
+
--t-text-dark: #{$text-dark};
|
|
48
|
+
--t-header-dark: #{$text-dark};
|
|
49
|
+
--t-link-dark: #{$text-dark};
|
|
50
|
+
}
|
|
51
|
+
.theme1 {
|
|
52
|
+
@include default-element-format();
|
|
53
|
+
--t-background: #{$background};
|
|
54
|
+
color: var(--t-text-color);
|
|
55
|
+
background: var(--t-background);
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
h1,h2,h3,h4,h5 {
|
|
59
|
+
color: var(--t-text-color);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
font-size: $font-size-base;
|
|
63
|
+
h1 {
|
|
64
|
+
font-size: 2.4em;
|
|
65
|
+
line-height: 1.2em;
|
|
66
|
+
}
|
|
67
|
+
h2, h3,h4,h5 {
|
|
68
|
+
line-height: 1.2em;
|
|
69
|
+
|
|
70
|
+
}
|
|
71
|
+
h3,h4,h5 {
|
|
72
|
+
font-size: 1.15em;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
p {
|
|
76
|
+
line-height: 1.4em;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
table > tbody > tr > td {
|
|
82
|
+
background: transparent;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.tjs__section-text {
|
|
86
|
+
h2:has(+ blockquote) {
|
|
87
|
+
text-transform: var(--t-header-text-transform, uppercase);
|
|
88
|
+
font-weight: bold;
|
|
89
|
+
font-size: 16px;
|
|
90
|
+
color: var(--t-text-color-primary) !important;
|
|
91
|
+
margin: var(--t-paragraf-margin);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
h2, blockquote > p {
|
|
95
|
+
font-size: 1.9em;
|
|
96
|
+
line-height: 1.2em;
|
|
97
|
+
color: var(--t-text-color) !important;
|
|
98
|
+
margin: var(--t-header-margin, 0 0 20px 0);
|
|
99
|
+
hyphens: manual;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.table {
|
|
103
|
+
--bs-table-color: var(--t-text-color);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
*:last-child {
|
|
107
|
+
margin-bottom: 0;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.section {
|
|
112
|
+
blockquote p {
|
|
113
|
+
font-size: 2.3em;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
.card-body {
|
|
119
|
+
h3 {
|
|
120
|
+
font-weight: bold;
|
|
121
|
+
}
|
|
122
|
+
color: var(--t-text-color);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
--t-background-footer: #fff;
|
|
128
|
+
--t-section-background: transparent;
|
|
129
|
+
--t-section-background-primary: #{$background-primary};
|
|
130
|
+
--t-text-background: #fff;
|
|
131
|
+
--t-text-color: #{$text-color};
|
|
132
|
+
--t-text-background-light: var(--t-background);
|
|
133
|
+
--t-text-color-accent: var(--bs-gray-900);
|
|
134
|
+
--t-text-color-primary: var(--bs-primary);
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
--t-header-margin: 0 0 20px 0;
|
|
138
|
+
--t-paragraf-margin: 0 0 20px 0;
|
|
139
|
+
|
|
140
|
+
--t-section-padding: 40px 0;
|
|
141
|
+
--t-section-inner-padding: 3rem;
|
|
142
|
+
|
|
143
|
+
.tjs__sec-legal-content {
|
|
144
|
+
padding-top: 100px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
section:last-child {
|
|
148
|
+
padding-bottom: 0;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// background: var(--bs-light);
|
|
152
|
+
|
|
153
|
+
a.btn.btn-primary {
|
|
154
|
+
color: white !important;
|
|
155
|
+
}
|
|
156
|
+
input.btn.btn-primary {
|
|
157
|
+
color: white !important;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.btn {
|
|
161
|
+
border-radius: $border-radius;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
map {
|
|
165
|
+
--joda-class: ":: aspect-1x1 :lg: aspcect-16x9";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
.title_image {
|
|
170
|
+
background: linear-gradient(180deg, rgba(230,225,221,1) 0%, rgba(245,240,236,1) 35%, rgba(238,238,238,1) 100%);;
|
|
171
|
+
& > img {
|
|
172
|
+
object-position: 80% 0;
|
|
173
|
+
object-fit: contain;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.as__accordion {
|
|
178
|
+
border: 1px solid var(--bs-gray-100);
|
|
179
|
+
--as-accordion-open-bg: #fff;
|
|
180
|
+
h3 {
|
|
181
|
+
padding-top: 10px;
|
|
182
|
+
padding-bottom: 10px;
|
|
183
|
+
}
|
|
184
|
+
.section-h3 {
|
|
185
|
+
border: 1px solid var(--bs-gray-200);
|
|
186
|
+
background-color: var(--bs-gray-100);
|
|
187
|
+
}
|
|
188
|
+
.content {
|
|
189
|
+
background-color: #fff;
|
|
190
|
+
p {
|
|
191
|
+
margin: 20px 20px 20px 0;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
}
|
|
199
|
+
.openhours {
|
|
200
|
+
--joda-class: "table table-borderless";
|
|
201
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import {JodaDescriptionManager} from "@leuffen/jodastyle";
|
|
2
|
+
|
|
3
|
+
let html =`
|
|
4
|
+
|
|
5
|
+
<nav layout="use: #navbar-blox">
|
|
6
|
+
<div class="brand">Logo</div>
|
|
7
|
+
<ul class="nav-bar-main">
|
|
8
|
+
<li><a href="#home">Hello World</a></li>
|
|
9
|
+
</ul>
|
|
10
|
+
<ul class="nav-menu">
|
|
11
|
+
<li><a href="#home">Home</a></li>
|
|
12
|
+
</ul>
|
|
13
|
+
</ul>
|
|
14
|
+
</nav>
|
|
15
|
+
|
|
16
|
+
# Willkommen bei <br>Dr. med. XXX XXX
|
|
17
|
+
{: layout="use: #hero-max"}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
Facharzt für Neurologie <br> Facharzt für Psychiatrie
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## Hero Section
|
|
26
|
+
{: layout="use: #hero-ribbon"}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Notfall?
|
|
32
|
+
|
|
33
|
+
Sie erreichen den ärztlichen Notdienst unter der Telefon-Nr: [116 117](tel:+49116117)
|
|
34
|
+
|
|
35
|
+
### Termine & Rezeptabholung
|
|
36
|
+
|
|
37
|
+
Wir sind eine **Terminpraxis**. Für Terminvergaben, Anfragen und Rezeptabholungen beachten Sie bitte
|
|
38
|
+
die Öffnungszeiten des Empfangs.
|
|
39
|
+
|
|
40
|
+
### Öffnungszeiten Empfang
|
|
41
|
+
|
|
42
|
+
{% include el/openhours.html %}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## Über mich
|
|
46
|
+
{: layout="use: #sec-card-2col"}
|
|
47
|
+
|
|
48
|
+
> Dr. med. X. Kelloggs
|
|
49
|
+
|
|
50
|
+
{: style="padding: 4rem"}
|
|
51
|
+
|
|
52
|
+
### Werdegang
|
|
53
|
+
|
|
54
|
+
Berufstätigkeit in der Neurologie, Psychiatrie, Inneren Medizin und Orthopädie.
|
|
55
|
+
|
|
56
|
+
Zuletzt klinisch tätig als Oberarzt einer neurologischen Rehaklinik. Seit 2001 tätig als niedergelassener Neurologe
|
|
57
|
+
und Psychiater.
|
|
58
|
+
|
|
59
|
+
Focus Empfehlung: 2017, 2018, 2019
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
## Medizinischer Schwerpunkt
|
|
64
|
+
{: layout="use: #sec-multi-card; cols:2"}
|
|
65
|
+
|
|
66
|
+
### Neurologie
|
|
67
|
+
|
|
68
|
+
Interessengebiete:
|
|
69
|
+
|
|
70
|
+
- Schlaganfall und Arteriosklerose
|
|
71
|
+
- Parkinsonerkrankung
|
|
72
|
+
- Gedächtnisstörung
|
|
73
|
+
- Prävention und Ernährungsmedizin bei neurologischen Erkrankungen
|
|
74
|
+
|
|
75
|
+
*Bitte beachten: Bei speziellen Medikamenten für Multiple Sklerose und Myasthenie wenden Sie sich bitte an ein
|
|
76
|
+
spezialisiertes neurologisches Zentrum.*
|
|
77
|
+
|
|
78
|
+
Apparative Untersuchungen:
|
|
79
|
+
|
|
80
|
+
- Farbduplexsonographie der hirnversorgenden Halsgefäße
|
|
81
|
+
- Messung der Nervenleitgeschwindigkeit bei Verdacht auf Karpaltunnelsyndrom, Polyneuropathie und Ulnaris-Neuropathie
|
|
82
|
+
|
|
83
|
+
Beispiele für häufigere Beschwerden: Schwäche und Lähmung. Taubheit und Missempfindungen. Schwindel,
|
|
84
|
+
Gleichgewichtsstörungen und Gangstörungen. Bewusstseinsstörung. Zittern. Kopfschmerzen und sonstige Schmerzen. Änderung des
|
|
85
|
+
Denkvermögens und der Sprache.
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Psychiatrie
|
|
89
|
+
|
|
90
|
+
- Psychiatrische Diagnostik und Behandlung
|
|
91
|
+
- Interessengebiet: Prävention und Ernährungsmedizin bei psychischen Erkrankungen
|
|
92
|
+
|
|
93
|
+
Beispiele für häufigere Beschwerden: Anspannung, Unruhe, Reizbarkeit, aufdrängende Gedanken, Grübeln,
|
|
94
|
+
Vermeidung, Ängste, Panikanfälle. Vegetative Beschwerden wie Herzklopfen, Atembeschwerden, Schwitzen, Schwindel, usw. Schlafstörungen.
|
|
95
|
+
Änderung der Stimmung, des Antriebs, des Denkvermögens, der Wahrnehmung und des Verhaltens.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
{: .hr}
|
|
99
|
+
|
|
100
|
+
Bei Vorliegen einer Notlage und akuter Beschwerden: wenden Sie sich bitte direkt an die Aufnahme einer
|
|
101
|
+
Klinik. Empfehlung für weitere Informationen: [www.neurologen-und-psychiater-im-netz.org](https://www.neurologen-und-psychiater-im-netz.org)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## Kontakt aufnehmen
|
|
111
|
+
{: layout="use: #cta-base"}
|
|
112
|
+
|
|
113
|
+
[Kontakt](/kontakt)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
`;
|
|
117
|
+
|
|
118
|
+
JodaDescriptionManager.addClass("page",
|
|
119
|
+
"theme2",
|
|
120
|
+
"theme2",
|
|
121
|
+
html,
|
|
122
|
+
[]
|
|
123
|
+
,
|
|
124
|
+
{
|
|
125
|
+
bodyClasses: ["theme2"]
|
|
126
|
+
}
|
|
127
|
+
);
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
@import "bootstrap/scss/bootstrap";
|
|
2
|
-
|
|
3
|
-
.tjs__e-card-default {
|
|
4
|
-
|
|
5
|
-
border: 1px solid var(--t-section-border-color);
|
|
6
|
-
border-radius: var(--t-section-border-radius);
|
|
7
|
-
overflow: hidden;
|
|
8
|
-
background-color: white;
|
|
9
|
-
height: 100%;
|
|
10
|
-
min-width: 300px;
|
|
11
|
-
|
|
12
|
-
&.card {
|
|
13
|
-
height: 100%;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
--aspect-ratio: var(--layout-aspect-ratio, 16 / 9);
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
.tjs__e-card-default__img {
|
|
23
|
-
&>slot:empty {
|
|
24
|
-
display: none;
|
|
25
|
-
}
|
|
26
|
-
&> slot {
|
|
27
|
-
width: 100%;
|
|
28
|
-
aspect-ratio: var(--aspect-ratio);
|
|
29
|
-
display: block;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
img {
|
|
32
|
-
|
|
33
|
-
width: 100%;
|
|
34
|
-
height: 100%;
|
|
35
|
-
object-fit: cover;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.tjs__e-card-default__body {
|
|
42
|
-
@extend .p-4;
|
|
43
|
-
height: 100%;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import {Joda} from "@leuffen/jodastyle";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Joda.registerTemplate("e-card-default",
|
|
5
|
-
// language=HTML
|
|
6
|
-
`
|
|
7
|
-
<div class="tjs__e-card-default">
|
|
8
|
-
<div class="tjs__e-card-default__img">
|
|
9
|
-
<slot data-select="img"></slot>
|
|
10
|
-
</div>
|
|
11
|
-
|
|
12
|
-
<div class="tjs__e-card-default__body text-format">
|
|
13
|
-
<slot></slot>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
`);
|