aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-09-06 11:07:14 -0500
committerMark Powers <markppowers0@gmail.com>2020-09-06 11:07:14 -0500
commit1f1f48db76b5b99092b44d52f1ed7af327034d71 (patch)
tree4ddec4d6e03a86fd2330db577fa846ec3fad07fd
parentad244411564f5563bc6f10a65833f4225698bdf5 (diff)
Fix budget URL
-rw-r--r--index.html2
-rw-r--r--link-manager.js1
-rw-r--r--template-config.js3
3 files changed, 4 insertions, 2 deletions
diff --git a/index.html b/index.html
index 1ee3622..af6b4a8 100644
--- a/index.html
+++ b/index.html
@@ -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