Remove some unused stuff from base index.html

This commit is contained in:
Rupus Reinefjord 2023-03-04 17:57:16 +01:00
parent 1e009617dd
commit 48dca77b3e

View file

@ -22,14 +22,6 @@
margin: 0 auto;
}
code, .email {
font-family: monospace, monospace;
}
#gpg-fingerprint {
font-size: small;
}
.asterism, footer {
margin: 2rem 0;
text-align: center;
@ -56,22 +48,11 @@
taking some photos. It was a lot more cold and rainy than what I was
expecting, so I didn't stay outside for long.
</p>
<a href="DSCF4917.JPG@1000"><img src="DSCF4917.JPG@500" width=500 alt="Edsviken at dusk."></a>
<a href="DSCF4917.JPG@1000">
<img src="DSCF4917.JPG@500" width=500 alt="Edsviken at dusk.">
</a>
</main>
<footer>&#10086;</footer>
<script>
function emaildecode() {
var emails = document.getElementsByClassName("encoded");
for (var i = 0; i < emails.length; i++) {
var b64 = emails[i].dataset.encoded;
var decoded = window.atob(b64);
emails[i].innerHTML = decoded;
emails[i].href = "mailto:" + decoded;
}
}
emaildecode();
</script>
</body>
</html>