diff options
author | venomade <venomade@venomade.com> | 2025-08-11 21:16:43 +0100 |
---|---|---|
committer | venomade <venomade@venomade.com> | 2025-08-11 21:16:43 +0100 |
commit | 189e8c37b0ff5655d472fa0a0226ee940281c5c9 (patch) | |
tree | 4e4284e7f2d2d894202de340721731105133e666 /startpage.html | |
parent | 91b64f5127befe36974e6c9b69e8f5563f9fbf0e (diff) |
Switch to Hugo and add Portuguese
Diffstat (limited to 'startpage.html')
-rw-r--r-- | startpage.html | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/startpage.html b/startpage.html deleted file mode 100644 index e6e2166..0000000 --- a/startpage.html +++ /dev/null @@ -1,59 +0,0 @@ -<!doctype html> -<html lang=en> - <meta charset=utf-8> - <title>startpage</title> - <meta name="description" content="Venomade's Startpage"> - <link rel="stylesheet" href="css/style.css"> - <link rel="shortcut icon" href="res/favicon.ico" type="image/x-icon"> - - <index-body> - <main style="display: flex; justify-content: center; align-items: center; height: 100vh; width: 100vw; text-align: center; flex-direction: column;"> - - <article> - - <div class=box style="margin-bottom: 10px;"><div class=inner style="padding: 2px 15px;"> - - <p> - <div id="clock" style="font-size: 36pt; font-weight: bold;">Links:</div> - - </div></div> - - - <div class=box style="margin-bottom: 10px;"><div class=inner style="padding: 2px 15px;"> - - <p> - <h3> - <a href="https://cloud.venomade.com">Nextcloud</a> - </h3> - <h3> - <a href="https://git.venomade.com">Git</a> - </h3> - <h3> - <a href="https://youtube.com">Youtube</a> - </h3> - <h3> - <a href="https://mail.proton.me">Protonmail</a> - </h3> - <h3> - <a href="https://duck.ai">DuckAI</a> - </h3> - - </div></div> - - </article> - - </main> - </index-body> - - <!-- Javascript Needed for Clock--> - <script> - function updateClock() { - const now = new Date(); - const hours = String(now.getHours()).padStart(2, '0'); - const minutes = String(now.getMinutes()).padStart(2, '0'); - document.getElementById('clock').textContent = `${hours}:${minutes}`; - } - - setInterval(updateClock, 1000); - updateClock(); - </script> |