-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.pug
50 lines (50 loc) · 1.19 KB
/
index.pug
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
47
48
49
50
doctype html
html
head
title PokeTree
link(rel='stylesheet', href='index.styl')
script(src='index.civet', type='module')
link(rel='icon', href='favicon.png')
meta(name='viewport', content='width=device-width, initial-scale=1')
body
div#app
form
label
input(type="radio", name="mode", value="BST", checked)
| BST
|
label
input(type="radio", name="mode", value="AVL")
| AVL
|
label
input(type="radio", name="mode", value="maxheap")
| Max Heap
p
input#command(autofocus)
p
label
input(type="range", min="1", max="11", value="6")#speed
| speed
br
label.size
input(type="checkbox")#size
| subtree sizes
br
label.height
input(type="checkbox")#height
| heights
br
label.index
input(type="checkbox")#index
| heap index
br
label
input(type="radio", name="style", value="2D", checked)
| 2D
|
label
input(type="radio", name="style", value="3D")
| 3D
div#about
a(href="https://github.com/edemaine/poketree") Source Code