pvpokemon/index.html
2019-03-20 17:16:06 -04:00

27 lines
945 B
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" />
<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>