-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (79 loc) · 4.13 KB
/
index.html
File metadata and controls
83 lines (79 loc) · 4.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EQBSL Explorer - Interactive Trust Systems & Epistemic Reasoning</title>
<!-- Primary Meta Tags -->
<meta name="title" content="EQBSL Explorer - Interactive Trust Systems & Epistemic Reasoning">
<meta name="description" content="Explore mathematically-grounded trust systems with Evidence-Based Subjective Logic (EBSL), Zero-Knowledge proofs, and quantum-resistant cryptography. Interactive playground for verifiable epistemic reasoning.">
<meta name="keywords" content="EQBSL, trust systems, subjective logic, zero-knowledge proofs, quantum-resistant, epistemic reasoning, blockchain, cryptography, reputation systems">
<meta name="author" content="O. C. Hirst (Steake) & Shadowgraph Labs">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://eqbsl-demo.netlify.app">
<meta property="og:title" content="EQBSL Explorer - Interactive Trust Systems & Epistemic Reasoning">
<meta property="og:description" content="Explore mathematically-grounded trust systems with Evidence-Based Subjective Logic (EBSL), Zero-Knowledge proofs, and quantum-resistant cryptography. Interactive playground for verifiable epistemic reasoning.">
<meta property="og:site_name" content="EQBSL Explorer">
<meta property="og:locale" content="en_US">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="https://eqbsl-demo.netlify.app">
<meta name="twitter:title" content="EQBSL Explorer - Interactive Trust Systems & Epistemic Reasoning">
<meta name="twitter:description" content="Explore mathematically-grounded trust systems with Evidence-Based Subjective Logic (EBSL), Zero-Knowledge proofs, and quantum-resistant cryptography. Interactive playground for verifiable epistemic reasoning.">
<!-- Additional SEO -->
<link rel="canonical" href="https://eqbsl-demo.netlify.app">
<meta name="theme-color" content="#0f172a">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.27/dist/katex.min.css" integrity="sha384-Pu5+C18nP5dwykLJOhd2U4Xen7rjScHN/qusop27hdd2drI+lL5KvX7YntvT8yew" crossorigin="anonymous">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #0f172a; /* slate-900 */
color: #e2e8f0; /* slate-200 */
}
.mono {
font-family: 'JetBrains Mono', monospace;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #475569;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #64748b;
}
</style>
<script type="importmap">
{
"imports": {
"rxjs": "https://esm.sh/rxjs@^7.8.2?conditions=es2015",
"rxjs/operators": "https://esm.sh/rxjs@^7.8.2/operators?conditions=es2015",
"rxjs/ajax": "https://esm.sh/rxjs@^7.8.2/ajax?conditions=es2015",
"rxjs/webSocket": "https://esm.sh/rxjs@^7.8.2/webSocket?conditions=es2015",
"rxjs/testing": "https://esm.sh/rxjs@^7.8.2/testing?conditions=es2015",
"rxjs/fetch": "https://esm.sh/rxjs@^7.8.2/fetch?conditions=es2015",
"@angular/compiler": "https://esm.sh/@angular/compiler@^21.0.6?external=rxjs",
"@angular/platform-browser": "https://esm.sh/@angular/platform-browser@^21.0.6?external=rxjs",
"@angular/core": "https://esm.sh/@angular/core@^21.0.6?external=rxjs",
"@angular/common": "https://esm.sh/@angular/common@^21.0.6?external=rxjs",
"@google/genai": "https://esm.sh/@google/genai@^1.34.0?external=rxjs"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<app-root></app-root>
</body>
</html>