diff options
Diffstat (limited to 'theme/default/html/category')
-rw-r--r-- | theme/default/html/category/item.php | 27 | ||||
-rw-r--r-- | theme/default/html/category/list.php | 23 | ||||
-rw-r--r-- | theme/default/html/category/main.php | 44 |
3 files changed, 94 insertions, 0 deletions
diff --git a/theme/default/html/category/item.php b/theme/default/html/category/item.php new file mode 100644 index 0000000..9435581 --- /dev/null +++ b/theme/default/html/category/item.php @@ -0,0 +1,27 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Category Item Template [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +<article class="item"> + <header> + <h2 class="fa fa-tag"> + <a title="<?=$Language->text('select_category')?>: »<?=escapeHTML($CATEGORY['ATTR']['NAME'])?>«" href="<?=$CATEGORY['URL']?>"> + <?=escapeHTML($CATEGORY['ATTR']['NAME'])?> + </a> + </h2> + <span class="brackets info"> + <?=$Language->text('posts')?>: <?=$COUNT['POST']?> – + <?=$Language->text('categories')?>: <?=$COUNT['CHILDREN']?> + </span> + </header> + <?php if($IS_ROOT): ?> + <blockquote cite="<?=$CATEGORY['URL']?>"> + <?=$CATEGORY['BODY']['HTML']()?> + </blockquote> + <?php endif ?> +</article> diff --git a/theme/default/html/category/list.php b/theme/default/html/category/list.php new file mode 100644 index 0000000..9fffb2b --- /dev/null +++ b/theme/default/html/category/list.php @@ -0,0 +1,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']?> diff --git a/theme/default/html/category/main.php b/theme/default/html/category/main.php new file mode 100644 index 0000000..86b50e0 --- /dev/null +++ b/theme/default/html/category/main.php @@ -0,0 +1,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 ?> |