blob: f1ac0e13807bc381df02503fb3b0dca3ee7dbb2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
layout: base.njk
title: Contact
---
<h2>Want to talk with me?</h2>
<ul>
<li>
Email: indrajith @ indrajith.dev
</li>
<li id="origin-website">
(🌐) <a href="https://indrajith.dev">https://indrajith.dev</a>
</li>
</ul>
<style>
#origin-website {
display:none;
}
</style>
<script>
const websiteLink = document.getElementById("origin-website");
if (location.host.includes("neocities")) {
websiteLink.style.display = "block";
}
</script>
|