mtgcsv/offline.html

36 lines
1.5 KiB
HTML
Raw Normal View History

2024-08-21 06:02:53 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline - MTG Card CSV Generator</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy&display=swap" rel="stylesheet">
<link rel="icon" href="icon.png" type="image/png">
<link href="//cdn.jsdelivr.net/npm/mana-font@latest/css/mana.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
2024-08-21 06:02:53 +02:00
</head>
<body>
<div class="container">
<h1>You're Offline</h1>
<p>It looks like you are not connected to the internet. Please check your connection and try again.</p>
<p>While offline, you can still browse previously loaded content, but some features might not work as expected.</p>
<p>
<a href="index.html">Go back to the main page</a>
</p>
</div>
<footer>
<p>
<a href="https://github.com/cfultz/mtgcsv" target="_blank">View on GitHub</a> |
This app is not affiliated with Wizards of the Coast or Hasbro. All rights and trademarks are owned by their respective owners.
</p>
</footer>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script>
mdc.autoInit(); // Initialize all MDC components
</script>
2024-08-21 06:02:53 +02:00
</body>
</html>