Files
7am/web/index.html

74 lines
2.6 KiB
HTML
Raw Normal View History

2025-05-10 00:36:38 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>7am - Daily Weather Summary</title>
2025-05-11 00:08:20 +01:00
<meta name="title" content="7am - Daily Weather Summary">
2025-05-11 00:36:55 +01:00
<meta name="description" content="Daily weather summary delivered to you at 7am.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://7am.is">
2025-05-11 00:08:20 +01:00
<meta property="og:title" content="7am Weather">
<meta property="og:description" content="Daily weather summary delivered to you at 7am.">
2025-05-11 13:36:32 +01:00
<meta property="og:image" content="https://7am.is/hero.png">
2025-05-11 13:18:49 +01:00
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://7am.is">
2025-05-11 13:18:49 +01:00
<meta name="twitter:title" content="7am Weather">
<meta name="twitter:description" content="Daily weather summary delivered to you at 7am.">
2025-05-11 13:36:32 +01:00
<meta name="twitter:image" content="https://7am.is/hero.png">
2025-05-10 14:58:41 +01:00
2025-05-10 22:45:10 +01:00
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="manifest" href="/manifest.json">
2025-05-10 00:36:38 +01:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
2025-05-10 16:21:43 +01:00
<link href="/style.css" rel="stylesheet">
2025-05-10 14:58:41 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-05-10 00:36:38 +01:00
</head>
<body>
2025-05-10 16:21:43 +01:00
<div class="container">
<header>
<h1>7am</h1>
2025-05-11 00:08:20 +01:00
<h2>Daily weather summary delivered to you at 7am.</h2>
2025-05-10 16:21:43 +01:00
</header>
<main>
<hr class="divider" />
<ul>
<li><a href="/london">London</a></li>
<li><a href="/sf">San Francisco</a></li>
<li><a href="/sj">San Jose</a></li>
<li><a href="/la">Los Angeles</a></li>
<li><a href="/nyc">New York City</a></li>
2025-05-10 22:56:51 +01:00
<li><a href="/berlin">Berlin</a></li>
<li><a href="/zurich">Zurich</a></li>
<li><a href="/warsaw">Warsaw</a></li>
<li><a href="/dubai">Dubai</a></li>
2025-05-10 16:21:43 +01:00
<li><a href="/tokyo">Tokyo</a></li>
2025-05-13 19:37:33 +08:00
<li><a href="/manila">Manila</a></li>
2025-05-15 00:40:31 +08:00
<li><a href="/hk">Hong Kong</a></li>
2025-05-10 16:21:43 +01:00
</ul>
</main>
<footer>
<p>
2025-05-11 00:12:29 +01:00
Source code:&nbsp;<a href="https://github.com/kennethnym/7am">GitHub</a>
2025-05-10 16:21:43 +01:00
</p>
</footer>
</div>
2025-05-10 22:45:10 +01:00
<script>
window.addEventListener("load", () => {
navigator.serviceWorker.register("/sw.js")
})
</script>
2025-05-10 00:36:38 +01:00
</body>
</html>