-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocuments.html
More file actions
127 lines (125 loc) · 5.28 KB
/
documents.html
File metadata and controls
127 lines (125 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document Vault — PERSONFU // Arizona Public Intel Wiki</title>
<link rel="stylesheet" href="assets/css/fllc-govint.css">
</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">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 active">Documents</a>
<a href="methodology.html" class="nav-link">Methodology</a>
</nav>
<div class="page-wrap">
<div class="section-hero">
<h2>Document Vault</h2>
<p>Declassified government documents, official reports, FOIA releases, and congressional research. Each entry tagged with issuing body, topics, and reliability assessment.</p>
<span class="rel-badge rel-declassified">DECLASSIFIED</span>
<span class="stamp stamp-archive" style="margin-left:12px">VAULT</span>
</div>
<div class="filter-bar mb-2">
<label>Topic</label>
<select id="doc-topic-filter">
<option value="">All Topics</option>
<option value="classified">Classified / Declassified</option>
<option value="defense">Defense</option>
<option value="cyber">Cyber</option>
<option value="anomaly">Anomaly / UAP</option>
<option value="history">History</option>
<option value="policy">Policy</option>
</select>
<label>Source</label>
<select id="doc-source-filter">
<option value="">All Sources</option>
<option value="CIA">CIA</option>
<option value="DoD">DoD</option>
<option value="CRS">Congressional Research Service</option>
</select>
<button class="btn" onclick="filterDocs()">Filter</button>
<button class="btn btn-reset" onclick="resetDocFilter()">Reset</button>
</div>
<div id="doc-grid" class="portal-grid"><div class="loading">Loading document vault</div></div>
</div>
<footer class="site-footer">
<div class="methodology">
<strong>METHODOLOGY:</strong> This wiki aggregates public-interest information from official government sources, FOIA releases,
and lawful public records 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="assets/js/app.js"></script>
<script src="assets/js/feed-loader.js"></script>
<script>
var allDocs=[];
FeedLoader.loadFile('data/wiki/documents.json', function(d){
if(!d||!d.documents) return;
allDocs=d.documents;
renderDocs(allDocs);
});
function renderDocs(docs){
var el=document.getElementById('doc-grid');
var h='';
docs.forEach(function(doc){
h+='<div class="doc-card">';
h+='<div class="doc-title">'+doc.title+'</div>';
h+='<div class="doc-meta">'+doc.issuing_body+(doc.date?' · '+doc.date:'')+'</div>';
h+='<div class="doc-summary">'+doc.summary+'</div>';
if(doc.az_relevance) h+='<p style="font-size:11px;color:var(--accent2);margin-top:6px"><strong>AZ Relevance:</strong> '+doc.az_relevance+'</p>';
if(doc.highlights&&doc.highlights.length){
h+='<p style="font-size:11px;color:var(--muted);margin-top:4px">Highlights: '+doc.highlights.join(' · ')+'</p>';
}
h+='<div class="doc-tags" style="margin-top:8px">';
doc.topics.forEach(function(t){h+='<span class="tag tag-'+t+'">'+t+'</span> ';});
h+='<span class="rel-badge rel-'+doc.reliability+'">'+doc.reliability+'</span>';
h+='</div></div>';
});
el.innerHTML=h||'<div class="text-muted">No documents match filter</div>';
}
function filterDocs(){
var topic=document.getElementById('doc-topic-filter').value;
var source=document.getElementById('doc-source-filter').value;
var filtered=allDocs.filter(function(d){
if(topic && d.topics.indexOf(topic)===-1) return false;
if(source && d.issuing_body.indexOf(source)===-1) return false;
return true;
});
renderDocs(filtered);
}
function resetDocFilter(){
document.getElementById('doc-topic-filter').value='';
document.getElementById('doc-source-filter').value='';
renderDocs(allDocs);
}
</script>
</body>
</html>