diff options
Diffstat (limited to 'template/standard/html/page/list.php')
-rw-r--r-- | template/standard/html/page/list.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/template/standard/html/page/list.php b/template/standard/html/page/list.php new file mode 100644 index 0000000..b6a112d --- /dev/null +++ b/template/standard/html/page/list.php @@ -0,0 +1,19 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Standard: Page List Template [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +<h1><i class="fa fa-file-text-o"></i><?=$Language->text('page_overview')?><span class="head-link brackets"><i class="fa fa-rss"></i><a href="<?=Application::getURL('feed/page/')?>" title="Nur Seiten">Feed</a></span></h1> +<p><?=$Language->template('page_base_heading_desc', $PAGINATION['THIS'])?></p> + +<ul class="item-list page"> + <?php foreach($LIST['PAGES'] as $page): ?> + <?php echo $page; ?> + <?php endforeach; ?> +</ul> + +<?=$PAGINATION['HTML']?>
\ No newline at end of file |