generated from penpot/penpot-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.23 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Penpot Skeleton Layout Plugin</title>
<link rel="icon" type="image/png" href="content/icon.png" />
</head>
<body>
<main>
<div class="preview">
<div class="preview-image"></div>
<div class="preview-line">This is sample text</div>
<div class="preview-line">with keep text enabled.</div>
</div>
<div class="checkbox-container">
<input class="checkbox-input" type="checkbox" id="keep-text-checkbox" value="checkbox_second"
data-handler="keep-text" />
<label for="keep-text-checkbox">
Keep text and only change color
</label>
</div>
<button type="button" data-appearance="primary" data-handler="transform">
Generate Skeleton View
</button>
<label>
Generate a skeleton, low-fidelity view from the selected
board(s).
</label>
<label>
Plugin still a work in progress.
</label>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>