diff options
Diffstat (limited to 'theme/admin/html/category/index.php')
-rw-r--r-- | theme/admin/html/category/index.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/theme/admin/html/category/index.php b/theme/admin/html/category/index.php new file mode 100644 index 0000000..e2c35a4 --- /dev/null +++ b/theme/admin/html/category/index.php @@ -0,0 +1,15 @@ +<main id="main-content" class="wide"> +<h1><i class="fa fa-tags"></i><?=$Language->text('category_overview')?></h1> +<p class="actions-before"><?=$Language->text('overview_category_desc')?></p> +<ul class="actions"> + <li><a href="<?=Application::getAdminURL('category/insert.php')?>" title="<?=$Language->text('insert_category')?>"><i class="fa fa-plus"></i><?=$Language->text('insert')?></a></li> +</ul> + +<div class="item-container category grid"> + <?php foreach($LIST['CATEGORIES'] as $category): ?> + <?php echo $category; ?> + <?php endforeach; ?> +</div> + +<?=$PAGINATION['HTML']?> +</main> |