35 lines
1.5 KiB
HTML
35 lines
1.5 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>
|
|
|
|
<!-- CDN: Fonts & Quasar -->
|
|
<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">
|
|
|
|
<!-- Application CSS (namespaced per component) -->
|
|
<link rel="stylesheet" href="src/styles/global.css">
|
|
<link rel="stylesheet" href="src/components/app-header/app-header.css">
|
|
<link rel="stylesheet" href="src/components/online-users/online-users.css">
|
|
<link rel="stylesheet" href="src/components/workspace-drawer/workspace-drawer.css">
|
|
<link rel="stylesheet" href="src/components/filter-drawer/filter-drawer.css">
|
|
<link rel="stylesheet" href="src/components/assignment-drawer/assignment-drawer.css">
|
|
<link rel="stylesheet" href="src/components/planner-grid/planner-grid.css">
|
|
<link rel="stylesheet" href="src/components/grid-cell/grid-cell.css">
|
|
<link rel="stylesheet" href="src/components/date-header/date-header.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="q-app"></div>
|
|
|
|
<!-- CDN: Vue 3 + Quasar UMD (must load before ES modules) -->
|
|
<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>
|
|
|
|
<!-- Application entry point -->
|
|
<script type="module" src="src/main.js"></script>
|
|
</body>
|
|
</html>
|