1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-11-08 14:50:09 +00:00
share/frontend/index.html
Knut Ahlers 549f0d1f36
Port frontend to Vue 3 / Bootstrap 5.3
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2024-03-18 20:22:31 +01:00

23 lines
537 B
HTML

<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="app.css">
<style>
[v-cloak] { display: none; }
audio { width: 80%; }
</style>
<title>Share</title>
</head>
<body>
<div id="app" v-cloak></div>
<script src="app.js"></script>
</body>
</html>