aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-12-18 16:07:21 -0600
committerMark Powers <markppowers0@gmail.com>2020-12-18 16:07:21 -0600
commit232638fb98108fd1509b944545b3e1f629d12371 (patch)
treeca5224aebb6c77b3c93436d378a84f370356b5ae
parent2c2718ed12d07b7cdb5dfee60e146e214a8d6842 (diff)
Add music button
-rw-r--r--index.html13
-rw-r--r--link-manager.js4
2 files changed, 11 insertions, 6 deletions
diff --git a/index.html b/index.html
index 6bf5acc..1b385e4 100644
--- a/index.html
+++ b/index.html
@@ -8,8 +8,10 @@
</head>
<body>
- <h1></h1>
- <span class="search"><input id="searchInput" placeholder="Search..."><button id="searchBtn">Go</button></span>
+ <span class="search">
+ <input id="searchInput" placeholder="Search...">
+ <button id="searchBtn">Go</button>
+ </span>
<div class="items">
<a class="item" id="budget">
<span class="icon">💰</span><span>BUDGET</span>
@@ -29,8 +31,11 @@
<a class="item" id="mastodon" href="https://fosstodon.org">
<span class="icon">#️⃣</span><span>FOSSTODON</span>
</a>
- <a class="item" id="gitea">
- <span class="icon">💾</span><span>GITEA</span>
+ <a class="item" id="git">
+ <span class="icon">💾</span><span>GIT</span>
+ </a>
+ <a class="item" id="music">
+ <span class="icon">🎵</span><span>MUSIC</span>
</a>
<a class="item" id="rss">
<span class="icon">📰</span><span>RSS</span>
diff --git a/link-manager.js b/link-manager.js
index 7772ee8..8a8e9e4 100644
--- a/link-manager.js
+++ b/link-manager.js
@@ -1,11 +1,11 @@
document.getElementById("wiki").href = `${WIKI_URL}`;
document.getElementById("rss").href = `${RSS_URL}`;
document.getElementById("rssvideo").href = `${RSS_VIDEO_URL}`;
-document.getElementById("gitea").href = `${GITEA_URL}`;
+document.getElementById("git").href = `${GIT_URL}`;
document.getElementById("files").href = `${FILES_URL}`;
document.getElementById("filefeed").href = `${FILE_FEED_URL}`;
document.getElementById("calendar").href = `${CALENDAR_URL}`;
document.getElementById("budget").href = `${BUDGET_URL}`;
document.getElementById("chess").href = `${CHESS_URL}`;
document.getElementById("wunderground").href = `https://www.wunderground.com/forecast/${WUNDERGROUND_STATION}`
-
+document.getElementById("music").href = `${MUSIC_URL}`;