diff options
author | Mark Powers <mark@marks.kitchen> | 2022-02-19 21:55:34 +0000 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2022-02-19 21:55:34 +0000 |
commit | 642840b4a9230ac6ea6e52a8b9f735e6bf20767d (patch) | |
tree | 885b00780c680d91ccad76eea9aa10305d1dd09f | |
parent | 0e5edc4fbbb1818885d66b384b89880c201f8d61 (diff) |
Adjust links
-rw-r--r-- | index.html | 16 | ||||
-rw-r--r-- | link-manager.js | 3 |
2 files changed, 11 insertions, 8 deletions
@@ -34,17 +34,20 @@ <a class="item" id="git"> <span class="icon">💾</span><span>GIT</span> </a> - <a class="item" id="music"> + <a class="item" id="grafana" href="http://10.0.0.201:3000/d/QhO5fBzRk/weather?orgId=1"> + <span class="icon">📊</span><span>GRAFANA</span> + </a> + <a class="item" href="https://news.ycombinator.com/"> + <span class="icon">🐱💻</span><span>HN</span> + </a> + <a class="item" id="music" href="http://10.0.0.201:8000"> <span class="icon">🎵</span><span>MUSIC</span> </a> <a class="item" id="rss"> <span class="icon">📰</span><span>RSS</span> </a> - <a class="item" id="rssvideo"> - <span class="icon">📺</span><span>RSS VIDEO</span> - </a> - <a class="item" href="https://news.ycombinator.com/"> - <span class="icon">🐱💻</span><span>HN</span> + <a class="item" href="https://www.twitch.tv/directory/following"> + <span class="icon">📺</span><span>TWITCH</span> </a> <a class="item" id="wiki"> <span class="icon">📖</span><span>WIKI</span> @@ -55,6 +58,7 @@ <a class="item" href="https://www.youtube.com/feed/subscriptions"> <span class="icon">📽️</span><span>YOUTUBE</span> </a> + </a> </div> <div> <h2>Simply Folk</h2> diff --git a/link-manager.js b/link-manager.js index 8a8e9e4..3e06976 100644 --- a/link-manager.js +++ b/link-manager.js @@ -1,6 +1,5 @@ document.getElementById("wiki").href = `${WIKI_URL}`; document.getElementById("rss").href = `${RSS_URL}`; -document.getElementById("rssvideo").href = `${RSS_VIDEO_URL}`; document.getElementById("git").href = `${GIT_URL}`; document.getElementById("files").href = `${FILES_URL}`; document.getElementById("filefeed").href = `${FILE_FEED_URL}`; @@ -8,4 +7,4 @@ 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}`; +//document.getElementById("music").href = `${MUSIC_URL}`; |