2018-08-30 10:43:18 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2021-09-04 19:09:30 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2018-08-30 11:13:27 -04:00
|
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
2021-09-08 23:47:34 -04:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="dist/apple-touch-icon.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="dist/favicon-32x32.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="dist/favicon-16x16.png" />
|
2021-09-04 19:09:30 -04:00
|
|
|
<link rel="manifest" href="dist/site.webmanifest" />
|
|
|
|
<link rel="mask-icon" href="dist/safari-pinned-tab.svg" color="#000000" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Bitburner" />
|
|
|
|
<meta name="application-name" content="Bitburner" />
|
|
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
|
|
|
<meta name="msapplication-config" content="dist/browserconfig.xml" />
|
|
|
|
<meta name="theme-color" content="#ffffff" />
|
2018-08-30 10:43:18 -04:00
|
|
|
|
|
|
|
<!-- Google Analytics -->
|
|
|
|
<script>
|
2021-09-04 19:09:30 -04:00
|
|
|
(function (i, s, o, g, r, a, m) {
|
|
|
|
i["GoogleAnalyticsObject"] = r;
|
|
|
|
(i[r] =
|
|
|
|
i[r] ||
|
|
|
|
function () {
|
|
|
|
(i[r].q = i[r].q || []).push(arguments);
|
|
|
|
}),
|
|
|
|
(i[r].l = 1 * new Date());
|
|
|
|
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
|
|
|
a.async = 1;
|
|
|
|
a.src = g;
|
|
|
|
m.parentNode.insertBefore(a, m);
|
2021-09-08 23:47:34 -04:00
|
|
|
})(window, document, "script", "https://www.google-analytics.com/analytics.js", "ga");
|
2021-09-04 19:09:30 -04:00
|
|
|
</script>
|
|
|
|
<% if (htmlWebpackPlugin.options.googleAnalytics.trackingId) { %>
|
2018-08-30 11:08:08 -04:00
|
|
|
<script>
|
2021-09-08 23:47:34 -04:00
|
|
|
ga("create", "<%= htmlWebpackPlugin.options.googleAnalytics.trackingId %>", "auto");
|
2021-09-04 19:09:30 -04:00
|
|
|
ga("send", "pageview");
|
|
|
|
</script>
|
|
|
|
<% } %>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="entire-game-container" style="visibility: hidden">
|
2021-09-14 14:10:59 -04:00
|
|
|
<div id="mainmenu-container" style="display: flex; flex-direction: row">
|
2018-08-30 10:43:18 -04:00
|
|
|
<!-- Main menu -->
|
2021-09-14 14:10:59 -04:00
|
|
|
<div id="sidebar" style=""></div>
|
2021-09-16 15:04:20 -04:00
|
|
|
<div id="generic-react-container"></div>
|
2021-09-04 19:09:30 -04:00
|
|
|
</div>
|
2018-08-30 10:43:18 -04:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
<!-- Status text -->
|
|
|
|
<div id="status-text-container">
|
|
|
|
<p id="status-text"></p>
|
|
|
|
</div>
|
2018-08-30 10:43:18 -04:00
|
|
|
</div>
|
|
|
|
|
2021-09-15 10:54:05 -04:00
|
|
|
<input type="file" id="import-game-file-selector" name="file" />
|
|
|
|
|
2018-08-30 10:43:18 -04:00
|
|
|
<!-- Loader (Loading screen) -->
|
|
|
|
<div id="loader" class="loaderoverlay">
|
2021-09-04 19:09:30 -04:00
|
|
|
<div class="loaderspinner"></div>
|
|
|
|
<div class="loaderlabel">Loading Bitburner...</div>
|
2021-09-08 23:47:34 -04:00
|
|
|
<div id="killAllMessageWrapper" class="killAllMessage killAllMessageWrapperHidden">
|
2021-09-04 19:09:30 -04:00
|
|
|
<script>
|
|
|
|
setTimeout(function () {
|
|
|
|
var w = document.getElementById("killAllMessageWrapper");
|
|
|
|
if (w == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
w.classList.remove("killAllMessageWrapperHidden");
|
|
|
|
w.classList.add("killAllMessageWrapperShow");
|
|
|
|
}, 2000);
|
|
|
|
</script>
|
|
|
|
<p>
|
|
|
|
If the game fails to load, consider
|
|
|
|
<a href="?noScripts">killing all scripts</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
2018-08-30 10:43:18 -04:00
|
|
|
</div>
|
2021-03-22 14:48:48 -04:00
|
|
|
|
2021-09-08 23:47:34 -04:00
|
|
|
<div id="unclickable" style="display: none">Click on this to upgrade your Source-File -1!</div>
|
2021-09-04 19:09:30 -04:00
|
|
|
</body>
|
2018-12-15 15:31:21 -08:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
<!-- Misc Scripts -->
|
|
|
|
<script src="src/ThirdParty/raphael.min.js"></script>
|
2018-08-30 10:43:18 -04:00
|
|
|
</html>
|