diff options
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | link-manager.js | 1 | ||||
-rw-r--r-- | template-config.js | 3 |
3 files changed, 4 insertions, 2 deletions
@@ -11,7 +11,7 @@ <h1></h1> <span class="search"><input id="searchInput" placeholder="Search..."><button id="searchBtn">Go</button></span> <div class="items"> - <a class="item" href="https://budget.marks.kitchen"> + <a class="item" id="budget"> <span class="icon">💰</span>BUDGET </a> <a class="item" id="calendar"> diff --git a/link-manager.js b/link-manager.js index f41be2b..14c6cbe 100644 --- a/link-manager.js +++ b/link-manager.js @@ -5,4 +5,5 @@ document.getElementById("gitea").href = `${GITEA_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("wunderground").href = `https://www.wunderground.com/forecast/${WUNDERGROUND_STATION}`
\ No newline at end of file diff --git a/template-config.js b/template-config.js index a69143b..46684f2 100644 --- a/template-config.js +++ b/template-config.js @@ -9,4 +9,5 @@ const GITEA_URL = undefined; const FILES_URL = undefined; const FILE_FEED_URL = undefined; const CALENDAR_URL = undefined; -const WEATHER_UNITS = "imperial"
\ No newline at end of file +const WEATHER_UNITS = "imperial"; +const BUDGET_URL = undefined;
\ No newline at end of file |