-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.template.html
More file actions
33 lines (28 loc) · 1.02 KB
/
index.template.html
File metadata and controls
33 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liberated Pixel Cup Character Sheet Generator</title>
<link rel="stylesheet" type="text/css" href="resources/style.css">
<script type="module" src="index.js"></script>
</head>
<body>
<div class="header">
<button type="button" id="random-button" class="justify-self-start">Randomize</button>
<lpc-animation-preview></lpc-animation-preview>
<button type="button" id="download-button" class="justify-self-end">Download</button>
</div>
<div class="editor">
<lpc-option-sidebar></lpc-option-sidebar>
<div class="spritesheet-container">
<canvas id="spritesheet"></canvas>
</div>
</div>
<div class="attribution">
<button type="button" id="copy-attribution-button">Copy</button>
<lpc-attribution></lpc-attribution>
</div>
</body>
</html>