diff options
-rw-r--r-- | index.html | 12 | ||||
-rw-r--r-- | status.js | 4 | ||||
-rw-r--r-- | styles.css | 9 |
3 files changed, 23 insertions, 2 deletions
@@ -56,6 +56,18 @@ <span class="icon">📽️</span><span>YOUTUBE</span> </a> </div> + <div> + <h2>Simply Folk</h2> + <audio xmlns="http://www.w3.org/1999/xhtml" controls=""> + <source src="http://10.0.0.201:8000/chill" type="audio/mpeg" /> + </audio> + </div> + <div> + <h2>Background</h2> + <audio xmlns="http://www.w3.org/1999/xhtml" controls=""> + <source src="http://10.0.0.201:8000/mpd" type="audio/mpeg" /> + </audio> + </div> <table class="weather"> <tr> <td rowspan="2"> @@ -1,8 +1,8 @@ let urls = [ - WIKI_URL, RSS_URL, RSS_VIDEO_URL, GITEA_URL, FILES_URL, FILE_FEED_URL, CALENDAR_URL, BUDGET_URL + WIKI_URL, RSS_URL, RSS_VIDEO_URL, GIT_URL, FILES_URL, FILE_FEED_URL, CALENDAR_URL, BUDGET_URL ] let ids = [ - "wiki", "rss", "rssvideo", "gitea", "files", "filefeed", "calendar", "budget" + "wiki", "rss", "rssvideo", "git", "files", "filefeed", "calendar", "budget" ] let status_url = `http://localhost:8080?${urls.join("&")}` fetch(status_url) @@ -60,6 +60,15 @@ button { flex-grow: 1; } +h2 { + color: #fff; + display: inline; +} + +audio { + display: inline; +} + .weather { color: #fff; text-align: center; |