-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 841 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quill</title>
<link rel="stylesheet" href="/src/styles.css" />
<script type="module" src="/src/main.ts"></script>
</head>
<body>
<div id="app">
<header id="titlebar" data-tauri-drag-region>
<div class="traffic-lights-spacer"></div>
<div class="title" data-tauri-drag-region>
<span id="filename">untitled.md</span>
<span id="modified-indicator" class="hidden" title="Unsaved changes"></span>
</div>
<div class="titlebar-right">
<span id="word-count"></span>
</div>
</header>
<main id="editor-container">
<div id="editor"></div>
</main>
</div>
</body>
</html>