mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 20:02:23 +04:00
d8956a06d6
Co-authored-by: Bartek <xbartoszdobija@gmail.com>
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
---
|
|
// Port of preview/pages/tables.html (layout: default)
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import Table from '@shared/components/ui/Table.astro';
|
|
import Progressbg from '@shared/components/cards/tables/Progressbg.astro';
|
|
import Invoices from '@shared/components/cards/Invoices.astro';
|
|
import AdvancedTable from '@shared/components/ui/AdvancedTable.astro';
|
|
---
|
|
|
|
<DefaultLayout pageHeader="Tables" pageMenu="base.tables" pageLibs={['lists']}>
|
|
<div class="row row-cards">
|
|
<div class="col-lg-8">
|
|
<div class="card">
|
|
<Table card={true} limit={8} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-lg-4">
|
|
<Progressbg />
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<Table card={true} stripped={true} offset={5} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<Table card={true} avatars={true} offset={10} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<Table card={true} mobile={true} avatars={true} offset={15} buttons={true} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<Invoices />
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
<AdvancedTable />
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|