Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

17
views/base/grid.php Normal file
View File

@ -0,0 +1,17 @@
<?php
/**
* Grid view.
*
* @since 2.0.0
*/
?>
<?php $table->display_tablenav('top'); ?>
<div class="wu-mt-4 <?php echo implode( ' ', $table->get_table_classes() ); ?>">
<div id="the-list" class="wu-grid-content wu-grid wu-gap-4 wu-grid-cols-1 md:wu-grid-cols-2 lg:wu-grid-cols-3 xl:wu-grid-cols-4">
<?php $table->display_rows_or_placeholder(); ?>
</div>
</div>