startpage

Simple text centric startpage
Log | Files | Refs | README

commit 64efed272c66a43b9a3f14b6235f68ca454deebd
parent 5bba09d551c4c879844bdb50f10ed1ed8dc6660b
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Mon, 18 Aug 2025 20:12:03 +0100

Only update date/time once a minute

Diffstat:
Mindex.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html @@ -367,7 +367,7 @@ document.getElementById("datetime-text").textContent = formatDateTime(now); } - setInterval(updateDateTime, 1000); + setInterval(updateDateTime, 60000); updateDateTime(); </script>