pvpokemon/index.html
2019-03-22 10:51:39 -04:00

36 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>PVP Pokemon Explorer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Press+Start+2P" />
<link rel="stylesheet" href="/dist/global.css" />
<link rel="stylesheet" href="/dist/app.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-45873755-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-45873755-2');
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-1556009591737687",
enable_page_level_ads: true
});
</script>
</head>
<body>
<div id="pokemon-mount"></div>
<script src="/dist/global-bundle.js"></script>
<script src="/dist/main-bundle.js"></script>
</body>
</html>