fix: Clickable email link

This commit is contained in:
Sven Minio 2026-05-16 20:44:17 +02:00
commit eb60e304dd

View file

@ -7,7 +7,7 @@ Koppoldstr. 1
GERMANY GERMANY
## Contact ## Contact
**Email:** [&#99;&#x6f;n&#116;&#x61;c&#116;&#64;&#x73;&#111;u&#x72;&#99;e&#45;&#x63;o&#108;&#x6c;&#97;b&#46;&#x63;&#111;m](&#109;a&#x69;&#108;&#x74;o&#58;c&#111;&#x6e;t&#97;&#x63;&#116;&commat;&#115;&#x6f;&#117;r&#x63;&#101;&#x2d;&#99;&#x6f;l&#108;&#x61;&#98;&period;c&#x6f;&#109;) **Email:** <span id="email-container">&#99;&#x6f;n&#116;&#x61;c&#116;&#64;&#x73;&#111;u&#x72;&#99;e&#45;&#x63;o&#108;&#x6c;&#97;b&#46;&#x63;&#111;m</span>
## EU Dispute Resolution ## EU Dispute Resolution
The European Commission provides a platform for online dispute resolution (ODR): [https://ec.europa.eu/consumers/odr/](https://ec.europa.eu/consumers/odr/). The European Commission provides a platform for online dispute resolution (ODR): [https://ec.europa.eu/consumers/odr/](https://ec.europa.eu/consumers/odr/).
@ -34,3 +34,24 @@ A permanent content control of the linked websites is not reasonable without con
Contents and works published on these websites by the site operators are subject to German copyright laws. The reproduction, editing, distribution, and any kind of use outside the scope of the copyright law require a written permission of the respective author or creator. Downloads and copies of these websites are permitted for private, non-commercial use only. Contents and works published on these websites by the site operators are subject to German copyright laws. The reproduction, editing, distribution, and any kind of use outside the scope of the copyright law require a written permission of the respective author or creator. Downloads and copies of these websites are permitted for private, non-commercial use only.
Insofar as the content on this site was not created by the operator, the copyrights of third parties are respected. In particular, third-party content is identified as such. Should you nevertheless become aware of a copyright infringement, please inform us accordingly. Upon becoming aware of legal violations, we will remove such contents immediately. Insofar as the content on this site was not created by the operator, the copyrights of third parties are respected. In particular, third-party content is identified as such. Should you nevertheless become aware of a copyright infringement, please inform us accordingly. Upon becoming aware of legal violations, we will remove such contents immediately.
<script>
$(document).ready(() => {
const u = 'contact';
const d = 'source';
const e = 'collab';
const tld = 'com';
const mProto = String.fromCharCode(109, 97, 105, 108, 116, 111, 58);
const at = String.fromCharCode(64);
const dot = String.fromCharCode(46);
const dash = String.fromCharCode(45);
const rawEmail = u + at + d + dash + e + dot + tld;
const displayHtml = `${u}&#64;${d}&#45;${e}&#46;${tld}`;
$('#email-container').each((el) => {
const link = document.createElement('a');
const $link = $(link);
$link.attr('href', mProto + rawEmail).html(displayHtml);
$(el).empty().append($link);
});
});
</script>