25 lines
707 B
HTML
25 lines
707 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, viewport-fit=cover"
|
|
/>
|
|
<meta name="theme-color" content="#b3161a" />
|
|
<meta
|
|
name="description"
|
|
content="A responsive, offline-capable Pokédex reference powered by PokéAPI."
|
|
/>
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
|
<link rel="apple-touch-icon" href="/icon.svg" />
|
|
<title>Pokédex</title>
|
|
</head>
|
|
<body>
|
|
<div id="app" class="app">
|
|
<noscript>This Pokédex needs JavaScript enabled.</noscript>
|
|
</div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|