aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/category/index.php
blob: e2c35a406a08a6bd2e6b485e36682a4c5fa5a0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>