2019-07-19 17:07:26 +03:00
|
|
|
<!DOCTYPE html>
|
2021-09-20 00:48:56 +03:00
|
|
|
<html lang="en">
|
2021-04-03 11:08:28 +03:00
|
|
|
<head>
|
2021-09-20 00:22:12 +03:00
|
|
|
<!-- Encoding and Viewport -->
|
2021-04-03 11:08:28 +03:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2021-09-20 00:22:12 +03:00
|
|
|
<!-- Favicon + App Icon -->
|
2021-08-19 22:48:30 +03:00
|
|
|
<link rel="icon" type="image/png" sizes="64x64" href="<%= BASE_URL %>/web-icons/favicon-64x64.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="web-icons/favicon-32x32.png">
|
2022-05-01 00:50:01 +03:00
|
|
|
<link rel="icon" type="image/png" href="/favicon.ico" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/loading-screen.css" />
|
2021-09-20 00:22:12 +03:00
|
|
|
<!-- Default Page Title -->
|
2021-04-17 21:42:48 +03:00
|
|
|
<title>Dashy</title>
|
2021-04-03 11:08:28 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2021-09-20 00:22:12 +03:00
|
|
|
<!-- built files will be auto injected -->
|
|
|
|
<div id="app">
|
|
|
|
<!-- Loading screen, will be replaced when app loaded -->
|
2022-02-18 06:17:10 +03:00
|
|
|
<div class="loading-placeholder" id="loader">
|
|
|
|
<h1>Dashy</h1>
|
2022-04-02 01:55:54 +03:00
|
|
|
<p class="loading">Loading... </p>
|
2022-02-18 06:17:10 +03:00
|
|
|
<!-- Error message, only visible if app not mounted within 5 secs -->
|
|
|
|
<div class="catastrophic-error" id="err-wrap" style="display:none;">
|
|
|
|
<p class="err-l1">It looks like something's gone wrong...</p>
|
|
|
|
<p class="err-l2">
|
2022-04-02 01:55:54 +03:00
|
|
|
This is likely caused by the app source not being found at the current domain
|
|
|
|
</p>
|
|
|
|
<p class="err-l2">
|
|
|
|
If you need additional support, check the browser console then
|
|
|
|
<a href="https://github.com/Lissy93/dashy/blob/master/.github/SUPPORT.md">
|
|
|
|
raise a ticket
|
|
|
|
</a>
|
2022-02-18 06:17:10 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-20 00:22:12 +03:00
|
|
|
</div>
|
2021-04-03 11:08:28 +03:00
|
|
|
<!-- Devices without JS enabled -->
|
|
|
|
<noscript>
|
2021-09-20 00:22:12 +03:00
|
|
|
<strong>Sorry, JavaScript needs to be enabled to run Dashy 😥</strong>
|
2021-04-03 11:08:28 +03:00
|
|
|
</noscript>
|
2022-02-18 06:17:10 +03:00
|
|
|
|
|
|
|
<!-- Show error message if app not mounted within reasonable time frame -->
|
|
|
|
<script>
|
|
|
|
setTimeout(() => {
|
|
|
|
const loaderElem = document.getElementById('loader');
|
|
|
|
if (loaderElem) loaderElem.classList.add('still-not-loaded');
|
|
|
|
}, 7500);
|
|
|
|
</script>
|
2021-04-03 11:08:28 +03:00
|
|
|
</body>
|
2022-02-18 06:17:10 +03:00
|
|
|
</html>
|