pianello-web-app/index.html
Federico Bologni 909d978f4f
Some checks failed
ci/woodpecker/pr/build Pipeline failed
Add PWA support
2023-05-31 16:01:47 +02:00

25 lines
No EOL
518 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="/static/images/home-icon.png">
<meta name="viewport" content="width=device-width">
<link rel="manifest" href="/manifest.json">
<title>Pianello</title>
<link rel="stylesheet" href="/src/css/index.css">
</head>
<body>
<footer>
<bottom-app-bar></bottom-app-bar>
</footer>
<script src="/src/components/bottom-app-bar.js" type="module"></script>
<script src="/src/js/index.js" type="module"></script>
</body>
</html>