Erste Produktivversion
This commit is contained in:
33
web/html/index.html
Normal file
33
web/html/index.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
||||
<meta name="color-scheme" content="light dark">
|
||||
<meta name="theme-color" content="#2f6f4e">
|
||||
<title>Einkaufsliste</title>
|
||||
|
||||
<link rel="manifest" href="/manifest.webmanifest">
|
||||
<link rel="icon" href="/icons/favicon.ico" sizes="any">
|
||||
<link rel="icon" href="/icons/icon.svg" type="image/svg+xml">
|
||||
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
|
||||
<link rel="stylesheet" href="/app.css">
|
||||
|
||||
<!-- Ohne diese Zeile öffnet iOS die App vom Startbildschirm im Safari-Rahmen -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Wird beim Start aus /api/config überschrieben. -->
|
||||
<meta name="apple-mobile-web-app-title" content="Einkaufsliste">
|
||||
</head>
|
||||
<body>
|
||||
<main id="app">
|
||||
<p class="loading">Wird geladen …</p>
|
||||
</main>
|
||||
|
||||
<noscript>
|
||||
<p class="error">Diese App benötigt JavaScript.</p>
|
||||
</noscript>
|
||||
|
||||
<script type="module" src="/js/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user