-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 2.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#009B8F">
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="/favicon-48.png">
<link rel="stylesheet" href="/styles.css">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>German Meal Allowance Calculator</title>
<script async defer data-domain="gma-calculator.timroes.de" src="https://plausible.io/js/plausible.js"></script>
</head>
<body>
<header class="banner">
<h1>German Meal Allowance Calculator</h1>
</header>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<main>
<svg class="loading-spinner" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="24px" height="30px" viewBox="0 0 24 30" style="enable-background:new 0 0 50 50;">
<rect x="0" y="10" width="4" height="10" fill="#333"></rect>
<rect x="8" y="10" width="4" height="10" fill="#333"></rect>
<rect x="16" y="10" width="4" height="10" fill="#333"></rect>
</svg>
</main>
<footer>
by <a href="https://www.timroes.de" rel="noopener">Tim Roes</a> //
report issues via
<a href="mailto:[email protected]?subject=%5BGMA%20Calculator%5D">Mail</a> |
<a href="https://github.com/timroes/gma-calculator/issues" rel="noopener">GitHub</a>
</footer>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>