tweak CV looks

This commit is contained in:
2024-10-04 09:04:20 +03:00
parent 18986d9b8f
commit fb0073d34d
3 changed files with 40 additions and 10 deletions
+12
View File
@@ -27,6 +27,18 @@
<!-- the rest is ours -->
<link rel="stylesheet" href="/style.css">
<title>{{ .Site.Title }}</title>
<!-- a naive email obfuscator to counteract scrapers -->
<script>
window.addEventListener('DOMContentLoaded', function () {
let first = 'ville';
let at = '@';
let last = 'lindholm';
document.querySelectorAll('span#lindholm-email').forEach(function (span) {
span.innerHTML = `${first}${at}${last}.dev`;
});
});
</script>
</head>
<body>