Base of project created

This commit is contained in:
Sebastian Seedorf
2016-01-26 18:24:31 +01:00
parent 89a8e5403e
commit 01f4a0cd49
933 changed files with 171161 additions and 0 deletions

25
node_modules/jade-bootstrap/components/tables.jade generated vendored Normal file
View File

@@ -0,0 +1,25 @@
//- table mixins
mixin table(header,data,type)
- var type = type || ""
table.table(class="#{type}")
thead
tr
each head, i in header
th #{head}
tbody
each row,j in data
tr
each col,k in row
td #{col}
mixin table-striped(header,data)
+table(header,data,"table-striped")
mixin table-bordered(header,data)
+table(header,data,"table-bordered")
mixin table-hover(header,data)
+table(header,data,"table-hover")
mixin table-condensed(header,data)
+table(header,data,"table-condensed")