51 lines
2.2 KiB
HTML
51 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>PVPokémon Go Explorer</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximum-scale=1, user-scalable=no" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="PVPokémon Go" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
|
<!-- iPad and iPad mini @2x -->
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/src/img/touch-icon-ipad-retina.png">
|
|
<!-- iPad Pro -->
|
|
<link rel="apple-touch-icon" sizes="167x167" href="/src/img/touch-icon-ipad-pro.png">
|
|
<!-- iPhone X, iPhone 8 Plus, iPhone 7 Plus, iPhone 6s Plus, iPhone 6 Plus -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/src/img/touch-icon-iphone.png">
|
|
<!-- Android Devices High Resolution -->
|
|
<link rel="icon" sizes="192x192" href="/src/img/icon-hd.png">
|
|
<!-- Android Devices Normal Resolution -->
|
|
<link rel="icon" sizes="128x128" href="/src/img/icon.png">
|
|
|
|
<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>
|