feat: imprint
This commit is contained in:
@@ -77,7 +77,8 @@
|
|||||||
<p>
|
<p>
|
||||||
The controller for data processing within the meaning of the GDPR is {{ global.firstname }} {{ global.lastname }}, reachable at
|
The controller for data processing within the meaning of the GDPR is {{ global.firstname }} {{ global.lastname }}, reachable at
|
||||||
<a class="inline-link" [href]="contactSafeMail">{{ global.contactMail }}</a> and by phone at
|
<a class="inline-link" [href]="contactSafeMail">{{ global.contactMail }}</a> and by phone at
|
||||||
<a class="inline-link" href="tel:{{ global.hrefContactPhone }}">{{ global.contactPhone }}</a>.
|
<a class="inline-link" href="tel:{{ global.hrefContactPhone }}">{{ global.contactPhone }}</a
|
||||||
|
>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
As currently implemented in this web project, this website does not use its own tracking, analytics cookies, marketing cookies, or
|
As currently implemented in this web project, this website does not use its own tracking, analytics cookies, marketing cookies, or
|
||||||
@@ -98,9 +99,7 @@
|
|||||||
Personal data is disclosed only where legally required, needed for the establishment, exercise, or defence of legal claims, or
|
Personal data is disclosed only where legally required, needed for the establishment, exercise, or defence of legal claims, or
|
||||||
explicitly initiated by you.
|
explicitly initiated by you.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>Data is stored only as long as required for communication, request handling, and legal retention duties.</p>
|
||||||
Data is stored only as long as required for communication, request handling, and legal retention duties.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@@ -122,7 +121,7 @@
|
|||||||
<div class="story-detail">
|
<div class="story-detail">
|
||||||
<p>
|
<p>
|
||||||
Complaints can be submitted to the Austrian Data Protection Authority: Barichgasse 40-42, 1030 Vienna, email
|
Complaints can be submitted to the Austrian Data Protection Authority: Barichgasse 40-42, 1030 Vienna, email
|
||||||
<a class="inline-link" href="mailto:dsb@dsb.gv.at">dsb@dsb.gv.at</a>, website
|
<a class="inline-link" href="mailto:dsb@dsb.gv.at">dsb@dsb.gv.at</a>, website
|
||||||
<a class="inline-link" href="https://dsb.gv.at/">dsb.gv.at</a>.
|
<a class="inline-link" href="https://dsb.gv.at/">dsb.gv.at</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -141,15 +140,13 @@
|
|||||||
All content on this website, including texts, images, graphics, photographs, layouts, source code, and other works, is protected
|
All content on this website, including texts, images, graphics, photographs, layouts, source code, and other works, is protected
|
||||||
by copyright unless stated otherwise. All rights remain reserved.
|
by copyright unless stated otherwise. All rights remain reserved.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>Any use beyond statutory exceptions requires prior written consent of the respective rights holder.</p>
|
||||||
Any use beyond statutory exceptions requires prior written consent of the respective rights holder.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="story-detail">
|
<div class="story-detail">
|
||||||
<p>
|
<p>
|
||||||
This website may contain links to third-party websites. Their operators are solely responsible for those contents, and no liability
|
This website may contain links to third-party websites. Their operators are solely responsible for those contents, and no
|
||||||
is accepted for external links to the extent permitted by law.
|
liability is accepted for external links to the extent permitted by law.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Austrian law applies exclusively, excluding conflict-of-law rules that would refer to another legal system, unless mandatory
|
Austrian law applies exclusively, excluding conflict-of-law rules that would refer to another legal system, unless mandatory
|
||||||
|
|||||||
@@ -35,11 +35,11 @@ export class ImprintComponent implements OnInit {
|
|||||||
|
|
||||||
private normalizeText(value: string): string {
|
private normalizeText(value: string): string {
|
||||||
return value
|
return value
|
||||||
.replaceAll('ß', 'ß')
|
.replaceAll('ß', 'ß')
|
||||||
.replaceAll('ö', 'ö')
|
.replaceAll('ö', 'ö')
|
||||||
.replaceAll('Ä', 'Ä')
|
.replaceAll('Ä', 'Ä')
|
||||||
.replaceAll('ä', 'ä')
|
.replaceAll('ä', 'ä')
|
||||||
.replaceAll('Ü', 'Ü')
|
.replaceAll('Ü', 'Ü')
|
||||||
.replaceAll('ü', 'ü');
|
.replaceAll('ü', 'ü');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -15,13 +15,13 @@
|
|||||||
<body>
|
<body>
|
||||||
<app-root></app-root>
|
<app-root></app-root>
|
||||||
|
|
||||||
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
|
<script src="https://storage.ko-fi.com/cdn/scripts/overlay-widget.js"></script>
|
||||||
<script>
|
<script>
|
||||||
kofiWidgetOverlay.draw('fraujulian', {
|
kofiWidgetOverlay.draw('fraujulian', {
|
||||||
'type': 'floating-chat',
|
type: 'floating-chat',
|
||||||
'floating-chat.donateButton.text': 'Coffee',
|
'floating-chat.donateButton.text': 'Coffee',
|
||||||
'floating-chat.donateButton.background-color': '#ff5f5f',
|
'floating-chat.donateButton.background-color': '#ff5f5f',
|
||||||
'floating-chat.donateButton.text-color': '#fff'
|
'floating-chat.donateButton.text-color': '#fff',
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Reference in New Issue
Block a user