diff options
| author | Volpeon <git@volpeon.ink> | 2022-03-12 15:11:12 +0100 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2022-03-12 15:11:12 +0100 |
| commit | dd934e29b2ecd548573928d88562b536f8f7189e (patch) | |
| tree | 2f0f1477d064a3e3ab489527570cd2490926f7f6 /tpl/objects | |
| parent | Added list group (diff) | |
| download | iro-design-dd934e29b2ecd548573928d88562b536f8f7189e.tar.gz iro-design-dd934e29b2ecd548573928d88562b536f8f7189e.tar.bz2 iro-design-dd934e29b2ecd548573928d88562b536f8f7189e.zip | |
Added table
Diffstat (limited to 'tpl/objects')
| -rw-r--r-- | tpl/objects/table.pug | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tpl/objects/table.pug b/tpl/objects/table.pug new file mode 100644 index 0000000..9fb2a06 --- /dev/null +++ b/tpl/objects/table.pug | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | mixin table | ||
| 2 | table.o-table | ||
| 3 | block | ||
| 4 | |||
| 5 | mixin table-head | ||
| 6 | thead.o-table__head | ||
| 7 | block | ||
| 8 | |||
| 9 | mixin table-head-cell | ||
| 10 | th.o-table__head-cell | ||
| 11 | block | ||
| 12 | |||
| 13 | mixin table-body | ||
| 14 | tbody.o-table__body | ||
| 15 | block | ||
| 16 | |||
| 17 | mixin table-row | ||
| 18 | tr.o-table__row | ||
| 19 | block | ||
| 20 | |||
| 21 | mixin table-cell | ||
| 22 | td.o-table__cell | ||
| 23 | block | ||
