summaryrefslogtreecommitdiffstats
path: root/tpl/index.pug
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/index.pug')
-rw-r--r--tpl/index.pug31
1 files changed, 31 insertions, 0 deletions
diff --git a/tpl/index.pug b/tpl/index.pug
index e1a6445..162a041 100644
--- a/tpl/index.pug
+++ b/tpl/index.pug
@@ -22,6 +22,7 @@ include objects/backdrop.pug
22include objects/dialog.pug 22include objects/dialog.pug
23include objects/lightbox.pug 23include objects/lightbox.pug
24include objects/list-group.pug 24include objects/list-group.pug
25include objects/table.pug
25 26
26mixin box 27mixin box
27 +container(padX=true padY=true inPage=true) 28 +container(padX=true padY=true inPage=true)
@@ -596,4 +597,34 @@ html
596 +list-group-item(action=true)= 'Third item' 597 +list-group-item(action=true)= 'Third item'
597 +list-group-item(action=true)= 'Fourth item' 598 +list-group-item(action=true)= 'Fourth item'
598 599
600 //-----------------------------------------
601
602 +h1-heading('xl')= 'Table'
603 +rule('medium')
604
605 +box
606 +table
607 +table-head
608 +table-row
609 +table-head-cell= 'Title'
610 +table-head-cell= 'Title'
611 +table-head-cell= 'Title'
612 +table-body
613 +table-row
614 +table-cell= 'Row 1,1'
615 +table-cell= 'Row 1,2'
616 +table-cell= 'Row 1,3'
617 +table-row
618 +table-cell= 'Row 2,1'
619 +table-cell= 'Row 2,2'
620 +table-cell= 'Row 2,3'
621 +table-row
622 +table-cell= 'Row 3,1'
623 +table-cell= 'Row 3,2'
624 +table-cell= 'Row 3,3'
625 +table-row
626 +table-cell= 'Row 4,1'
627 +table-cell= 'Row 4,2'
628 +table-cell= 'Row 4,3'
629
599 630