This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/index.html

20 lines
580 B
HTML
Raw Permalink Normal View History

2023-07-14 14:52:28 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2023-07-28 23:50:23 +00:00
<link rel="icon" type="image/svg+xml" href="/icons/LittleLines.Devel.svg" />
2023-07-14 14:52:28 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-07-15 09:34:46 +00:00
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css" rel="stylesheet">
2023-08-09 06:09:01 +00:00
<title>Little Lines</title>
<style>
2023-07-15 09:34:46 +00:00
html, body {margin: 0; height: 100%; overflow: hidden}
</style>
2023-07-14 14:52:28 +00:00
</head>
<body>
<div id="app"></div>
2023-07-15 08:03:08 +00:00
<script type="module" src="/src/main.js"></script>
2023-07-14 14:52:28 +00:00
</body>
</html>