Updated Form with E-Mail and JS-obfuscation

This commit is contained in:
spetznas
2026-05-17 08:39:09 +02:00
parent 1cb22384fd
commit 69a5cc6ee0
29 changed files with 1703 additions and 74 deletions
+8
View File
@@ -0,0 +1,8 @@
// layouts/shortcodes/email.html
{{ $user := .Get "user" }}
{{ $domain := .Get "domain" }}
<script>
const e = '{{ $user }}' + '@' + '{{ $domain }}';
document.write('<a href="mailto:' + e + '">' + e + '</a>');
</script>