-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jade
More file actions
26 lines (24 loc) · 804 Bytes
/
index.jade
File metadata and controls
26 lines (24 loc) · 804 Bytes
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
doctype
html
head
meta( charset = "UTF-8" )
title EX 1 JADE
link( rel = "shortcut icon" href = "img/favicon.png" type = "image/x-icon" )
link( rel = "stylesheet" href = "css/normalize.css" )
link( rel = "stylesheet" href = "css/style.css" )
body
.task-table-wrapper
.btn.del.delCol
i.fa.fa-minus
.btn.del.delRow
i.fa.fa-minus
table.task-table
-for (var i = 0; i < 4; i++ )
tr
-for(var x = 0; x < 4; x++ )
td.blueCell
.btn.add.addCol
i.fa.fa-plus
.btn.add.addRow
i.fa.fa-plus
script(type = "text/javascript" src = "js/ex1.js" )