diff options
Diffstat (limited to 'template/default/html/page')
-rw-r--r-- | template/default/html/page/item.php | 20 | ||||
-rw-r--r-- | template/default/html/page/list.php | 19 | ||||
-rw-r--r-- | template/default/html/page/main.php | 34 |
3 files changed, 73 insertions, 0 deletions
diff --git a/template/default/html/page/item.php b/template/default/html/page/item.php new file mode 100644 index 0000000..00da4c2 --- /dev/null +++ b/template/default/html/page/item.php @@ -0,0 +1,20 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Page Item Template [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +<article class="item"> + <header> + <h2> + <a title="<?=$Language->text('select_page')?>: »<?=escapeHTML($PAGE['ATTR']['NAME'])?>«" href="<?=$PAGE['URL']?>"><?=escapeHTML($PAGE['ATTR']['NAME'])?></a> + </h2> + <time class="brackets info" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> + </header> + <blockquote cite="<?=$PAGE['URL']?>"> + <p><?=excerpt($PAGE['BODY']['HTML'](), 600)?></p> + </blockquote> +</article>
\ No newline at end of file diff --git a/template/default/html/page/list.php b/template/default/html/page/list.php new file mode 100644 index 0000000..c4a04b2 --- /dev/null +++ b/template/default/html/page/list.php @@ -0,0 +1,19 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# 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="<?=$Language->text('feed_name_pages', escapeHTML($BLOGMETA['NAME']))?>">Feed</a></span></h1> +<p><?=$Language->text('page_overview_heading_desc', $PAGINATION['THIS'])?></p> + +<div class="item-container page"> + <?php foreach($LIST['PAGES'] as $page): ?> + <?php echo $page; ?> + <?php endforeach; ?> +</div> + +<?=$PAGINATION['HTML']?>
\ No newline at end of file diff --git a/template/default/html/page/main.php b/template/default/html/page/main.php new file mode 100644 index 0000000..1f8e140 --- /dev/null +++ b/template/default/html/page/main.php @@ -0,0 +1,34 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Page Main Template [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +$user = "<a href=\"{$USER['URL']}\" title=\"alias »{$USER['ATTR']['USERNAME']}«\">{$USER['ATTR']['FULLNAME']}</a>"; +$time = "<time datetime=\"{$PAGE['ATTR']['TIME_INSERT']}\" title=\"".parseDatetime($PAGE['ATTR']['TIME_INSERT'], '[W]')."\">".parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))."</time>"; +?> +<h1><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?></h1> +<p><?=$Language->text('page_main_heading_desc', [$user, $time])?></p> + +<div id="content" class="page"> + <?=$PAGE['BODY']['HTML']()?> +</div> + +<section id="site-navi"> + + <?php if($PAGE['PREV']): ?> + <div><a id="prev-site" href="<?=$PAGE['PREV']['URL']?>" title="<?=$Language->text('prev_page')?> »<?=escapeHTML($PAGE['PREV']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-left"></i></a></div> + <?php else: ?> + <div><a class="disabled"><i class="fa fa-arrow-left"></i></a></div> + <?php endif; ?> + + <?php if($PAGE['NEXT']): ?> + <div><a id="next-site" href="<?=$PAGE['NEXT']['URL']?>" title="<?=$Language->text('next_page')?> »<?=escapeHTML($PAGE['NEXT']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-right"></i></a></div> + <?php else: ?> + <div><a class="disabled"><i class="fa fa-arrow-right"></i></a></div> + <?php endif; ?> + +</section>
\ No newline at end of file |