aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-08-29 21:54:25 -0400
committerRaghuram Subramani <raghus2247@gmail.com>2025-08-29 21:54:25 -0400
commit6b17df9fd3ac90e044eb5d258f7a1d3d3ec0efa1 (patch)
treeb3ed0013e2188c93dbfb3bfdb9395a27124c210b
parent198beca385a8bd04cf7177eb486834f3c356ebf5 (diff)
index: move links to config.cfg
-rw-r--r--config.cfg8
-rw-r--r--index.html5
2 files changed, 11 insertions, 2 deletions
diff --git a/config.cfg b/config.cfg
index 55a62d7..70b3ee3 100644
--- a/config.cfg
+++ b/config.cfg
@@ -10,3 +10,11 @@ resources = {
static = {
assets
}
+
+links = [
+ href = https://github.com/compromyse
+ label = GITHUB
+ ___
+ href = https://www.linkedin.com/in/compromyse
+ label = LINKEDIN
+]
diff --git a/index.html b/index.html
index 4f33a1f..df0d190 100644
--- a/index.html
+++ b/index.html
@@ -12,8 +12,9 @@ title = HOME
<p class="text-xl lg:text-3xl"><span class="text-pink-900 bg-pink-100 selection:bg-zinc-400 selection:text-pink-800 p-2">Programmer and Hacker.</span></p>
<div class="flex gap-2 lg:text-xl pt-4">
- <a href="https://github.com/compromyse" class="button" target="_blank">GITHUB</a>
- <a href="https://www.linkedin.com/in/compromyse" class="button" target="_blank">LINKEDIN</a>
+ {{ eachdo config.links }}
+ <a href="{{ put href }}" class="button" target="_blank">{{ put label }}</a>
+ {{ endeachdo }}
</div>
</div>
</div>