aboutsummaryrefslogtreecommitdiffstats
path: root/theme/default/html/category/main.php
blob: 86b50e0bb55a89e68672abd413da488e1b188bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Category Main Template                     [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#                                                                              #
# [see documentation]                                                          #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
?>
<h1 id="category-heading"><i class="fa fa-tag"></i><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></h1>
<?php if($CATEGORIES && array_pop($CATEGORIES)): ?>
	<ul class="category-heading-list">
		<?php foreach($CATEGORIES as $category): ?>
			<li><a href="<?=$category['URL']?>"><?=escapeHTML($category['ATTR']['NAME'])?></a></li>
		<?php endforeach ?>
	</ul>
<?php endif ?>

<div id="category-body">
	<?=$CATEGORY['BODY']['HTML']()?>
</div>

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

<h2 id="category-posts-heading"><i class="fa fa-newspaper-o"></i><?=$Language->text('posts')?></h2>
<div id="category-posts-page"><?=$Language->text('category_posts_page', $PAGINATION['THIS'])?></div>
<?php if($LIST['POSTS']): ?>
	<div class="item-container post">
		<?php foreach($LIST['POSTS'] as $post): ?>
			<?php echo $post; ?>
		<?php endforeach; ?>
	</div>
	<?=$PAGINATION['HTML']?>
<?php else: ?>
	<div class="item-container post">
		<?=$Language->text('category_empty')?>
	</div>
<?php endif ?>