aboutsummaryrefslogtreecommitdiffstats
path: root/theme/default/html/category/list.php
blob: 9fffb2b28cc8bd60a761dae391229069b6cc12ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Category List Template                     [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#                                                                              #
# [see documentation]                                                          #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
?>
<h1><i class="fa fa-tags"></i><?=$Language->text('category_overview')?></h1>
<p><?=$Language->text('category_list_title', $PAGINATION['THIS'])?></p>

<?php if($LIST['CATEGORIES']): ?>
	<div class="item-container category">
		<?php foreach($LIST['CATEGORIES'] as $category): ?>
			<?php echo $category; ?>
		<?php endforeach; ?>
	</div>
<?php else: ?>
	<p><?=$Language->text('category_list_empty')?></p>
<?php endif ?>

<?=$PAGINATION['HTML']?>