@simple-reporting/base 1.0.37 → 1.0.38
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/dev/.ddev/config.yaml +1 -1
- package/dev/.idea/codeStyles/Project.xml +61 -0
- package/dev/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/dev/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/dev/.idea/deployment.xml +14 -0
- package/dev/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/dev/.idea/modules.xml +8 -0
- package/dev/.idea/nsfd_report-demo-mms.iml +8 -0
- package/dev/.idea/php.xml +19 -0
- package/dev/.idea/prettier.xml +6 -0
- package/dev/.idea/vcs.xml +6 -0
- package/dev/.idea/watcherTasks.xml +4 -0
- package/dev/livingdocs.config.json +1192 -27
- package/dev/package.json +3 -1
- package/dev/src/App.vue +1 -2
- package/dev/src/Autoload.ts +1 -1
- package/dev/src/Dialog.vue +12 -61
- package/dev/src/assets/fonts/FontAwesome/font.scss +2 -0
- package/dev/src/assets/fonts/Inter/inter.scss +2 -4
- package/dev/src/assets/images/accordion-minus.svg +4 -0
- package/dev/src/assets/images/accordion-plus.svg +4 -0
- package/dev/src/assets/images/arrow-left.svg +5 -0
- package/dev/src/assets/images/arrow-right.svg +5 -0
- package/dev/src/assets/images/arrow-up.svg +5 -0
- package/dev/src/assets/images/chevron-down.svg +1 -0
- package/dev/src/assets/images/chevron-left.svg +1 -0
- package/dev/src/assets/images/chevron-right.svg +1 -0
- package/dev/src/assets/images/chevron-up.svg +1 -0
- package/dev/src/assets/images/close.svg +5 -0
- package/dev/src/assets/images/download.svg +6 -0
- package/dev/src/assets/images/facebook.svg +1 -0
- package/dev/src/assets/images/instagram.svg +1 -0
- package/dev/src/assets/images/language.svg +1 -0
- package/dev/src/assets/images/linkedIn.svg +1 -0
- package/dev/src/assets/images/logo.svg +1 -0
- package/dev/src/assets/images/menu-light.svg +3 -0
- package/dev/src/assets/images/menu.svg +3 -0
- package/dev/src/assets/images/nav-arrow-left.svg +3 -0
- package/dev/src/assets/images/nav-arrow-right.svg +3 -0
- package/dev/src/assets/images/search.svg +5 -0
- package/dev/src/assets/images/twitter.svg +1 -0
- package/dev/src/assets/images/xing.svg +1 -0
- package/dev/src/assets/scss/app.scss +9 -0
- package/dev/src/assets/scss/components/button.scss +37 -0
- package/dev/src/assets/scss/components/dialog.scss +84 -0
- package/dev/src/assets/scss/components/fontawesome.scss +56 -0
- package/dev/src/assets/scss/components/note/accordion.scss +55 -41
- package/dev/src/assets/scss/editor.scss +5 -5
- package/dev/src/assets/scss/general.scss +29 -2
- package/dev/src/assets/scss/margins.scss +57 -0
- package/dev/src/assets/scss/pdf.scss +0 -32
- package/dev/src/assets/scss/placeholders/breakout-grid.scss +34 -0
- package/dev/src/assets/scss/placeholders/button.scss +230 -0
- package/dev/src/assets/scss/placeholders/fontawesome.scss +7 -0
- package/dev/src/assets/scss/placeholders/grid.scss +354 -0
- package/dev/src/assets/scss/web.scss +17 -21
- package/dev/src/assets/scss/xbrl.scss +1 -0
- package/dev/src/components/Button/Default/Action.vue +65 -0
- package/dev/src/components/Button/Default/Content.vue +225 -0
- package/dev/src/components/Button/Default/ExternalLink.vue +63 -0
- package/dev/src/components/Button/Default/InternalLink.vue +64 -0
- package/dev/src/components/Button/Default.vue +101 -0
- package/dev/src/components/Page/MainNavigation.vue +96 -6
- package/dev/src/components/Page/MetaNavigation.vue +116 -0
- package/dev/src/components/Page/PrevNext.vue +140 -70
- package/dev/src/components/PageFooter.vue +405 -0
- package/dev/src/components/PageHeader.vue +828 -0
- package/dev/src/components/{Page/Main.vue → PageMain.vue} +11 -0
- package/dev/src/composables/globalLinks.ts +46 -0
- package/dev/src/composables/isDesktopView.ts +18 -0
- package/dev/src/composables/mainNavigation.ts +11 -0
- package/dev/src/entries/pdf.ts +5 -5
- package/dev/src/i18n/index.ts +1 -1
- package/dev/src/locales/de.json +40 -0
- package/dev/src/locales/en.json +40 -0
- package/dev/src/router/index.ts +1 -2
- package/dev/src/views/DevView.vue +1 -835
- package/dev/src/views/PageNotFound.vue +3 -69
- package/dev/srl.config.json +34 -49
- package/livingdocs/010.Titles/010.title-h1/scss/_spacing-variations.scss +17 -0
- package/livingdocs/010.Titles/010.title-h1/scss/general.scss +4 -0
- package/livingdocs/010.Titles/020.title-h2/scss/_spacing-variations.scss +12 -0
- package/livingdocs/010.Titles/020.title-h2/scss/general.scss +4 -0
- package/livingdocs/010.Titles/020.title-h2/title-h2.html +2 -1
- package/livingdocs/010.Titles/030.title-h3/scss/_spacing-variations.scss +13 -0
- package/livingdocs/010.Titles/030.title-h3/scss/general.scss +5 -1
- package/livingdocs/010.Titles/030.title-h3/title-h3.html +2 -1
- package/livingdocs/010.Titles/040.title-h4/scss/_spacing-variations.scss +12 -0
- package/livingdocs/010.Titles/040.title-h4/scss/general.scss +5 -1
- package/livingdocs/010.Titles/040.title-h4/title-h4.html +2 -1
- package/livingdocs/010.Titles/050.title-h5/scss/_spacing-variations.scss +11 -0
- package/livingdocs/010.Titles/050.title-h5/scss/general.scss +4 -0
- package/livingdocs/010.Titles/060.title-h6/scss/_spacing-variations.scss +10 -0
- package/livingdocs/010.Titles/060.title-h6/scss/general.scss +4 -0
- package/livingdocs/020.Text/010.lead/scss/_spacing-variations.scss +5 -0
- package/livingdocs/020.Text/010.lead/scss/general.scss +4 -0
- package/livingdocs/020.Text/020.paragraph/scss/_spacing-variations.scss +22 -0
- package/livingdocs/020.Text/020.paragraph/scss/general.scss +4 -0
- package/livingdocs/020.Text/060.quote-with-portrait/scss/_spacing-variations.scss +7 -0
- package/livingdocs/020.Text/060.quote-with-portrait/scss/general.scss +4 -1
- package/livingdocs/020.Text/060.quote-with-portrait/scss/pdf.scss +4 -10
- package/livingdocs/020.Text/060.quote-with-portrait/scss/web.scss +0 -1
- package/livingdocs/020.Text/070.footnote-container/scss/_spacing-variations.scss +22 -0
- package/livingdocs/020.Text/070.footnote-container/scss/general.scss +8 -0
- package/livingdocs/020.Text/070.footnote-container/scss/pdf.scss +0 -8
- package/livingdocs/020.Text/070.footnote-container/scss/web.scss +0 -5
- package/livingdocs/020.Text/070.footnote-container/scss/xbrl.scss +9 -1
- package/livingdocs/020.Text/080.footnote-item/scss/_spacing-variations.scss +4 -0
- package/livingdocs/020.Text/080.footnote-item/scss/general.scss +28 -1
- package/livingdocs/020.Text/080.footnote-item/scss/web.scss +0 -20
- package/livingdocs/020.Text/080.footnote-item/scss/xbrl.scss +26 -1
- package/livingdocs/030.Lists/010.unordered-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/010.unordered-list/scss/_spacing-variations.scss +22 -0
- package/livingdocs/030.Lists/010.unordered-list/scss/general.scss +3 -5
- package/livingdocs/030.Lists/010.unordered-list/scss/pdf.scss +3 -1
- package/livingdocs/030.Lists/010.unordered-list/scss/web.scss +15 -1
- package/livingdocs/030.Lists/010.unordered-list/scss/word.scss +1 -6
- package/livingdocs/030.Lists/010.unordered-list/scss/xbrl.scss +2 -1
- package/livingdocs/030.Lists/020.ordered-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/030.alphanumeric-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/040.list-item-unordered-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/list-item-unordered-list.html +8 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/_spacing-variations.scss +4 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/general.scss +14 -0
- package/livingdocs/030.Lists/{040.list-item → 040.list-item-unordered-list}/scss/pdf.scss +7 -1
- package/livingdocs/030.Lists/{040.list-item/scss/general.scss → 040.list-item-unordered-list/scss/web.scss} +17 -6
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/word.scss +5 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/xbrl.scss +2 -0
- package/livingdocs/030.Lists/050.list-item-ordered-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/050.list-item-ordered-list/list-item-ordered-list.html +8 -0
- package/livingdocs/030.Lists/060.list-item-alphanumeric-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/060.list-item-alphanumeric-list/list-item-alphanumeric-list.html +8 -0
- package/livingdocs/040.Media/010.table/scss/_spacing-variations.scss +19 -0
- package/livingdocs/040.Media/010.table/scss/general.scss +270 -251
- package/livingdocs/040.Media/010.table/scss/pdf.scss +2 -18
- package/livingdocs/040.Media/010.table/scss/web.scss +0 -19
- package/livingdocs/040.Media/010.table/scss/xbrl.scss +4 -3
- package/livingdocs/040.Media/020.image/scss/_spacing-variations.scss +7 -0
- package/livingdocs/040.Media/020.image/scss/editor.scss +0 -1
- package/livingdocs/040.Media/020.image/scss/general.scss +6 -2
- package/livingdocs/040.Media/020.image/scss/pdf.scss +0 -4
- package/livingdocs/040.Media/020.image/scss/web.scss +0 -5
- package/livingdocs/040.Media/020.image/scss/xbrl.scss +1 -3
- package/livingdocs/040.Media/030.video/scss/_spacing-variations.scss +7 -0
- package/livingdocs/040.Media/030.video/scss/general.scss +19 -0
- package/livingdocs/040.Media/030.video/scss/pdf.scss +0 -10
- package/livingdocs/040.Media/030.video/scss/web.scss +0 -11
- package/livingdocs/040.Media/030.video/scss/xbrl.scss +1 -4
- package/livingdocs/060.Buttons/020.button/scss/general.scss +14 -75
- package/livingdocs/070.Container/020.columns-container/columns-container.html +1 -1
- package/livingdocs/070.Container/030.background-container/background-container.html +3 -0
- package/livingdocs/070.Container/030.background-container/ld-conf.json +4 -0
- package/livingdocs/070.Container/030.background-container/properties.json +1 -0
- package/livingdocs/070.Container/030.background-container/scss/_spacing-variations.scss +3 -0
- package/livingdocs/070.Container/030.background-container/scss/general.scss +9 -0
- package/livingdocs/070.Container/030.background-container/scss/pdf.scss +13 -0
- package/livingdocs/070.Container/030.background-container/scss/web.scss +1 -0
- package/livingdocs/070.Container/030.background-container/scss/word.scss +1 -0
- package/livingdocs/070.Container/030.background-container/scss/xbrl.scss +3 -0
- package/livingdocs/080.CV/010.cv/cv.html +2 -1
- package/livingdocs/080.CV/010.cv/scss/_spacing-variations.scss +5 -0
- package/livingdocs/080.CV/010.cv/scss/app.scss +16 -1
- package/livingdocs/080.CV/010.cv/scss/general.scss +4 -0
- package/livingdocs/080.CV/010.cv/scss/pdf.scss +2 -3
- package/livingdocs/080.CV/010.cv/scss/web.scss +17 -1
- package/livingdocs/080.CV/020.cv-time-span/scss/_spacing-variations.scss +14 -0
- package/livingdocs/080.CV/020.cv-time-span/scss/general.scss +4 -0
- package/livingdocs/080.CV/020.cv-time-span/scss/web.scss +0 -1
- package/livingdocs/100.Misc/010.anchor/scss/editor.scss +0 -1
- package/livingdocs/100.Misc/020.accordion/accordion.html +54 -7
- package/livingdocs/100.Misc/020.accordion/accordion.vue +83 -0
- package/livingdocs/100.Misc/020.accordion/scss/editor.scss +12 -0
- package/livingdocs/110.PDF/010.pdf-pagebreak/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/021.pdf-columnbreak/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/030.pdf-publication-title/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/040.pdf-chapter-title/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/050.pdf-chapter-navigation-container/scss/editor.scss +1 -1
- package/livingdocs/110.PDF/075.pdf-landscape-container/ld-conf.json +7 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/pdf-landscape-container.html +9 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/properties.json +15 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/scss/pdf.scss +19 -0
- package/livingdocs/110.PDF/100.pdf-toc-item/pdf-toc-item.html +3 -2
- package/livingdocs/110.PDF/100.pdf-toc-item/scss/general.scss +6 -5
- package/livingdocs/110.PDF/100.pdf-toc-item/scss/pdf.scss +9 -1
- package/livingdocs/130.Hosting_Components/010.download-center/download-center.html +7 -0
- package/livingdocs/130.Hosting_Components/010.download-center/download-center.vue +68 -0
- package/livingdocs/130.Hosting_Components/010.download-center/ld-conf.json +4 -0
- package/livingdocs/130.Hosting_Components/010.download-center/properties.json +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/_spacing-variations.scss +3 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/editor.scss +15 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/general.scss +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/pdf.scss +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/web.scss +42 -0
- package/livingdocs/130.Hosting_Components/020.search/ld-conf.json +4 -0
- package/livingdocs/130.Hosting_Components/020.search/properties.json +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/_spacing-variations.scss +4 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/editor.scss +14 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/general.scss +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/pdf.scss +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/web.scss +200 -0
- package/livingdocs/130.Hosting_Components/020.search/search.html +7 -0
- package/livingdocs/130.Hosting_Components/020.search/search.vue +484 -0
- package/livingdocs/999.Properties/breakout-grid/web.scss +5 -0
- package/livingdocs/999.Properties/grid/scss/app.scss +1 -0
- package/livingdocs/999.Properties/grid/scss/general.scss +31 -0
- package/livingdocs/999.Properties/grid/scss/pdf.scss +9 -0
- package/livingdocs/999.Properties/grid/scss/web.scss +1 -0
- package/livingdocs/999.Properties/grid/scss/xbrl.scss +2 -0
- package/livingdocs/999.Properties/icon/properties.json +2 -2
- package/package.json +1 -1
- package/plugins/viteSrlPlugin.js +16 -1
- package/scripts/build.js +1 -0
- package/scripts/config.js +6 -2
- package/scss/button.scss +25 -0
- package/scss/fa/font-free.scss +17 -0
- package/scss/fa/font-pro.scss +41 -0
- package/scss/fa/index.scss +118 -0
- package/scss/fa/source-free.scss +14 -0
- package/scss/fa/source-pro.scss +15 -0
- package/scss/index.scss +1 -0
- package/srl/.srl/components/Srl/Aria/TabChain.vue +6 -5
- package/srl/.srl/components/Srl/Article/Accordion.vue +37 -24
- package/srl/.srl/components/Srl/Article/Dialog/Button.vue +6 -5
- package/srl/.srl/components/Srl/Article/Root.vue +4 -1
- package/srl/.srl/components/Srl/Category/Accordion/Content.vue +2 -2
- package/srl/.srl/components/Srl/Category/Accordion.vue +8 -5
- package/srl/.srl/components/Srl/Menu/Item.vue +20 -5
- package/srl/.srl/components/Srl/Page/Dialog.vue +31 -14
- package/srl/.srl/types/nswow.d.ts +6 -1
- package/srl/.srl/utils/index.ts +2 -0
- package/srl/.srl/utils/pageState.ts +24 -23
- package/srl/srl/button.scss +2 -0
- package/srl/srl/fa/font-free.scss +17 -0
- package/srl/srl/fa/font-pro.scss +41 -0
- package/srl/srl/fa/index.scss +118 -0
- package/srl/srl/fa/source-free.scss +14 -0
- package/srl/srl/fa/source-pro.scss +15 -0
- package/dev/src/assets/fonts/Inter/Inter-Regular.ttf +0 -0
- package/dev/src/assets/fonts/Inter/Inter-SemiBold.ttf +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-300.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-700.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-italic.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-regular.woff2 +0 -0
- package/dev/src/assets/images/mms-logo-white.svg +0 -105
- package/dev/src/assets/scss/components/icons.scss +0 -287
- package/dev/src/assets/scss/components/round-button.scss +0 -75
- package/dev/src/assets/scss/placeholders.scss +0 -588
- package/dev/src/components/Page/Footer.vue +0 -45
- package/dev/src/components/Page/Header.vue +0 -40
- package/dev/src/views/HomeView.vue +0 -5
- package/livingdocs/030.Lists/020.ordered-list/scss/general.scss +0 -6
- package/livingdocs/030.Lists/020.ordered-list/scss/pdf.scss +0 -5
- package/livingdocs/030.Lists/020.ordered-list/scss/word.scss +0 -9
- package/livingdocs/030.Lists/020.ordered-list/scss/xbrl.scss +0 -1
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/general.scss +0 -6
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/pdf.scss +0 -5
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/word.scss +0 -9
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/xbrl.scss +0 -1
- package/livingdocs/030.Lists/040.list-item/ld-conf.json +0 -5
- package/livingdocs/030.Lists/040.list-item/list-item.html +0 -5
- package/livingdocs/030.Lists/040.list-item/scss/web.scss +0 -27
- package/livingdocs/030.Lists/040.list-item/scss/word.scss +0 -19
- package/livingdocs/030.Lists/040.list-item/scss/xbrl.scss +0 -1
- /package/livingdocs/030.Lists/{020.ordered-list → 040.list-item-unordered-list}/scss/app.scss +0 -0
- /package/livingdocs/030.Lists/{020.ordered-list → 040.list-item-unordered-list}/scss/editor.scss +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list → 070.Container/030.background-container}/scss/app.scss +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list → 070.Container/030.background-container}/scss/editor.scss +0 -0
- /package/livingdocs/{030.Lists/040.list-item → 130.Hosting_Components/010.download-center}/scss/app.scss +0 -0
- /package/{dev/livingdocs/.gitkeep → livingdocs/130.Hosting_Components/010.download-center/scss/word.scss} +0 -0
- /package/livingdocs/{030.Lists/020.ordered-list/scss/web.scss → 130.Hosting_Components/010.download-center/scss/xbrl.scss} +0 -0
- /package/livingdocs/{030.Lists/040.list-item/scss/editor.scss → 130.Hosting_Components/020.search/scss/app.scss} +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list/scss/web.scss → 130.Hosting_Components/020.search/scss/word.scss} +0 -0
- /package/livingdocs/{060.Buttons/.gitkeep → 130.Hosting_Components/020.search/scss/xbrl.scss} +0 -0
- /package/livingdocs/999.Properties/{width → grid}/properties.json +0 -0
|
@@ -22,840 +22,6 @@ onMounted(() => {
|
|
|
22
22
|
|
|
23
23
|
<template>
|
|
24
24
|
<article ref="articleRoot" class="srl-article-root">
|
|
25
|
-
<h1
|
|
26
|
-
<span class="srl-grid__inner srl-title-h1__text" doc-editable="title-h1">
|
|
27
|
-
Title h1 Lorem ipsum dolor sit amet
|
|
28
|
-
</span>
|
|
29
|
-
</h1>
|
|
30
|
-
|
|
31
|
-
<div class="srl-grid srl-lead">
|
|
32
|
-
<p class="srl-grid__inner srl-lead__text srl-linkable" doc-editable="lead">
|
|
33
|
-
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Iste sapiente, magni incidunt aut
|
|
34
|
-
hic ut sint, repellendus nesciunt alias sequi, vero voluptatem! Similique laborum natus eum
|
|
35
|
-
ullam, rem officiis dolores.
|
|
36
|
-
</p>
|
|
37
|
-
</div>
|
|
38
|
-
|
|
39
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
40
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
41
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
42
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At
|
|
43
|
-
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
|
|
44
|
-
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
45
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
|
|
46
|
-
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
|
|
47
|
-
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
48
|
-
</span>
|
|
49
|
-
</p>
|
|
50
|
-
|
|
51
|
-
<h2 class="srl-grid srl-title-h2 srl-linkable">
|
|
52
|
-
<span class="srl-grid__inner srl-title-h2__number-text-container js-notes-marker">
|
|
53
|
-
<span class="srl-title-h2__number js-notes-marker-number">1</span>
|
|
54
|
-
<span class="srl-title-h2__text js-notes-marker-text">
|
|
55
|
-
Title h2 Lorem ipsum dolor sit amet
|
|
56
|
-
</span>
|
|
57
|
-
</span>
|
|
58
|
-
</h2>
|
|
59
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
60
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
61
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
62
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At
|
|
63
|
-
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
|
|
64
|
-
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
65
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
|
|
66
|
-
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
|
|
67
|
-
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
68
|
-
</span>
|
|
69
|
-
</p>
|
|
70
|
-
|
|
71
|
-
<h3 class="srl-grid srl-title-h3 srl-linkable">
|
|
72
|
-
<span class="srl-grid__inner srl-title-h3__number-text-container js-notes-marker">
|
|
73
|
-
<span class="srl-title-h3__number js-notes-marker-number"> 1.1. </span>
|
|
74
|
-
<span class="srl-title-h3__text js-notes-marker-text">
|
|
75
|
-
Title h3 Lorem ipsum dolor sit amet
|
|
76
|
-
</span>
|
|
77
|
-
</span>
|
|
78
|
-
</h3>
|
|
79
|
-
|
|
80
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
81
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
82
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
83
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At
|
|
84
|
-
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
|
|
85
|
-
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
86
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
|
|
87
|
-
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
|
|
88
|
-
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
89
|
-
</span>
|
|
90
|
-
</p>
|
|
91
|
-
|
|
92
|
-
<h4 class="srl-grid srl-title-h4 srl-linkable">
|
|
93
|
-
<span class="srl-grid__inner srl-title-h4__number-text-container js-notes-marker">
|
|
94
|
-
<span class="srl-title-h4__number js-notes-marker-number"> 1.1.1. </span>
|
|
95
|
-
<span class="srl-title-h4__text js-notes-marker-text">
|
|
96
|
-
Title h4 Lorem ipsum dolor sit amet
|
|
97
|
-
</span>
|
|
98
|
-
</span>
|
|
99
|
-
</h4>
|
|
100
|
-
|
|
101
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
102
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
103
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
104
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At
|
|
105
|
-
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
|
|
106
|
-
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
107
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
|
|
108
|
-
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
|
|
109
|
-
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
110
|
-
</span>
|
|
111
|
-
</p>
|
|
112
|
-
|
|
113
|
-
<div class="srl-grid srl-list-group srl-list-group--ul">
|
|
114
|
-
<ul class="srl-grid__inner srl-list-group__list srl-list-group__list--ul">
|
|
115
|
-
<li class="srl-list-group__item">
|
|
116
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
117
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
118
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
119
|
-
voluptua.</span
|
|
120
|
-
>
|
|
121
|
-
</li>
|
|
122
|
-
<li class="srl-list-group__item">
|
|
123
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
124
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
125
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
126
|
-
voluptua.</span
|
|
127
|
-
>
|
|
128
|
-
</li>
|
|
129
|
-
<li class="srl-list-group__item">
|
|
130
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
131
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
132
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
133
|
-
voluptua.</span
|
|
134
|
-
>
|
|
135
|
-
</li>
|
|
136
|
-
<li class="srl-list-group__item">
|
|
137
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
138
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
139
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
140
|
-
voluptua.</span
|
|
141
|
-
>
|
|
142
|
-
</li>
|
|
143
|
-
</ul>
|
|
144
|
-
</div>
|
|
145
|
-
|
|
146
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
147
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
148
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
149
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At
|
|
150
|
-
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
|
|
151
|
-
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
152
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
|
|
153
|
-
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
|
|
154
|
-
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
155
|
-
</span>
|
|
156
|
-
</p>
|
|
157
|
-
|
|
158
|
-
<div class="srl-grid srl-list-group srl-list-group--ol">
|
|
159
|
-
<ol class="srl-grid__inner srl-list-group__list srl-list-group__list--ol">
|
|
160
|
-
<li class="srl-list-group__item">
|
|
161
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
162
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
163
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
164
|
-
voluptua.</span
|
|
165
|
-
>
|
|
166
|
-
</li>
|
|
167
|
-
<li class="srl-list-group__item">
|
|
168
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
169
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
170
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
171
|
-
voluptua.</span
|
|
172
|
-
>
|
|
173
|
-
</li>
|
|
174
|
-
<li class="srl-list-group__item">
|
|
175
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
176
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
177
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
178
|
-
voluptua.</span
|
|
179
|
-
>
|
|
180
|
-
</li>
|
|
181
|
-
<li class="srl-list-group__item">
|
|
182
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
183
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
184
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
185
|
-
voluptua.</span
|
|
186
|
-
>
|
|
187
|
-
</li>
|
|
188
|
-
</ol>
|
|
189
|
-
</div>
|
|
190
|
-
|
|
191
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
192
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
193
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
194
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At
|
|
195
|
-
vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
|
|
196
|
-
takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
197
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
|
|
198
|
-
erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita
|
|
199
|
-
kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
200
|
-
</span>
|
|
201
|
-
</p>
|
|
202
|
-
|
|
203
|
-
<div class="srl-grid srl-list-group srl-list-group--alphanumeric">
|
|
204
|
-
<ol class="srl-grid__inner srl-list-group__list srl-list-group__list--ol">
|
|
205
|
-
<li class="srl-list-group__item">
|
|
206
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
207
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
208
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
209
|
-
voluptua.</span
|
|
210
|
-
>
|
|
211
|
-
</li>
|
|
212
|
-
<li class="srl-list-group__item">
|
|
213
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
214
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
215
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
216
|
-
voluptua.</span
|
|
217
|
-
>
|
|
218
|
-
</li>
|
|
219
|
-
<li class="srl-list-group__item">
|
|
220
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
221
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
222
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
223
|
-
voluptua.</span
|
|
224
|
-
>
|
|
225
|
-
</li>
|
|
226
|
-
<li class="srl-list-group__item">
|
|
227
|
-
<span class="srl-list-group__item-text srl-linkable"
|
|
228
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
229
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
230
|
-
voluptua.</span
|
|
231
|
-
>
|
|
232
|
-
</li>
|
|
233
|
-
</ol>
|
|
234
|
-
</div>
|
|
235
|
-
|
|
236
|
-
<div class="srl-grid srl-footnote srl-linkable">
|
|
237
|
-
<div class="srl-grid__inner srl-footnote__inner">
|
|
238
|
-
<div class="srl-footnote__item">
|
|
239
|
-
<span class="srl-footnote__number">
|
|
240
|
-
<sup doc-editable="footnote-number">1</sup>
|
|
241
|
-
</span>
|
|
242
|
-
<span class="srl-footnote__text" doc-editable="footnote-text">Footnote</span>
|
|
243
|
-
</div>
|
|
244
|
-
<div class="srl-footnote__item">
|
|
245
|
-
<span class="srl-footnote__number">
|
|
246
|
-
<sup doc-editable="footnote-number">2</sup>
|
|
247
|
-
</span>
|
|
248
|
-
<span class="srl-footnote__text" doc-editable="footnote-text"
|
|
249
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
250
|
-
<strong>invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam
|
|
251
|
-
voluptua.</span
|
|
252
|
-
>
|
|
253
|
-
</div>
|
|
254
|
-
</div>
|
|
255
|
-
</div>
|
|
256
|
-
|
|
257
|
-
<figure class="srl-image">
|
|
258
|
-
<div class="srl-grid srl-grid--media">
|
|
259
|
-
<div class="srl-grid__inner srl-image__image-container srl-image__image-container--desktop">
|
|
260
|
-
<img
|
|
261
|
-
class="srl-image__img srl-image__img--desktop"
|
|
262
|
-
src="/images/placeholder-1.jpg"
|
|
263
|
-
loading="lazy"
|
|
264
|
-
data-alt-text-target="alt"
|
|
265
|
-
/>
|
|
266
|
-
</div>
|
|
267
|
-
<div
|
|
268
|
-
class="srl-grid__inner srl-image__image-container srl-image__image-container--mobile"
|
|
269
|
-
doc-toggle="show-mobile-image"
|
|
270
|
-
data-remove-from-pdf="complete"
|
|
271
|
-
>
|
|
272
|
-
<img
|
|
273
|
-
class="srl-image__img srl-image__img--mobile"
|
|
274
|
-
doc-image="mobile-image"
|
|
275
|
-
data-alt-text-target="alt"
|
|
276
|
-
/>
|
|
277
|
-
</div>
|
|
278
|
-
</div>
|
|
279
|
-
<figcaption class="srl-grid srl-image__caption srl-linkable" doc-toggle="show-caption">
|
|
280
|
-
<span class="srl-image__caption-text" doc-editable="image-caption">
|
|
281
|
-
Write an image caption here (optional)
|
|
282
|
-
</span>
|
|
283
|
-
</figcaption>
|
|
284
|
-
</figure>
|
|
285
|
-
|
|
286
|
-
<h2 class="srl-grid srl-title-h2 srl-linkable">
|
|
287
|
-
<span
|
|
288
|
-
class="srl-grid__inner srl-title-h2__number-text-container js-notes-marker"
|
|
289
|
-
data-category-marker="container"
|
|
290
|
-
>
|
|
291
|
-
<span
|
|
292
|
-
class="srl-title-h2__number js-notes-marker-number"
|
|
293
|
-
data-category-marker="number"
|
|
294
|
-
doc-optional
|
|
295
|
-
doc-editable="title-h2-number"
|
|
296
|
-
>
|
|
297
|
-
1
|
|
298
|
-
</span>
|
|
299
|
-
<span
|
|
300
|
-
class="srl-title-h2__text js-notes-marker-text"
|
|
301
|
-
data-category-marker="text"
|
|
302
|
-
doc-editable="title-h2-text"
|
|
303
|
-
>
|
|
304
|
-
Title h2 Lorem ipsum dolor sit amet
|
|
305
|
-
</span>
|
|
306
|
-
</span>
|
|
307
|
-
</h2>
|
|
308
|
-
<div class="srl-grid srl-aside-content-container">
|
|
309
|
-
<div class="srl-grid__aside srl-aside-content-container__aside" doc-container="aside">
|
|
310
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
311
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
312
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
313
|
-
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et
|
|
314
|
-
accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
|
|
315
|
-
sanctus est Lorem ipsum dolor sit amet.
|
|
316
|
-
</span>
|
|
317
|
-
</p>
|
|
318
|
-
</div>
|
|
319
|
-
<div class="srl-grid__content srl-aside-content-container__content" doc-container="content">
|
|
320
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
321
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
322
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
323
|
-
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et
|
|
324
|
-
accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
|
|
325
|
-
sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
326
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna
|
|
327
|
-
aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
|
|
328
|
-
rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
|
|
329
|
-
amet.
|
|
330
|
-
</span>
|
|
331
|
-
</p>
|
|
332
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
333
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
334
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
335
|
-
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et
|
|
336
|
-
accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
|
|
337
|
-
sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
338
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna
|
|
339
|
-
aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
|
|
340
|
-
rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
|
|
341
|
-
amet.
|
|
342
|
-
</span>
|
|
343
|
-
</p>
|
|
344
|
-
<p class="srl-grid srl-paragraph srl-linkable">
|
|
345
|
-
<span class="srl-grid__inner srl-paragraph__text" doc-editable="paragraph">
|
|
346
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
|
|
347
|
-
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et
|
|
348
|
-
accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
|
|
349
|
-
sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur
|
|
350
|
-
sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna
|
|
351
|
-
aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
|
|
352
|
-
rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
|
|
353
|
-
amet.
|
|
354
|
-
</span>
|
|
355
|
-
</p>
|
|
356
|
-
</div>
|
|
357
|
-
</div>
|
|
358
|
-
|
|
359
|
-
<h2 class="srl-grid srl-title-h2 srl-linkable">
|
|
360
|
-
<span
|
|
361
|
-
class="srl-grid__inner srl-title-h2__number-text-container js-notes-marker"
|
|
362
|
-
data-category-marker="container"
|
|
363
|
-
>
|
|
364
|
-
<span
|
|
365
|
-
class="srl-title-h2__number js-notes-marker-number"
|
|
366
|
-
data-category-marker="number"
|
|
367
|
-
doc-optional
|
|
368
|
-
doc-editable="title-h2-number"
|
|
369
|
-
>
|
|
370
|
-
1
|
|
371
|
-
</span>
|
|
372
|
-
<span
|
|
373
|
-
class="srl-title-h2__text js-notes-marker-text"
|
|
374
|
-
data-category-marker="text"
|
|
375
|
-
doc-editable="title-h2-text"
|
|
376
|
-
>
|
|
377
|
-
Title h2 Lorem ipsum dolor sit amet
|
|
378
|
-
</span>
|
|
379
|
-
</span>
|
|
380
|
-
</h2>
|
|
381
|
-
<div class="srl-table">
|
|
382
|
-
<div class="srl-table__container">
|
|
383
|
-
<div data-tableid="Vorlage">
|
|
384
|
-
<div class="srl-table-container ns-table-container">
|
|
385
|
-
<table class="srl-table-tab040 ns-table-tab040">
|
|
386
|
-
<thead>
|
|
387
|
-
<tr class="head">
|
|
388
|
-
<th class="srl-horizontal-left ns-horizontal-left head" scope="col">
|
|
389
|
-
<p><span>Lorem ipsum de</span></p>
|
|
390
|
-
</th>
|
|
391
|
-
<th class="srl-horizontal-right ns-horizontal-right head notes_group" scope="col">
|
|
392
|
-
<p><span>Anhang</span></p>
|
|
393
|
-
</th>
|
|
394
|
-
<th
|
|
395
|
-
class="srl-horizontal-right ns-horizontal-right head srl-background-05 ns-background-05"
|
|
396
|
-
scope="col"
|
|
397
|
-
>
|
|
398
|
-
<p><span>2024</span></p>
|
|
399
|
-
</th>
|
|
400
|
-
<th class="srl-horizontal-right ns-horizontal-right head" scope="col">
|
|
401
|
-
<p><span>2023</span></p>
|
|
402
|
-
</th>
|
|
403
|
-
</tr>
|
|
404
|
-
</thead>
|
|
405
|
-
<tbody>
|
|
406
|
-
<tr class="title">
|
|
407
|
-
<td class="srl-horizontal-left ns-horizontal-left title">
|
|
408
|
-
<p><span>Lorem ipsum de</span></p>
|
|
409
|
-
</td>
|
|
410
|
-
<td class="srl-horizontal-right ns-horizontal-right title notes_group">
|
|
411
|
-
<p><span></span></p>
|
|
412
|
-
</td>
|
|
413
|
-
<td
|
|
414
|
-
class="srl-horizontal-right ns-horizontal-right title srl-background-05 ns-background-05"
|
|
415
|
-
>
|
|
416
|
-
<p>
|
|
417
|
-
<span></span>
|
|
418
|
-
</p>
|
|
419
|
-
</td>
|
|
420
|
-
<td class="srl-horizontal-right ns-horizontal-right title">
|
|
421
|
-
<p><span></span></p>
|
|
422
|
-
</td>
|
|
423
|
-
</tr>
|
|
424
|
-
<tr>
|
|
425
|
-
<td class="srl-horizontal-left ns-horizontal-left">
|
|
426
|
-
<p><span>Lorem ipsum de</span></p>
|
|
427
|
-
</td>
|
|
428
|
-
<td class="srl-horizontal-right ns-horizontal-right notes_group">
|
|
429
|
-
<p><span class="srl-number">1</span></p>
|
|
430
|
-
</td>
|
|
431
|
-
<td
|
|
432
|
-
class="srl-horizontal-right ns-horizontal-right srl-background-05 ns-background-05"
|
|
433
|
-
>
|
|
434
|
-
<p><span class="srl-number">100.8</span></p>
|
|
435
|
-
</td>
|
|
436
|
-
<td class="srl-horizontal-right ns-horizontal-right">
|
|
437
|
-
<p><span class="srl-number">131.5</span></p>
|
|
438
|
-
</td>
|
|
439
|
-
</tr>
|
|
440
|
-
<tr>
|
|
441
|
-
<td class="srl-horizontal-left ns-horizontal-left">
|
|
442
|
-
<p><span>Lorem ipsum de</span></p>
|
|
443
|
-
</td>
|
|
444
|
-
<td class="srl-horizontal-right ns-horizontal-right notes_group">
|
|
445
|
-
<p><span class="srl-number">3</span></p>
|
|
446
|
-
</td>
|
|
447
|
-
<td
|
|
448
|
-
class="srl-horizontal-right ns-horizontal-right srl-background-05 ns-background-05"
|
|
449
|
-
>
|
|
450
|
-
<p><span class="srl-number">0.4</span></p>
|
|
451
|
-
</td>
|
|
452
|
-
<td class="srl-horizontal-right ns-horizontal-right">
|
|
453
|
-
<p><span class="srl-number">0.7</span></p>
|
|
454
|
-
</td>
|
|
455
|
-
</tr>
|
|
456
|
-
<tr class="bold">
|
|
457
|
-
<td class="srl-horizontal-left ns-horizontal-left bold">
|
|
458
|
-
<p><span>Lorem ipsum de</span></p>
|
|
459
|
-
</td>
|
|
460
|
-
<td class="srl-horizontal-right ns-horizontal-right bold notes_group">
|
|
461
|
-
<p><span></span></p>
|
|
462
|
-
</td>
|
|
463
|
-
<td
|
|
464
|
-
class="srl-horizontal-right ns-horizontal-right bold srl-background-05 ns-background-05"
|
|
465
|
-
>
|
|
466
|
-
<p><span class="srl-number">10.2</span></p>
|
|
467
|
-
</td>
|
|
468
|
-
<td class="srl-horizontal-right ns-horizontal-right bold">
|
|
469
|
-
<p><span class="srl-number">9.1</span></p>
|
|
470
|
-
</td>
|
|
471
|
-
</tr>
|
|
472
|
-
<tr class="blinebottom_bold">
|
|
473
|
-
<td class="srl-horizontal-left ns-horizontal-left blinebottom_bold">
|
|
474
|
-
<p><span>Lorem ipsum de</span></p>
|
|
475
|
-
</td>
|
|
476
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold notes_group">
|
|
477
|
-
<p><span></span></p>
|
|
478
|
-
</td>
|
|
479
|
-
<td
|
|
480
|
-
class="srl-horizontal-right ns-horizontal-right blinebottom_bold srl-background-05 ns-background-05"
|
|
481
|
-
>
|
|
482
|
-
<p><span class="srl-number">136.6</span></p>
|
|
483
|
-
</td>
|
|
484
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold">
|
|
485
|
-
<p><span class="srl-number">126.1</span></p>
|
|
486
|
-
</td>
|
|
487
|
-
</tr>
|
|
488
|
-
<tr class="title">
|
|
489
|
-
<td class="srl-horizontal-left ns-horizontal-left title">
|
|
490
|
-
<p><span>Lorem ipsum de</span></p>
|
|
491
|
-
</td>
|
|
492
|
-
<td class="srl-horizontal-right ns-horizontal-right title notes_group">
|
|
493
|
-
<p><span></span></p>
|
|
494
|
-
</td>
|
|
495
|
-
<td
|
|
496
|
-
class="srl-horizontal-right ns-horizontal-right title srl-background-05 ns-background-05"
|
|
497
|
-
>
|
|
498
|
-
<p>
|
|
499
|
-
<span></span>
|
|
500
|
-
</p>
|
|
501
|
-
</td>
|
|
502
|
-
<td class="srl-horizontal-right ns-horizontal-right title">
|
|
503
|
-
<p><span></span></p>
|
|
504
|
-
</td>
|
|
505
|
-
</tr>
|
|
506
|
-
<tr class="ind">
|
|
507
|
-
<td class="srl-horizontal-left ns-horizontal-left ind">
|
|
508
|
-
<p><span> Lorem ipsum de</span></p>
|
|
509
|
-
</td>
|
|
510
|
-
<td class="srl-horizontal-right ns-horizontal-right ind notes_group">
|
|
511
|
-
<p><span class="srl-number">1</span></p>
|
|
512
|
-
</td>
|
|
513
|
-
<td
|
|
514
|
-
class="srl-horizontal-right ns-horizontal-right ind srl-background-05 ns-background-05"
|
|
515
|
-
>
|
|
516
|
-
<p><span class="srl-number">559.2</span></p>
|
|
517
|
-
</td>
|
|
518
|
-
<td class="srl-horizontal-right ns-horizontal-right ind">
|
|
519
|
-
<p><span class="srl-number">523.2</span></p>
|
|
520
|
-
</td>
|
|
521
|
-
</tr>
|
|
522
|
-
<tr class="ind_ind">
|
|
523
|
-
<td class="srl-horizontal-left ns-horizontal-left ind_ind">
|
|
524
|
-
<p><span> Lorem ipsum de</span></p>
|
|
525
|
-
</td>
|
|
526
|
-
<td class="srl-horizontal-right ns-horizontal-right ind_ind notes_group">
|
|
527
|
-
<p><span></span></p>
|
|
528
|
-
</td>
|
|
529
|
-
<td
|
|
530
|
-
class="srl-horizontal-right ns-horizontal-right ind_ind srl-background-05 ns-background-05"
|
|
531
|
-
>
|
|
532
|
-
<p><span class="srl-number">438.2</span></p>
|
|
533
|
-
</td>
|
|
534
|
-
<td class="srl-horizontal-right ns-horizontal-right ind_ind">
|
|
535
|
-
<p><span class="srl-number">402.2</span></p>
|
|
536
|
-
</td>
|
|
537
|
-
</tr>
|
|
538
|
-
<tr class="bold">
|
|
539
|
-
<td class="srl-horizontal-left ns-horizontal-left bold">
|
|
540
|
-
<p><span>Lorem ipsum de</span></p>
|
|
541
|
-
</td>
|
|
542
|
-
<td class="srl-horizontal-right ns-horizontal-right bold notes_group">
|
|
543
|
-
<p><span></span></p>
|
|
544
|
-
</td>
|
|
545
|
-
<td
|
|
546
|
-
class="srl-horizontal-right ns-horizontal-right bold srl-background-05 ns-background-05"
|
|
547
|
-
>
|
|
548
|
-
<p><span class="srl-number">752.2</span></p>
|
|
549
|
-
</td>
|
|
550
|
-
<td class="srl-horizontal-right ns-horizontal-right bold">
|
|
551
|
-
<p><span class="srl-number">711.6</span></p>
|
|
552
|
-
</td>
|
|
553
|
-
</tr>
|
|
554
|
-
<tr class="blinebottom_bold">
|
|
555
|
-
<td class="srl-horizontal-left ns-horizontal-left blinebottom_bold">
|
|
556
|
-
<p><span>Lorem ipsum de</span></p>
|
|
557
|
-
</td>
|
|
558
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold notes_group">
|
|
559
|
-
<p><span></span></p>
|
|
560
|
-
</td>
|
|
561
|
-
<td
|
|
562
|
-
class="srl-horizontal-right ns-horizontal-right blinebottom_bold srl-background-05 ns-background-05"
|
|
563
|
-
>
|
|
564
|
-
<p><span class="srl-number">949.2</span></p>
|
|
565
|
-
</td>
|
|
566
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold">
|
|
567
|
-
<p><span class="srl-number">947.4</span></p>
|
|
568
|
-
</td>
|
|
569
|
-
</tr>
|
|
570
|
-
</tbody>
|
|
571
|
-
</table>
|
|
572
|
-
</div>
|
|
573
|
-
<div class="srl-footnote-container ns-footnote-container">
|
|
574
|
-
<p class="srl-footnote ns-footnote">
|
|
575
|
-
<span class="srl-footnote__key ns-footnote__key">1</span
|
|
576
|
-
><span class="srl-footnote__text ns-footnote__text"
|
|
577
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
|
|
578
|
-
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</span
|
|
579
|
-
>
|
|
580
|
-
</p>
|
|
581
|
-
</div>
|
|
582
|
-
</div>
|
|
583
|
-
</div>
|
|
584
|
-
</div>
|
|
585
|
-
<div class="srl-table srl-wide-width">
|
|
586
|
-
<div class="srl-table__container">
|
|
587
|
-
<div data-tableid="Vorlage">
|
|
588
|
-
<div class="srl-table-container ns-table-container">
|
|
589
|
-
<table class="srl-table-tab040 ns-table-tab040">
|
|
590
|
-
<thead>
|
|
591
|
-
<tr class="head">
|
|
592
|
-
<th class="srl-horizontal-left ns-horizontal-left head" scope="col">
|
|
593
|
-
<p><span>Lorem ipsum de</span></p>
|
|
594
|
-
</th>
|
|
595
|
-
<th class="srl-horizontal-right ns-horizontal-right head notes_group" scope="col">
|
|
596
|
-
<p><span>Anhang</span></p>
|
|
597
|
-
</th>
|
|
598
|
-
<th
|
|
599
|
-
class="srl-horizontal-right ns-horizontal-right head srl-background-05 ns-background-05"
|
|
600
|
-
scope="col"
|
|
601
|
-
>
|
|
602
|
-
<p><span>2024</span></p>
|
|
603
|
-
</th>
|
|
604
|
-
<th class="srl-horizontal-right ns-horizontal-right head" scope="col">
|
|
605
|
-
<p><span>2023</span></p>
|
|
606
|
-
</th>
|
|
607
|
-
</tr>
|
|
608
|
-
</thead>
|
|
609
|
-
<tbody>
|
|
610
|
-
<tr class="title">
|
|
611
|
-
<td class="srl-horizontal-left ns-horizontal-left title">
|
|
612
|
-
<p><span>Lorem ipsum de</span></p>
|
|
613
|
-
</td>
|
|
614
|
-
<td class="srl-horizontal-right ns-horizontal-right title notes_group">
|
|
615
|
-
<p><span></span></p>
|
|
616
|
-
</td>
|
|
617
|
-
<td
|
|
618
|
-
class="srl-horizontal-right ns-horizontal-right title srl-background-05 ns-background-05"
|
|
619
|
-
>
|
|
620
|
-
<p>
|
|
621
|
-
<span></span>
|
|
622
|
-
</p>
|
|
623
|
-
</td>
|
|
624
|
-
<td class="srl-horizontal-right ns-horizontal-right title">
|
|
625
|
-
<p><span></span></p>
|
|
626
|
-
</td>
|
|
627
|
-
</tr>
|
|
628
|
-
<tr>
|
|
629
|
-
<td class="srl-horizontal-left ns-horizontal-left">
|
|
630
|
-
<p><span>Lorem ipsum de</span></p>
|
|
631
|
-
</td>
|
|
632
|
-
<td class="srl-horizontal-right ns-horizontal-right notes_group">
|
|
633
|
-
<p><span class="srl-number">1</span></p>
|
|
634
|
-
</td>
|
|
635
|
-
<td
|
|
636
|
-
class="srl-horizontal-right ns-horizontal-right srl-background-05 ns-background-05"
|
|
637
|
-
>
|
|
638
|
-
<p><span class="srl-number">100.8</span></p>
|
|
639
|
-
</td>
|
|
640
|
-
<td class="srl-horizontal-right ns-horizontal-right">
|
|
641
|
-
<p><span class="srl-number">131.5</span></p>
|
|
642
|
-
</td>
|
|
643
|
-
</tr>
|
|
644
|
-
<tr>
|
|
645
|
-
<td class="srl-horizontal-left ns-horizontal-left">
|
|
646
|
-
<p><span>Lorem ipsum de</span></p>
|
|
647
|
-
</td>
|
|
648
|
-
<td class="srl-horizontal-right ns-horizontal-right notes_group">
|
|
649
|
-
<p><span class="srl-number">3</span></p>
|
|
650
|
-
</td>
|
|
651
|
-
<td
|
|
652
|
-
class="srl-horizontal-right ns-horizontal-right srl-background-05 ns-background-05"
|
|
653
|
-
>
|
|
654
|
-
<p><span class="srl-number">0.4</span></p>
|
|
655
|
-
</td>
|
|
656
|
-
<td class="srl-horizontal-right ns-horizontal-right">
|
|
657
|
-
<p><span class="srl-number">0.7</span></p>
|
|
658
|
-
</td>
|
|
659
|
-
</tr>
|
|
660
|
-
<tr class="bold">
|
|
661
|
-
<td class="srl-horizontal-left ns-horizontal-left bold">
|
|
662
|
-
<p><span>Lorem ipsum de</span></p>
|
|
663
|
-
</td>
|
|
664
|
-
<td class="srl-horizontal-right ns-horizontal-right bold notes_group">
|
|
665
|
-
<p><span></span></p>
|
|
666
|
-
</td>
|
|
667
|
-
<td
|
|
668
|
-
class="srl-horizontal-right ns-horizontal-right bold srl-background-05 ns-background-05"
|
|
669
|
-
>
|
|
670
|
-
<p><span class="srl-number">10.2</span></p>
|
|
671
|
-
</td>
|
|
672
|
-
<td class="srl-horizontal-right ns-horizontal-right bold">
|
|
673
|
-
<p><span class="srl-number">9.1</span></p>
|
|
674
|
-
</td>
|
|
675
|
-
</tr>
|
|
676
|
-
<tr class="blinebottom_bold">
|
|
677
|
-
<td class="srl-horizontal-left ns-horizontal-left blinebottom_bold">
|
|
678
|
-
<p><span>Lorem ipsum de</span></p>
|
|
679
|
-
</td>
|
|
680
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold notes_group">
|
|
681
|
-
<p><span></span></p>
|
|
682
|
-
</td>
|
|
683
|
-
<td
|
|
684
|
-
class="srl-horizontal-right ns-horizontal-right blinebottom_bold srl-background-05 ns-background-05"
|
|
685
|
-
>
|
|
686
|
-
<p><span class="srl-number">136.6</span></p>
|
|
687
|
-
</td>
|
|
688
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold">
|
|
689
|
-
<p><span class="srl-number">126.1</span></p>
|
|
690
|
-
</td>
|
|
691
|
-
</tr>
|
|
692
|
-
<tr class="title">
|
|
693
|
-
<td class="srl-horizontal-left ns-horizontal-left title">
|
|
694
|
-
<p><span>Lorem ipsum de</span></p>
|
|
695
|
-
</td>
|
|
696
|
-
<td class="srl-horizontal-right ns-horizontal-right title notes_group">
|
|
697
|
-
<p><span></span></p>
|
|
698
|
-
</td>
|
|
699
|
-
<td
|
|
700
|
-
class="srl-horizontal-right ns-horizontal-right title srl-background-05 ns-background-05"
|
|
701
|
-
>
|
|
702
|
-
<p>
|
|
703
|
-
<span></span>
|
|
704
|
-
</p>
|
|
705
|
-
</td>
|
|
706
|
-
<td class="srl-horizontal-right ns-horizontal-right title">
|
|
707
|
-
<p><span></span></p>
|
|
708
|
-
</td>
|
|
709
|
-
</tr>
|
|
710
|
-
<tr class="ind">
|
|
711
|
-
<td class="srl-horizontal-left ns-horizontal-left ind">
|
|
712
|
-
<p><span> Lorem ipsum de</span></p>
|
|
713
|
-
</td>
|
|
714
|
-
<td class="srl-horizontal-right ns-horizontal-right ind notes_group">
|
|
715
|
-
<p><span class="srl-number">1</span></p>
|
|
716
|
-
</td>
|
|
717
|
-
<td
|
|
718
|
-
class="srl-horizontal-right ns-horizontal-right ind srl-background-05 ns-background-05"
|
|
719
|
-
>
|
|
720
|
-
<p><span class="srl-number">559.2</span></p>
|
|
721
|
-
</td>
|
|
722
|
-
<td class="srl-horizontal-right ns-horizontal-right ind">
|
|
723
|
-
<p><span class="srl-number">523.2</span></p>
|
|
724
|
-
</td>
|
|
725
|
-
</tr>
|
|
726
|
-
<tr class="ind_ind">
|
|
727
|
-
<td class="srl-horizontal-left ns-horizontal-left ind_ind">
|
|
728
|
-
<p><span> Lorem ipsum de</span></p>
|
|
729
|
-
</td>
|
|
730
|
-
<td class="srl-horizontal-right ns-horizontal-right ind_ind notes_group">
|
|
731
|
-
<p><span></span></p>
|
|
732
|
-
</td>
|
|
733
|
-
<td
|
|
734
|
-
class="srl-horizontal-right ns-horizontal-right ind_ind srl-background-05 ns-background-05"
|
|
735
|
-
>
|
|
736
|
-
<p><span class="srl-number">438.2</span></p>
|
|
737
|
-
</td>
|
|
738
|
-
<td class="srl-horizontal-right ns-horizontal-right ind_ind">
|
|
739
|
-
<p><span class="srl-number">402.2</span></p>
|
|
740
|
-
</td>
|
|
741
|
-
</tr>
|
|
742
|
-
<tr class="bold">
|
|
743
|
-
<td class="srl-horizontal-left ns-horizontal-left bold">
|
|
744
|
-
<p><span>Lorem ipsum de</span></p>
|
|
745
|
-
</td>
|
|
746
|
-
<td class="srl-horizontal-right ns-horizontal-right bold notes_group">
|
|
747
|
-
<p><span></span></p>
|
|
748
|
-
</td>
|
|
749
|
-
<td
|
|
750
|
-
class="srl-horizontal-right ns-horizontal-right bold srl-background-05 ns-background-05"
|
|
751
|
-
>
|
|
752
|
-
<p><span class="srl-number">752.2</span></p>
|
|
753
|
-
</td>
|
|
754
|
-
<td class="srl-horizontal-right ns-horizontal-right bold">
|
|
755
|
-
<p><span class="srl-number">711.6</span></p>
|
|
756
|
-
</td>
|
|
757
|
-
</tr>
|
|
758
|
-
<tr class="blinebottom_bold">
|
|
759
|
-
<td class="srl-horizontal-left ns-horizontal-left blinebottom_bold">
|
|
760
|
-
<p><span>Lorem ipsum de</span></p>
|
|
761
|
-
</td>
|
|
762
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold notes_group">
|
|
763
|
-
<p><span></span></p>
|
|
764
|
-
</td>
|
|
765
|
-
<td
|
|
766
|
-
class="srl-horizontal-right ns-horizontal-right blinebottom_bold srl-background-05 ns-background-05"
|
|
767
|
-
>
|
|
768
|
-
<p><span class="srl-number">949.2</span></p>
|
|
769
|
-
</td>
|
|
770
|
-
<td class="srl-horizontal-right ns-horizontal-right blinebottom_bold">
|
|
771
|
-
<p><span class="srl-number">947.4</span></p>
|
|
772
|
-
</td>
|
|
773
|
-
</tr>
|
|
774
|
-
</tbody>
|
|
775
|
-
</table>
|
|
776
|
-
</div>
|
|
777
|
-
<div class="srl-footnote-container ns-footnote-container">
|
|
778
|
-
<p class="srl-footnote ns-footnote">
|
|
779
|
-
<span class="srl-footnote__key ns-footnote__key">1</span
|
|
780
|
-
><span class="srl-footnote__text ns-footnote__text"
|
|
781
|
-
>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
|
|
782
|
-
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</span
|
|
783
|
-
>
|
|
784
|
-
</p>
|
|
785
|
-
</div>
|
|
786
|
-
</div>
|
|
787
|
-
</div>
|
|
788
|
-
</div>
|
|
789
|
-
<figure class="srl-image srl-wide-width">
|
|
790
|
-
<div class="srl-grid srl-grid--media">
|
|
791
|
-
<div class="srl-grid__inner srl-image__image-container srl-image__image-container--desktop">
|
|
792
|
-
<img
|
|
793
|
-
class="srl-image__img srl-image__img--desktop"
|
|
794
|
-
src="/images/placeholder-2.jpg"
|
|
795
|
-
loading="lazy"
|
|
796
|
-
data-alt-text-target="alt"
|
|
797
|
-
/>
|
|
798
|
-
</div>
|
|
799
|
-
<div
|
|
800
|
-
class="srl-grid__inner srl-image__image-container srl-image__image-container--mobile"
|
|
801
|
-
doc-toggle="show-mobile-image"
|
|
802
|
-
data-remove-from-pdf="complete"
|
|
803
|
-
>
|
|
804
|
-
<img
|
|
805
|
-
class="srl-image__img srl-image__img--mobile"
|
|
806
|
-
doc-image="mobile-image"
|
|
807
|
-
data-alt-text-target="alt"
|
|
808
|
-
/>
|
|
809
|
-
</div>
|
|
810
|
-
</div>
|
|
811
|
-
<figcaption class="srl-grid srl-image__caption srl-linkable" doc-toggle="show-caption">
|
|
812
|
-
<span class="srl-image__caption-text" doc-editable="image-caption">
|
|
813
|
-
Write an image caption here (optional)
|
|
814
|
-
</span>
|
|
815
|
-
</figcaption>
|
|
816
|
-
</figure>
|
|
817
|
-
<figure class="srl-image srl-full-width">
|
|
818
|
-
<div class="srl-grid srl-grid--media">
|
|
819
|
-
<div class="srl-grid__inner srl-image__image-container srl-image__image-container--desktop">
|
|
820
|
-
<img
|
|
821
|
-
class="srl-image__img srl-image__img--desktop"
|
|
822
|
-
src="/images/placeholder-3.jpg"
|
|
823
|
-
loading="lazy"
|
|
824
|
-
data-alt-text-target="alt"
|
|
825
|
-
/>
|
|
826
|
-
</div>
|
|
827
|
-
<div
|
|
828
|
-
class="srl-grid__inner srl-image__image-container srl-image__image-container--mobile"
|
|
829
|
-
doc-toggle="show-mobile-image"
|
|
830
|
-
data-remove-from-pdf="complete"
|
|
831
|
-
>
|
|
832
|
-
<img
|
|
833
|
-
class="srl-image__img srl-image__img--mobile"
|
|
834
|
-
doc-image="mobile-image"
|
|
835
|
-
data-alt-text-target="alt"
|
|
836
|
-
/>
|
|
837
|
-
</div>
|
|
838
|
-
</div>
|
|
839
|
-
<figcaption class="srl-grid srl-image__caption srl-linkable" doc-toggle="show-caption">
|
|
840
|
-
<span class="srl-image__caption-text" doc-editable="image-caption">
|
|
841
|
-
Write an image caption here (optional)
|
|
842
|
-
</span>
|
|
843
|
-
</figcaption>
|
|
844
|
-
</figure>
|
|
845
|
-
|
|
846
|
-
<div class="srl-grid srl-signature">
|
|
847
|
-
<div class="srl-grid__inner srl-signature__content">
|
|
848
|
-
<div class="srl-signature__item">
|
|
849
|
-
<img class="srl-signature__img" src="/images/signature-1.png" />
|
|
850
|
-
<p class="srl-signature__name">Max Mustermann</p>
|
|
851
|
-
<p class="srl-signature__position">Position</p>
|
|
852
|
-
</div>
|
|
853
|
-
<div class="srl-signature__item">
|
|
854
|
-
<img class="srl-signature__img" src="/images/signature-2.png" />
|
|
855
|
-
<p class="srl-signature__name">Max Mustermann</p>
|
|
856
|
-
<p class="srl-signature__position">Position</p>
|
|
857
|
-
</div>
|
|
858
|
-
</div>
|
|
859
|
-
</div>
|
|
25
|
+
<h1>Test your components here</h1>
|
|
860
26
|
</article>
|
|
861
27
|
</template>
|