mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
58 lines
2.5 KiB
Plaintext
58 lines
2.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Coriolis EDCD Edition</title>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="<%= htmlWebpackPlugin.files.css[0] %>">
|
|
<!-- Standard headers -->
|
|
<meta name="description" content="A ship builder, outfitting and comparison
|
|
tool for Elite Dangerous">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0,
|
|
maximum-scale=1.0, user-scalable=0">
|
|
<link rel="manifest" href="/manifest.json">
|
|
<link rel="shortcut icon" href=/favicon2.ico>
|
|
<link rel="icon" sizes="152x152 192x192" type="image/png"
|
|
href="/192x192.png">
|
|
|
|
<!-- Apple/iOS headers -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-title" content="Coriolis">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
|
|
<!-- Microsoft Windows Phone/Tablet headers -->
|
|
<meta name="msapplication-TileColor" content="#000000">
|
|
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
|
<meta name="msapplication-config" content="/browserconfig.xml">
|
|
<meta name="theme-color" content="#000000">
|
|
<script data-ad-client="ca-pub-3709458261881414" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
<script>
|
|
window.CORIOLIS_GAPI_KEY = '<%- htmlWebpackPlugin.options.gapiKey %>';
|
|
window.CORIOLIS_VERSION = '<%- htmlWebpackPlugin.options.version %>';
|
|
window.CORIOLIS_DATE = '<%- htmlWebpackPlugin.options.date.toISOString().slice(0, 10) %>';
|
|
window.BUGSNAG_VERSION = '<%- htmlWebpackPlugin.options.version + '-' + htmlWebpackPlugin.options.date.toISOString() %>';
|
|
</script>
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-55840909-18"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-55840909-18');
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Bugsnag -->
|
|
<script src="https://d2wy8f7a9ursnm.cloudfront.net/v5.0.0/bugsnag.min.js"></script>
|
|
<script>
|
|
window.bugsnagClient = bugsnag('ba9fae819372850fb660755341fa6ef5', {appVersion: window.BUGSNAG_VERSION || undefined})
|
|
window.Bugsnag = window.bugsnagClient
|
|
</script>
|
|
</head>
|
|
<body style="background-color:#000;">
|
|
<section id="coriolis"></section>
|
|
</body>
|
|
</html>
|