Files
hotline-planner/component split/not good/hlp q gemini code assist split/index.html
2026-02-23 12:27:26 +01:00

44 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotline Planner</title>
<!-- Quasar & Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet" type="text/css">
<link href="https://cdn.jsdelivr.net/npm/quasar@2.16.0/dist/quasar.prod.css" rel="stylesheet" type="text/css">
<!-- Component Styles -->
<link href="./src/components/planner-layout/planner-layout.css" rel="stylesheet" type="text/css">
<link href="./src/components/planner-header/planner-header.css" rel="stylesheet" type="text/css">
<link href="./src/components/planner-users-online/planner-users-online.css" rel="stylesheet" type="text/css">
<link href="./src/components/planner-grid/planner-grid.css" rel="stylesheet" type="text/css">
<link href="./src/components/planner-settings-drawer/planner-settings-drawer.css" rel="stylesheet" type="text/css">
<link href="./src/components/planner-filter-drawer/planner-filter-drawer.css" rel="stylesheet" type="text/css">
<link href="./src/components/planner-edit-drawer/planner-edit-drawer.css" rel="stylesheet" type="text/css">
<style>
body, html {
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
background-color: #f8fafc;
color: #334155;
}
</style>
</head>
<body>
<!-- The root element for our Vue app -->
<div id="q-app"></div>
<!-- Vue and Quasar UMD -->
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
<script src="https://cdn.jsdelivr.net/npm/quasar@2.16.0/dist/quasar.umd.prod.js"></script>
<!-- Main Application Script -->
<script type="module" src="./main.js"></script>
</body>
</html>