This commit is contained in:
2025-05-01 14:37:08 -06:00
parent b6008d462e
commit 5cd4571a92
91 changed files with 1009 additions and 36 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
include_once 'functions/init.php';
include_once 'functions/catalog.php';
// UI Components
foreach (glob('components/products/*.php') as $file)
require_once $file;
include_once 'components/head.php';
echo '<h1>Catalog</h1>';
echo '<div id="catalog" class="std_width center">';
echo catalog_grid(fetch_catalog());
echo '</div>';
include_once 'components/foot.php';