-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (70 loc) · 3.21 KB
/
Copy pathindex.html
File metadata and controls
77 lines (70 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Exodus</title>
<meta name="description" content="Rule of life tracker for the St. Agatha St. James Good Wine Group">
<meta name="theme-color" content="#2D1B4E">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Exodus">
<meta name="mobile-web-app-capable" content="yes">
<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=Inter:wght@400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css?v=20260525a">
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="icon" href="favicon_io/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0MLTLVTK6F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0MLTLVTK6F');
</script>
</head>
<body>
<div class="page-shell">
<div class="page-aurora" aria-hidden="true"></div>
<div class="page-grid" aria-hidden="true"></div>
<header class="hero">
<div class="hero-copy">
<p class="hero-kicker">Exodus</p>
</div>
<div class="hero-panel">
<nav class="date-nav" aria-label="Date navigation">
<button id="prev-day" aria-label="Previous day">‹</button>
<div class="date-center">
<span id="current-date"></span>
<span id="lent-day"></span>
<span id="today-indicator" class="today-indicator" hidden><span class="pulse-dot" aria-hidden="true"></span>Today</span>
</div>
<button id="next-day" aria-label="Next day">›</button>
</nav>
<div class="hero-actions">
<button id="today-btn" hidden>Return to Today</button>
</div>
<div class="progress">
<svg class="progress-ring" viewBox="0 0 36 36" aria-hidden="true">
<circle class="progress-ring-bg" cx="18" cy="18" r="15.5" />
<circle id="progress-fill" class="progress-ring-fill" cx="18" cy="18" r="15.5" />
</svg>
<span id="progress-text" class="progress-text"></span>
</div>
</div>
</header>
<main id="checklist"></main>
<div id="settings-section" class="settings-section-wrapper"></div>
<div id="anchors-section" class="anchors-section-wrapper"></div>
<div id="account-section" class="account-section-wrapper"></div>
<footer>
Inspired by <a href="https://exodus90.com/" target="_blank" rel="noopener">Exodus 90</a>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>