-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 2.39 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>U.S. Flag Status Monitor</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="assets/favicon.png">
<meta name="description" content="Real-time U.S. flag status monitor showing current flag position (full-staff or half-staff)">
</head>
<body>
<header>
<h1>🇺🇸 U.S. Flag Status Monitor</h1>
</header>
<main>
<div class="flag-container">
<div class="pole"></div>
<div class="flag" id="flag">
<div class="stripes">
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
</div>
<div class="union">
<div class="stars"></div>
</div>
</div>
</div>
<div class="status-info">
<h2>Current Status: <span id="status-text">Loading...</span></h2>
<p id="reason"></p>
<p class="last-updated">Last updated: <span id="last-updated">checking...</span></p>
<p class="source">Source: <span id="source">checking...</span></p>
</div>
</main>
<footer>
<p>Data sourced from official U.S. government sources. Updates every 6 hours.</p>
<p>
<a href="https://github.com/jacob-booth/flag-status-monitor" target="_blank" rel="noopener noreferrer">
View on GitHub
</a>
|
<a href="docs/" target="_blank" rel="noopener noreferrer">
Documentation
</a>
</p>
</footer>
<div class="loading-overlay" id="loading-overlay">
<div class="loading-spinner"></div>
<p>Loading flag status...</p>
</div>
<script src="app.js"></script>
</body>
</html>