initial commit

This commit is contained in:
2026-06-25 21:47:51 +00:00
commit 87a70a6ecb
2 changed files with 420 additions and 0 deletions
+420
View File
@@ -0,0 +1,420 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UAP Files — Declassified Archive</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');
:root {
--bg-primary: #0b0c10;
--bg-secondary: #111318;
--bg-tertiary: #181b22;
--border: #1f2430;
--border-accent: #2a3a4a;
--text-primary: #c5c8d0;
--text-secondary: #6b7280;
--text-dim: #3d4350;
--accent: #3b82f6;
--accent-dim: rgba(59, 130, 246, 0.12);
--accent-glow: rgba(59, 130, 246, 0.06);
--green: #22c55e;
--amber: #d97706;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'IBM Plex Sans', system-ui, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
/* ── Classification Banner ── */
.classification-bar {
width: 100%;
background: var(--bg-secondary);
border-bottom: 1px solid var(--border);
text-align: center;
padding: 6px 0;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--green);
}
/* ── Header ── */
.header {
width: 100%;
max-width: 900px;
padding: 48px 24px 0;
display: flex;
flex-direction: column;
align-items: center;
}
.header-seal {
width: 64px;
height: 64px;
border: 1px solid var(--border-accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
background: var(--bg-secondary);
}
.header-seal svg {
width: 32px;
height: 32px;
fill: var(--text-secondary);
}
.header-title {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 1.5rem;
font-weight: 600;
color: #e5e7eb;
letter-spacing: 0.5px;
margin-bottom: 6px;
}
.header-subtitle {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.75rem;
color: var(--text-secondary);
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 8px;
}
.header-desc {
font-size: 0.85rem;
color: var(--text-secondary);
text-align: center;
max-width: 600px;
line-height: 1.6;
margin-top: 12px;
}
/* ── Divider ── */
.divider {
width: 100%;
max-width: 900px;
height: 1px;
background: var(--border);
margin: 32px auto;
}
/* ── Data Panel ── */
.panel {
width: 100%;
max-width: 900px;
padding: 0 24px;
}
.panel-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem;
font-weight: 500;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--text-dim);
margin-bottom: 16px;
}
.data-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 4px;
overflow: hidden;
}
.data-cell {
background: var(--bg-secondary);
padding: 16px 18px;
}
.data-cell .label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--text-secondary);
margin-bottom: 6px;
}
.data-cell .value {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.9rem;
font-weight: 400;
color: var(--text-primary);
}
.data-cell .value.highlight {
color: var(--accent);
}
/* ── File Card ── */
.file-card {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 4px;
padding: 28px 24px;
margin-top: 24px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.file-card-left {
display: flex;
align-items: center;
gap: 16px;
min-width: 0;
}
.file-icon {
width: 44px;
height: 44px;
background: var(--accent-dim);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.file-icon svg {
width: 20px;
height: 20px;
fill: var(--accent);
}
.file-meta {
min-width: 0;
}
.file-name {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.85rem;
font-weight: 500;
color: var(--text-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.file-size {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem;
color: var(--text-secondary);
margin-top: 2px;
}
/* ── Download Button ── */
.dl-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 22px;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
color: #fff;
background: var(--accent);
border: none;
border-radius: 3px;
cursor: pointer;
text-decoration: none;
transition: all 0.15s ease;
white-space: nowrap;
flex-shrink: 0;
}
.dl-btn:hover {
background: #2563eb;
box-shadow: 0 0 20px var(--accent-glow);
}
.dl-btn svg {
width: 14px;
height: 14px;
fill: currentColor;
}
/* ── Source Reference ── */
.source-ref {
margin-top: 24px;
padding: 14px 18px;
background: var(--accent-glow);
border-left: 2px solid var(--border-accent);
border-radius: 0 3px 3px 0;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem;
color: var(--text-secondary);
line-height: 1.6;
}
.source-ref a {
color: var(--accent);
text-decoration: none;
}
.source-ref a:hover {
text-decoration: underline;
}
/* ── Footer ── */
.footer {
width: 100%;
max-width: 900px;
padding: 40px 24px;
text-align: center;
}
.footer-line {
height: 1px;
background: var(--border);
margin-bottom: 20px;
}
.footer-text {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--text-dim);
}
/* ── Scanline overlay (subtle) ── */
body::after {
content: '';
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
pointer-events: none;
z-index: 9999;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0,0,0,0.03) 2px,
rgba(0,0,0,0.03) 4px
);
}
/* ── Responsive ── */
@media (max-width: 560px) {
.header-title { font-size: 1.2rem; }
.file-card { flex-direction: column; align-items: stretch; text-align: center; }
.file-card-left { justify-content: center; }
.dl-btn { justify-content: center; width: 100%; }
.data-grid { grid-template-columns: 1fr 1fr; }
}
</style>
</head>
<body>
<div class="classification-bar">UNCLASSIFIED // FOR PUBLIC RELEASE</div>
<div class="header">
<div class="header-seal">
<svg viewBox="0 0 24 24"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>
</div>
<div class="header-title">UAP Declassified Archive</div>
<div class="header-subtitle">PURSUE Portal &bull; National Archives</div>
<div class="header-desc">
Declassified documents, imagery, and video files released under the
Presidential Unsealing and Reporting System for UAP Encounters — May 2026.
</div>
</div>
<div class="divider"></div>
<div class="panel">
<div class="panel-label">Archive Manifest</div>
<div class="data-grid">
<div class="data-cell">
<div class="label">Classification</div>
<div class="value highlight">UNCLASSIFIED</div>
</div>
<div class="data-cell">
<div class="label">Release Date</div>
<div class="value">2026-05-08</div>
</div>
<div class="data-cell">
<div class="label">Sources</div>
<div class="value">DoW &bull; FBI &bull; NASA</div>
</div>
<div class="data-cell">
<div class="label">Total Files</div>
<div class="value">175</div>
</div>
<div class="data-cell">
<div class="label">Documents</div>
<div class="value">116 PDFs</div>
</div>
<div class="data-cell">
<div class="label">Video</div>
<div class="value">44 files</div>
</div>
<div class="data-cell">
<div class="label">Imagery</div>
<div class="value">15 images</div>
</div>
<div class="data-cell">
<div class="label">Format</div>
<div class="value">ZIP Archive</div>
</div>
</div>
<div class="file-card">
<div class="file-card-left">
<div class="file-icon">
<svg viewBox="0 0 24 24"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-1 2l5 5h-5V4zM6 20V4h6v7h6v9H6z"/></svg>
</div>
<div class="file-meta">
<div class="file-name">war_gov_ufo.zip</div>
<div class="file-size" id="fsize">Calculating size...</div>
</div>
</div>
<a class="dl-btn" href="/assets/war_gov_ufo.zip" download id="dl-link">
<svg viewBox="0 0 24 24"><path d="M12 16l-5-5h3V4h4v7h3l-5 5zm-7 2h14v2H5v-2z"/></svg>
Download
</a>
</div>
<div class="source-ref">
SOURCE: <a href="https://war.gov/UFO" target="_blank" rel="noopener">war.gov/UFO</a> — PURSUE Portal<br>
REFERENCE: <a href="https://www.archives.gov/research/topics/uaps" target="_blank" rel="noopener">archives.gov — UAP Records Collection (RG-615)</a>
</div>
</div>
<div class="footer">
<div class="footer-line"></div>
<div class="footer-text">Public Domain — United States Government Works</div>
</div>
<script>
const sizeEl = document.getElementById('fsize');
const dlLink = document.getElementById('dl-link');
fetch(dlLink.getAttribute('href'), { method: 'HEAD' })
.then(r => {
const bytes = parseInt(r.headers.get('content-length') || '0');
if (bytes > 0) {
if (bytes >= 1073741824) sizeEl.textContent = (bytes / 1073741824).toFixed(2) + ' GB';
else if (bytes >= 1048576) sizeEl.textContent = (bytes / 1048576).toFixed(1) + ' MB';
else sizeEl.textContent = (bytes / 1024).toFixed(0) + ' KB';
} else {
sizeEl.textContent = '—';
}
})
.catch(() => { sizeEl.textContent = '—'; });
</script>
</body>
</html>