-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.77 KB
/
Copy pathindex.html
File metadata and controls
46 lines (43 loc) · 1.77 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="OpenResume academic CV editor and print-ready CV builder.">
<title>OpenResume</title>
<link rel="stylesheet" href="./cv.css">
</head>
<body>
<header class="app-header" data-print-hidden>
<div class="brand-block">
<p class="eyebrow">OpenResume</p>
<h1>Build a print-ready CV</h1>
</div>
<div class="toolbar" aria-label="CV actions">
<button class="tool-button" type="button" id="save-button">Save</button>
<button class="tool-button" type="button" id="export-button">Export JSON</button>
<button class="tool-button" type="button" id="import-button">Import JSON</button>
<button class="tool-button danger" type="button" id="reset-button">Reset</button>
<button class="tool-button primary" type="button" id="print-button">Print / PDF</button>
<input id="import-file" type="file" accept="application/json, .json" hidden>
</div>
</header>
<main class="workspace">
<section class="editor-panel" aria-label="CV editor" data-print-hidden>
<div class="panel-head">
<h2>Editor</h2>
<p id="status-message" role="status">Loading template...</p>
</div>
<div id="editor-root" class="editor-root"></div>
</section>
<section class="preview-panel" aria-label="CV preview">
<div class="preview-head" data-print-hidden>
<h2>Live preview</h2>
<p>Only the CV sheet is printed.</p>
</div>
<div id="preview-root" class="preview-root"></div>
</section>
</main>
<script type="module" src="./cv.js"></script>
</body>
</html>