-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheditor.jade
More file actions
40 lines (37 loc) · 1.1 KB
/
editor.jade
File metadata and controls
40 lines (37 loc) · 1.1 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
doctype html
html
include ./includes/editor-head.jade
body#editor
#panels.panels
.controls
.button-group
for i in ['CSS','HTML','JS']
input.checkbox(id="show#{i}"
checked
type="checkbox")
label.button(for="show#{i}") #{i}
.panel.css
.title
button.closePanel(type="button" data-toggle=".css") ×
select#cssSelect
option(value="css") CSS
option(value="text/x-scss") SCSS
option(value="text/x-less") Less
textarea#areaCSS
.panel.html
.title
button.closePanel(type="button" data-toggle=".html") ×
select#htmlSelect
option(value="text/html") HTML
option(value="jade") Jade
//option(value="haml") HAML
textarea#areaHTML
.panel.js
.title
button.closePanel(type="button" data-toggle=".js") ×
.select JS
textarea#areaJS
#bar
style#style
script#script
iframe#view.view foo