-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnat.html
More file actions
570 lines (472 loc) · 22.9 KB
/
nat.html
File metadata and controls
570 lines (472 loc) · 22.9 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>National Maps and Charts</title>
<style>
* { box-sizing: border-box; }
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
background-image: url('https://raw.githubusercontent.com/ApexWx/ApexWx.github.io/refs/heads/master/seamless-background-simply-sky.jpg');
background-repeat: repeat;
background-size: cover;
background-attachment: fixed;
margin: 0;
}
/* === MENU STYLE START === */
.nav {
display: none;
flex-direction: column;
align-items: center;
list-style: none;
padding: 0;
margin: 0;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.nav.show {
display: flex;
}
.nav li {
display: inline;
}
.nav a {
display: inline-block;
padding: 10px;
text-decoration: none;
font-weight: bold;
color: black;
}
.nav a:hover {
text-decoration: underline;
color: #0077cc;
}
#navToggle {
font-size: 20px;
border: none;
background: none;
cursor: pointer;
margin: 10px auto;
display: block;
}
@media (min-width: 769px) {
.nav {
display: flex;
flex-direction: row;
justify-content: center;
}
#navToggle {
display: none;
}
}
/* === MENU STYLE END === */
.row {
display: flex;
flex-wrap: wrap;
gap: 1em;
justify-content: center;
margin-bottom: 2em;
}
.column {
flex: 1 1 300px;
min-width: 280px;
max-width: 100%;
box-sizing: border-box;
padding: 0.5em;
}
img {
max-width: 100%;
height: auto;
border: 1px solid #ccc;
display: block;
margin: auto;
}
.clock-table {
width: 90%;
max-width: 600px;
margin: 1em auto;
text-align: center;
border-collapse: collapse;
}
.clock-cell {
font-weight: bold;
}
</style> </head>
<body>
<h2 style="text-align: center;">National Maps & Charts</h2>
<div id="last-modified" style="text-align:center; font-size:14px; font-family:Arial, sans-serif; margin-top: -0.5em;"></div>
<div style="text-align: center; font-size: 12px;"><br>
<em> </em></div>
<div style="text-align: center; font-size: 12px;"><em>Graphics update
automatically -- check image timestamps for most recent updates/valid
periods.</em></div>
<div style="text-align: center;">
<ul class="nav">
<li><a href="https://apexwx.github.io/">Home</a></li>
<li><a href="#satellite">Satellite</a></li>
<li><a href="#severe">Severe Weather</a></li>
<li><a href="#temperature">Temperature</a></li>
<li><a href="#precip">Precipitation</a></li>
<li><a href="#fire">Fire Weather</a></li>
<li><a href="#trends">Trends</a></li>
</ul>
</div>
<!-- === END NAVIGATION MENU === -->
<table class="clock-table">
<thead>
<tr>
<th>Eastern Time 12-Hour</th>
<th>Eastern Time 24-Hour</th>
<th>UTC / Z / Greenwich</th>
</tr>
</thead>
<tbody>
<tr>
<td class="clock-cell" id="et12">--</td>
<td class="clock-cell" id="et24">--</td>
<td class="clock-cell" id="utc">--</td>
</tr>
</tbody>
</table>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="main"></a>National
Weather Map</strong><a href="https://www.wpc.ncep.noaa.gov/NationalForecastChart/map.php"
title="Click for interactive image"><img alt="National Weather Chart"
src="https://www.wpc.ncep.noaa.gov/NationalForecastChart/staticmaps/noaad1.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>National Watches and Warnings</strong><br>
<strong></strong></div>
<strong> </strong> <strong></strong> <strong> </strong> <a href="https://www.weather.gov/"
title="Click for larger image"><img alt="National Watches and Warnings"
src="https://forecast.weather.gov/wwamap/png/US.png" style="width: 541px; border-width: 1px; border-style: solid; height: 339px;"></a>
</div>
<div class="column">
<div style="text-align: center;"><strong>National Radar</strong><strong></strong>
<strong> </strong> <a href="https://s.w-x.co/staticmaps/wu/wu/wxtype1200_cur/conus/animate.png"
title="Click for larger image"><img alt="National Radar" src="https://s.w-x.co/staticmaps/wu/wu/wxtype1200_cur/conus/animate.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
</div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i><br>
</a><br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="satellite"></a><a
id="satellite"></a>National True Color Satellite</strong><a href="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/CONUS/GEOCOLOR/latest.jpg"
title="Click for larger image"><img alt="National Geocolor Satellite"
src="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/CONUS/GEOCOLOR/625x375.jpg"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>National Infrared Satellite</strong><br>
<a href="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/ne/Sandwich/20211511811_GOES16-ABI-ne-Sandwich-2400x2400.jpg"
title="Click for larger image"> </a></div>
<div style="text-align: center;"><a href="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/CONUS/Sandwich/2500x1500.jpg"
title="Click for larger image"><img alt="National Infrared" src="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/CONUS/Sandwich/625x375.jpg"
style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
<a href="https://www.weather.gov/images/car/WeatherStory.gif" title="Click for larger image"></a>
</div>
<div class="column">
<div style="text-align: center;"><strong>National Water Vapor Satellite</strong><br>
<strong></strong></div>
<strong> </strong> <a href="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/CONUS/09/latest.jpg"
title="Click for larger image"><img alt="National Water Vapor Satellite"
src="https://cdn.star.nesdis.noaa.gov/GOES16/ABI/CONUS/09/625x375.jpg"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="temperature"></a><a
id="temperature"></a>Today's Highs</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_maxt_Day1.png"
title="Click for larger image"><img alt="US Highs Day 1" src="https://www.weather.gov/images/erh/gis/CONUS_maxt_Day1.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column" style="text-align: center;"> <strong>Tonight's Lows</strong><a
href="https://www.weather.gov/images/erh/gis/CONUS_mint_Day1.png" title="Click for larger image"><img
alt="Day 1 Lows" src="https://www.weather.gov/images/erh/gis/CONUS_mint_Day1.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column" style="text-align: center;"> <strong>24-Hour Heat
Index</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_AptMax.png"
title="Click for larger image"><img alt="24-Hour Heat Index" src="https://www.weather.gov/images/erh/gis/CONUS_AptMax.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong>24-Hour Wind
Chill</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_AptMin.png"
title="Click for larger image"><img alt="24-Hour Wind Chill" src="https://www.weather.gov/images/erh/gis/CONUS_AptMin.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column" style="text-align: center;"> <strong>Tomorrow's Highs</strong><a
href="https://www.weather.gov/images/erh/gis/CONUS_maxt_Day2.png" title="Click for larger image"><img
alt="Day 2 Highs" src="https://www.weather.gov/images/erh/gis/CONUS_maxt_Day2.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column" style="text-align: center;"> <strong>Tomorrow Night's
Lows</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_mint_Day2.png"
title="Click for larger image"><img alt="Day 2 Lows" src="https://www.weather.gov/images/erh/gis/CONUS_mint_Day2.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="precip"></a>24-Hour
Forecast Precipitation</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_QPF24.png"
title="Click for larger image"><img alt="24-Hour Forecast Precipitation"
src="https://www.weather.gov/images/erh/gis/CONUS_QPF24.png" style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
<div class="column" style="text-align: center;"> <strong>3-Day Forecast
Precipitation</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_QPF.png"
title="Click for larger image"><img alt="3-Day Forecast Precipitation"
src="https://www.weather.gov/images/erh/gis/CONUS_QPF.png" style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
<div class="column" style="text-align: center;"> <strong>3-Day Snowfall
Outlook</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_Snow.png"
title="Click for larger image"><img alt="3-Day Snowfall Outlook" src="https://www.weather.gov/images/erh/gis/CONUS_Snow.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> <br>
<a href="https://www.weather.gov/images/erh/gis/CAR_QPF24.png" title="Click for larger image"></a>
</div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong>3-Day Ice
Accumulation Outlook</strong><a href="https://www.weather.gov/images/erh/gis/CONUS_Ice.png"
title="Click for larger image"><img alt="3-Day Ice Accumulation Outlook"
src="https://www.weather.gov/images/erh/gis/CONUS_Ice.png" style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
<div class="column">
<div style="text-align: center;"><strong>7-Day Precipitation Trend<br>
</strong></div>
<a href="https://hprcc.unl.edu/products/maps/acis/7dPDataUS.png" title="Click for larger image"><img
alt="7-Day Precipitation Trend" src="https://hprcc.unl.edu/products/maps/acis/7dPDataUS.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>30 Day Precipitation Trend</strong><a
href="https://hprcc.unl.edu/products/maps/acis/30dPDataUS.png" title="Click for larger image"><img
alt="30-Day Precipitation Trend" src="https://hprcc.unl.edu/products/maps/acis/30dPDataUS.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
</div>
</div>
<br>
<br>
<a href="mailto:#top"><i>Top of Page</i></a><br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong>Day 1 Excessive
Rainfall Outlook</strong><a href="https://www.wpc.ncep.noaa.gov/qpf/94ewbg.gif?1622663947874"
title="Click for larger image"><img alt="Day 1 Excessive Rainfall Outlook"
src="https://www.wpc.ncep.noaa.gov/qpf/94ewbg.gif?1622663947874" style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
<div class="column">
<div style="text-align: center;"><strong>Day 1 Forecast Precipitation
Totals<br>
</strong></div>
<a href="https://www.wpc.ncep.noaa.gov/qpf/fill_94qwbg.gif" title="Click for larger image"><img
alt="Day 1 QPF" src="https://www.wpc.ncep.noaa.gov/qpf/fill_94qwbg.gif"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>Day 7 Forecast Precipitation
Totals<br>
</strong></div>
<a href="https://www.wpc.ncep.noaa.gov/qpf/p168i.gif" title="Click for larger image"><img
alt="Day 7 QPF" src="https://www.wpc.ncep.noaa.gov/qpf/p168i.gif" style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i><br>
</a><br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="severe" name="severe"></a>Day
1 Severe Thunderstorm Outlook</strong><a href="https://www.spc.noaa.gov/partners/outlooks/state/swody1.png?1749232401460"
title="Click for larger image"><img alt="Day 1 Severe Severe Outlook"
src="https://www.spc.noaa.gov/partners/outlooks/state/swody1.png?1749232401460"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>Day 2 Severe Thunderstorm
Outlook<br>
</strong></div>
<a href="https://www.spc.noaa.gov/partners/outlooks/state/swody2.png?1749232401460"
title="Click for larger image"><img alt="Day 2 Severe Outlook" src="https://www.spc.noaa.gov/partners/outlooks/state/swody2.png?1749232401460"
style="width:100%"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>Day 3 Severe Thunderstorm
Outlook</strong></div>
<a href="https://www.spc.noaa.gov/partners/outlooks/state/swody3.png?1749232401460"
title="Click for larger image"><img alt="Day 3 Severe Outlook" src="https://www.spc.noaa.gov/partners/outlooks/state/swody3.png?1749232401460"
style="width:100%"></a> </div>
</div>
<br>
<br>
<a href="#top"><i>Top of Page</i><br>
</a><br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="river" name="river"></a>SPC
Mesoscale Discussions</strong><a href="https://www.spc.noaa.gov/products/md/"
title="Click for more information"><img alt="SPC Mesoscale Discussions"
src="https://www.spc.noaa.gov/products/md/validmd.png" style="width: 100%; border-width: 1px; border-style: solid;"></a>
</div>
<div class="column">
<div style="text-align: center;"><strong>Today's SPC Storm Reports<br>
</strong></div>
<a href="https://www.spc.noaa.gov/climo/reports/today.html" title="Click for more information"><img
alt="Today's Storm Reports" src="https://www.spc.noaa.gov/climo/reports/today.gif"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>Yesterday's SPC Storm Reports<br>
</strong></div>
<a href="https://www.spc.noaa.gov/climo/reports/yesterday.html" title="Click for more information"><img
alt="Yesterday's SPC Storm Reports" src="https://www.spc.noaa.gov/climo/reports/yesterday.gif"
style="width: 100%; border-width: 1px; border-style: solid;"></a><br>
</div>
</div>
<br>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="river" name="river"></a>Monthly
Drought Outlook</strong><a href="https://www.cpc.ncep.noaa.gov/products/expert_assessment/month_drought.png"
title="Click for larger image"><img alt="Monthly Drought Outlook" src="https://www.cpc.ncep.noaa.gov/products/expert_assessment/month_drought.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>3-Day Wind Gust Outlook<br>
</strong></div>
<a href="https://www.weather.gov/images/erh/gis/CONUS_WGust.png" title="Click for larger image"><img
alt="3-Day Wind Gust Outlook" src="https://www.weather.gov/images/erh/gis/CONUS_WGust.png"
style="width:100%"></a> </div>
<div class="column">
<div style="text-align: center;"><strong>3-Day Maximum Wave Height<br>
</strong></div>
<a href="https://www.weather.gov/images/erh/gis/CONUS_WaveH.png" title="Click for larger image"><img
alt="3-Day Maximum Wave Height" src="https://www.weather.gov/images/erh/gis/CONUS_WaveH.png"
style="width: 100%; border-width: 1px; border-style: solid;"></a><br>
</div>
</div>
<br>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="trends"></a>Current
Temperature Anomaly</strong><a href="https://climatereanalyzer.org/" title="Click for more information"><img
alt="Current Temperature Anomaly" src="https://climatereanalyzer.org/wx/todays-weather/maps/gfs_nh-sat1_t2anom_d1.png"
style="width: 100%; border-width: 1px; border-style: solid;"><br>
</a>
<div style="text-align: center;"><br>
</div>
<a href="https://droughtmonitor.unl.edu/data/png/current/current_me_trd.png"
title="Click for larger image"><br>
</a> </div>
<div class="column">
<div style="text-align: center;"><strong>7-Day Temperature Trend<br>
</strong></div>
<a href="https://hprcc.unl.edu/products/maps/acis/7dTDeptUS.png" title="Click for larger image"><img
alt="7-Day Temperature Trend" src="https://hprcc.unl.edu/products/maps/acis/7dTDeptUS.png"
style="width: 450px; border-style: solid; border-width: 1px; height: 450px;"><br>
</a>
<div style="text-align: center;"><br>
</div>
</div>
<div class="column">
<div style="text-align: center;"><strong>30-Day Temperature Trend<br>
</strong></div>
<a href="https://hprcc.unl.edu/products/maps/acis/30dTDeptUS.png" title="Click for larger image"><img
alt="30-Day Temperature Trend" src="https://hprcc.unl.edu/products/maps/acis/30dTDeptUS.png"
style="width: 454px; border-width: 1px; border-style: solid; height: 454px;"></a><br>
<div style="text-align: center;"><br>
</div>
</div>
</div>
<a href="#top"><i>Top of Page</i></a><br>
<br>
<br>
<div class="row">
<div class="column" style="text-align: center;"> <strong><a id="fire"></a>Day
1 Fire Weather Outlook</strong><a href="https://www.spc.noaa.gov/products/fire_wx/day1otlk_fire.gif"
title="Click for larger image"><img alt="Fire Wx Day 1" src="https://www.spc.noaa.gov/products/fire_wx/day1otlk_fire.gif"
style="width: 100%; border-width: 1px; border-style: solid;"><br>
</a>
<div style="text-align: center;"><br>
</div>
<a href="https://droughtmonitor.unl.edu/data/png/current/current_me_trd.png"
title="Click for larger image"> </a> </div>
<div class="column">
<div style="text-align: center;"><strong>Day 2 Fire Weather Outlook<br>
</strong></div>
<a href="https://www.spc.noaa.gov/products/fire_wx/day2otlk_fire.gif" title="Click for larger image"><img
alt="Day 2 Fire Weather Outlook" src="https://www.spc.noaa.gov/products/fire_wx/day2otlk_fire.gif"
style="width: 100%; border-style: solid; border-width: 1px;"><br>
</a>
<div style="text-align: center;"><br>
</div>
</div>
<div class="column">
<div style="text-align: center;"><strong>Day 3-8 Day Fire Weather
Outlook<br>
</strong></div>
<a href="https://www.spc.noaa.gov/products/exper/fire_wx/imgs/day38otlk_fire.gif"
title="Click for larger image"><img alt="Day 3-8 Fire Weather Outlook"
src="https://www.spc.noaa.gov/products/exper/fire_wx/imgs/day38otlk_fire.gif"
style="width: 100%; border-width: 1px; border-style: solid;"></a><br>
<div style="text-align: center;"><br>
</div>
<script>function updateClocks() {
const nowUTC = new Date();
const nowET = new Date(nowUTC.toLocaleString("en-US", { timeZone: "America/New_York" }));
const pad = n => n.toString().padStart(2, '0');
const h12 = nowET.getHours() % 12 || 12;
const ampm = nowET.getHours() >= 12 ? 'PM' : 'AM';
document.getElementById("et12").textContent = `${pad(h12)}:${pad(nowET.getMinutes())} ${ampm}`;
document.getElementById("et24").textContent = `${pad(nowET.getHours())}:${pad(nowET.getMinutes())}`;
document.getElementById("utc").textContent = `${pad(nowUTC.getUTCHours())}:${pad(nowUTC.getUTCMinutes())} UTC`;
}
setInterval(updateClocks, 1000);
updateClocks();
document.addEventListener("DOMContentLoaded", function () {
const nav = document.querySelector(".nav");
const toggle = document.getElementById("navToggle");
if (toggle && nav) {
toggle.addEventListener("click", () => {
nav.classList.toggle("show");
});
}
const mod = new Date(document.lastModified);
const options = {
year: 'numeric', month: 'long', day: 'numeric',
hour: '2-digit', minute: '2-digit',
timeZone: 'America/New_York',
timeZoneName: 'short'
};
document.getElementById("last-modified").textContent = "Page last modified: " + mod.toLocaleDateString("en-US", options);
});
</script><!-- === START MENU SCRIPT === -->
<script>
document.addEventListener("DOMContentLoaded", function () {
const nav = document.querySelector(".nav");
const toggle = document.getElementById("navToggle");
if (toggle && nav) {
toggle.addEventListener("click", () => {
nav.classList.toggle("show");
});
}
});
</script><!-- === END MENU SCRIPT === --></div>
</div>
</body>
</html>