From dd934e29b2ecd548573928d88562b536f8f7189e Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 12 Mar 2022 15:11:12 +0100 Subject: Added table --- tpl/index.pug | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'tpl/index.pug') 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 include objects/dialog.pug include objects/lightbox.pug include objects/list-group.pug +include objects/table.pug mixin box +container(padX=true padY=true inPage=true) @@ -596,4 +597,34 @@ html +list-group-item(action=true)= 'Third item' +list-group-item(action=true)= 'Fourth item' + //----------------------------------------- + + +h1-heading('xl')= 'Table' + +rule('medium') + + +box + +table + +table-head + +table-row + +table-head-cell= 'Title' + +table-head-cell= 'Title' + +table-head-cell= 'Title' + +table-body + +table-row + +table-cell= 'Row 1,1' + +table-cell= 'Row 1,2' + +table-cell= 'Row 1,3' + +table-row + +table-cell= 'Row 2,1' + +table-cell= 'Row 2,2' + +table-cell= 'Row 2,3' + +table-row + +table-cell= 'Row 3,1' + +table-cell= 'Row 3,2' + +table-cell= 'Row 3,3' + +table-row + +table-cell= 'Row 4,1' + +table-cell= 'Row 4,2' + +table-cell= 'Row 4,3' + -- cgit v1.3.1