-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (72 loc) · 3.94 KB
/
index.html
File metadata and controls
82 lines (72 loc) · 3.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>wonjae.eth</title>
<meta name="title" content="wonjae.eth">
<meta name="description" content="Cryptographic Unix-like shell and VFS for decentralized personal archives.">
<meta name="author" content="Wonjae Choi">
<meta name="keywords"
content="cryptography, web3, ethereum, zero-knowledge, webassembly, rust, decentralized, unix-shell, terminal">
<meta name="theme-color" content="#0d1117">
<meta name="robots" content="index, follow">
<!-- Security Policy -->
<!-- Note: 'unsafe-inline' and 'unsafe-eval' needed for Trunk dev server -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self';
script-src 'self' 'unsafe-inline' 'unsafe-eval' 'wasm-unsafe-eval';
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
img-src 'self' data: https:;
font-src 'self' https://fonts.gstatic.com;
connect-src 'self' https://*.githubusercontent.com https://*.infura.io https://*.etherscan.io https://*.cloudflare-eth.com ws://localhost:* ws://127.0.0.1:*;
frame-src 'self' https://*.githubusercontent.com https://mozilla.github.io;
worker-src 'self' blob:;
manifest-src 'self';
base-uri 'self';
form-action 'self';">
<!-- For production, use stricter CSP without 'unsafe-inline' and 'unsafe-eval' -->
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-Frame-Options" content="DENY">
<meta name="referrer" content="strict-origin-when-cross-origin">
<!-- Open Graph / Facebook / Discord -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://wonjae.eth.limo/">
<meta property="og:title" content="wonjae.eth - Cryptographic Terminal">
<meta property="og:description"
content="Cryptographic Unix-like shell and VFS for decentralized personal archives.">
<meta property="og:image" content="https://wonjae.eth.limo/assets/preview.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://wonjae.eth.limo/">
<meta property="twitter:title" content="wonjae.eth - Cryptographic Terminal">
<meta property="twitter:description"
content="Cryptographic Unix-like shell and VFS for decentralized personal archives.">
<meta property="twitter:image" content="https://wonjae.eth.limo/assets/preview.png">
<!-- Performance Optimization -->
<link rel="dns-prefetch" href="https://raw.githubusercontent.com">
<link rel="preconnect" href="https://raw.githubusercontent.com" crossorigin>
<!-- PWA -->
<link rel="manifest" href="/assets/manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="wonjae.eth">
<base href="./">
<link data-trunk rel="css" href="assets/base.css">
<link data-trunk rel="css" href="assets/bundle.css">
<link data-trunk rel="icon" href="assets/favicon.svg">
<link rel="apple-touch-icon" href="assets/favicon.svg">
</head>
<body>
<div id="app"></div>
<noscript>
<div
style="background:#0d1117;color:#3fb950;font-family:monospace;padding:2rem;height:100vh;display:flex;align-items:center;justify-content:center;">
<pre>ERROR: JavaScript runtime not detected.
Please enable JavaScript to access this terminal.</pre>
</div>
</noscript>
<link data-trunk rel="rust" data-wasm-opt="z" data-bin="websh" data-wasm-opt-params="--enable-bulk-memory --enable-nontrapping-float-to-int">
</body>
</html>