-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 3.47 KB
/
Copy pathindex.html
File metadata and controls
72 lines (66 loc) · 3.47 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PokeGuru — The Pokémon Card Guru</title>
<meta name="description" content="Lightning-fast Pokémon TCG card database with UK market prices in GBP (£), set history and advanced search." />
<meta name="keywords" content="pokemon, tcg, cards, database, pokemon cards, collector, pricing, uk, gbp, sets" />
<meta name="theme-color" content="#0f1115" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<link rel="canonical" href="https://dlinacre.github.io/PokeGuru/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="PokeGuru" />
<meta property="og:title" content="PokeGuru — The Pokémon Card Guru" />
<meta property="og:description" content="Search cards, browse sets, and track your collection with UK GBP prices." />
<meta property="og:url" content="https://dlinacre.github.io/PokeGuru/" />
<meta property="og:image" content="https://dlinacre.github.io/PokeGuru/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="PokeGuru — The Pokémon Card Guru" />
<meta name="twitter:description" content="UK-focused Pokémon TCG card database, prices and collection tracker." />
<meta name="twitter:image" content="https://dlinacre.github.io/PokeGuru/og.png" />
<!-- Privacy + hardening (GitHub Pages can't set real headers) -->
<meta name="referrer" content="strict-origin-when-cross-origin" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src 'self' https://api.pokemontcg.io; img-src 'self' data: https://images.pokemontcg.io; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; base-uri 'self'; form-action 'self'; frame-ancestors 'none'" />
<link rel="icon" href="/PokeGuru/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/PokeGuru/favicon.svg" />
<link rel="manifest" href="/PokeGuru/manifest.webmanifest" />
<link rel="preconnect" href="https://api.pokemontcg.io" />
<link rel="preconnect" href="https://images.pokemontcg.io" />
<!-- SPA path-routing restore (pairs with public/404.html) -->
<script>
(function (l) {
if (l.search[1] === '/') {
var decoded = l.search.slice(1).split('&').map(function (s) {
return s.replace(/~and~/g, '&');
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash);
}
}(window.location));
</script>
<!-- Structured data: WebSite + SearchAction (sitelinks search box) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "PokeGuru",
"url": "https://dlinacre.github.io/PokeGuru/",
"potentialAction": {
"@type": "SearchAction",
"target": { "@type": "EntryPoint", "urlTemplate": "https://dlinacre.github.io/PokeGuru/search?q={query}" },
"query-input": "required name=query"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>