-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathexchange.html
More file actions
95 lines (88 loc) · 4.26 KB
/
Copy pathexchange.html
File metadata and controls
95 lines (88 loc) · 4.26 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
<!doctype html>
<html lang="en" class="cv-page">
<head>
<script>
/* three.ws theme boot — no-flash; runtime in /theme-switcher.js */ (function () {
try {
var m = localStorage.getItem('twx_theme');
var l =
m === 'auto'
? window.matchMedia &&
window.matchMedia('(prefers-color-scheme: light)').matches
: m === 'light';
document.documentElement.setAttribute('data-theme', l ? 'light' : 'dark');
} catch (e) {
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title data-i18n="exchange.meta_title">Exchange · three.ws</title>
<meta
name="description"
content="A rich profile for any crypto exchange — trust score, 24h volume, open interest, markets, and volume history. Real CoinGecko data, no API key."
data-i18n-attr="content:exchange.meta_description"/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="three.ws" />
<meta property="og:url" content="https://three.ws/exchanges" />
<meta property="og:title" content="Exchange · three.ws" data-i18n-attr="content:exchange.meta_og_title"/>
<meta
property="og:description"
content="Trust score, 24h trading volume, markets, and volume history for any crypto exchange. Real CoinGecko data."
data-i18n-attr="content:exchange.meta_og_description"/>
<meta property="og:image" content="https://three.ws/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@trythreews" />
<meta name="twitter:title" content="Exchange · three.ws" data-i18n-attr="content:exchange.meta_twitter_title"/>
<meta
name="twitter:description"
content="Trust score, 24h trading volume, markets, and volume history for any crypto exchange."
data-i18n-attr="content:exchange.meta_twitter_description"/>
<meta name="twitter:image" content="https://three.ws/og-image.png" />
<meta name="theme-color" content="#09090b" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="stylesheet" href="/fonts/fonts.css" />
<link rel="stylesheet" href="/nav.css" />
<link rel="stylesheet" href="/src/coin-pages.css" />
<link rel="stylesheet" href="/src/exchange-page.css" />
<link rel="stylesheet" href="/footer.css" />
<link rel="canonical" href="https://three.ws/exchanges" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1" />
<meta property="og:locale" content="en_US" />
</head>
<body>
<header><div id="nav-container"></div></header>
<script src="/nav.js"></script>
<main class="cv-container" id="ex-main" aria-busy="true">
<!-- Breadcrumbs -->
<nav class="cv-crumbs" aria-label="Breadcrumb">
<a href="/markets" data-i18n="exchange.markets">Markets</a>
<span class="sep" aria-hidden="true">/</span>
<a href="/exchanges" data-i18n="exchange.exchanges">Exchanges</a>
<span class="sep" aria-hidden="true">/</span>
<span class="here" id="ex-crumb-name">…</span>
</nav>
<!-- Hero: logo, name, trust score, rank, meta chips, description, links. -->
<section id="ex-hero" aria-label="Exchange overview"></section>
<!-- Stat cards: 24h volume, normalized volume / open interest, markets, rank. -->
<section id="ex-stats" class="cv-section" aria-label="Exchange stats"></section>
<!-- Volume history chart (spot venues only). -->
<section id="ex-chart" aria-label="Volume chart"></section>
<!-- Markets / contracts table. -->
<section id="ex-markets" class="cv-section" aria-label="Markets"></section>
<p class="cv-updated" id="ex-updated" hidden></p>
</main>
<script type="module" src="/src/exchange-page.js"></script>
<script src="/brand.js" defer></script>
<div id="footer-container"></div>
<script src="/footer.js"></script>
<!-- Runtime i18n: detects locale, swaps annotated copy, mounts <lang-switcher>. -->
<script type="module" src="/i18n.js"></script>
</body>
</html>