-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfrastructure.html
More file actions
87 lines (84 loc) · 4.17 KB
/
infrastructure.html
File metadata and controls
87 lines (84 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infrastructure — PERSONFU // Arizona Public Intel Wiki</title>
<link rel="stylesheet" href="assets/css/fllc-govint.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" crossorigin="anonymous"/>
</head>
<body>
<header class="site-header">
<div class="site-brand">
<h1><span class="accent">PERSONFU</span><span class="sep">//</span>ARIZONA PUBLIC INTEL WIKI</h1>
</div>
<div class="header-meta">
<span class="site-tagline">FLLC Intelligence Research & Archive</span>
<span class="header-clock" id="header-clock"></span>
</div>
</header>
<nav class="nav-bar">
<a href="index.html" class="nav-link">Dashboard</a>
<a href="arizona.html" class="nav-link">Arizona Watch</a>
<a href="cyber.html" class="nav-link">Cyber</a>
<a href="government.html" class="nav-link">Government</a>
<a href="defense.html" class="nav-link">Defense</a>
<a href="borders.html" class="nav-link">Border & Safety</a>
<a href="infrastructure.html" class="nav-link active">Infrastructure</a>
<a href="archive.html" class="nav-link">Archive</a>
<a href="anomalies.html" class="nav-link">Anomalies</a>
<a href="timelines.html" class="nav-link">Timelines</a>
<a href="maps.html" class="nav-link">Maps</a>
<a href="reports.html" class="nav-link">Reports</a>
<a href="documents.html" class="nav-link">Documents</a>
<a href="methodology.html" class="nav-link">Methodology</a>
</nav>
<div class="page-wrap">
<div class="page-title">INFRASTRUCTURE ALERTS</div>
<div class="page-sub">DOT / State DOT notices · Emergency management · Utility advisories</div>
<div class="grid-2">
<div class="card span-2">
<div class="card-head"><span class="dot amber"></span>Latest Transportation & Infrastructure Alerts</div>
<div class="card-body" id="infra-feed"><div class="loading">Loading infrastructure alerts</div></div>
</div>
<div class="card">
<div class="card-head"><span class="dot"></span>Weather Alerts Affecting Infrastructure</div>
<div class="card-body" id="weather-feed"><div class="loading">Loading weather alerts</div></div>
</div>
<div class="card">
<div class="card-head"><span class="dot"></span>Official Resources</div>
<div class="card-body">
<ul class="link-list">
<li><a href="https://www.transportation.gov/" target="_blank" rel="noopener">U.S. Department of Transportation</a></li>
<li><a href="https://www.fhwa.dot.gov/" target="_blank" rel="noopener">Federal Highway Administration</a></li>
<li><a href="https://www.az511.gov/" target="_blank" rel="noopener">Arizona 511 Traffic</a></li>
<li><a href="https://www.fema.gov/" target="_blank" rel="noopener">FEMA</a></li>
<li><a href="https://www.phmsa.dot.gov/" target="_blank" rel="noopener">Pipeline & Hazardous Materials Safety</a></li>
</ul>
</div>
</div>
</div>
</div>
<footer class="site-footer">
<div class="methodology">
<strong>METHODOLOGY:</strong> This wiki aggregates public-interest information from official government sources for education and research.
Content is tagged with reliability labels. <a href="methodology.html">Full Methodology →</a>
</div>
<div class="credits">Built by <strong>Personfu</strong> under the <strong>FLLC</strong> design system.</div>
</footer>
<div class="status-bar">
<span class="status-dot"></span>
<span>FLLC // PERSONFU</span>
<span>|</span>
<span id="status-update">Last update: —</span>
<span style="margin-left:auto">Educational & Research Use Only</span>
</div>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" crossorigin="anonymous"></script>
<script src="assets/js/app.js"></script>
<script src="assets/js/feed-loader.js"></script>
<script>
FeedLoader.loadJSON('infrastructure_alerts.json', function(d){ FeedLoader.renderAdvisoryTable('infra-feed',d.items,{limit:20,showTags:true}); });
FeedLoader.loadJSON('weather_alerts.json', function(d){ FeedLoader.renderAdvisoryTable('weather-feed',d.items,{limit:15}); });
</script>
</body>
</html>