diff options
Diffstat (limited to 'template/standard/html/page')
-rw-r--r-- | template/standard/html/page/item.php | 20 | ||||
-rw-r--r-- | template/standard/html/page/list.php | 19 | ||||
-rw-r--r-- | template/standard/html/page/main.php | 46 |
3 files changed, 85 insertions, 0 deletions
diff --git a/template/standard/html/page/item.php b/template/standard/html/page/item.php new file mode 100644 index 0000000..29ab9cf --- /dev/null +++ b/template/standard/html/page/item.php @@ -0,0 +1,20 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Standard: Page Item Template [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +<li class="item-list-li page"> + <header> + <h2> + <a href="<?=$PAGE['URL']?>"><?=escapeHTML($PAGE['ATTR']['NAME'])."\n"?></a> + <time class="brackets info" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->template('date_format'))?></time> + </h2> + </header> + <article> + <p><?=excerpt($PAGE['BODY']['HTML'], 600)?></p> + </article> +</li>
\ No newline at end of file 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 diff --git a/template/standard/html/page/main.php b/template/standard/html/page/main.php new file mode 100644 index 0000000..b5e6a6d --- /dev/null +++ b/template/standard/html/page/main.php @@ -0,0 +1,46 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Standard: 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->template('date_format'))."</time>"; +?> +<h1><i class="fa fa-file-text-o"></i><?=escapeHTML($Language->template('page_main_heading_text', $PAGE['ATTR']['NAME']))?></h1> +<p><?=$Language->template('page_main_heading_desc', [$user, $time])?></p> + +<section id="content" class="page"> + <?=$PAGE['BODY']['HTML']?> +</section> + +<section id="site-navi"> + + <?php if($PAGE['PREV']): ?> + <div><a 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 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> + +<script> + var prevPageURL = <?php echo json_encode($PAGE['PREV'] ? $PAGE['PREV']['URL'] : FALSE); ?>; + var nextPageURL = <?php echo json_encode($PAGE['NEXT'] ? $PAGE['NEXT']['URL'] : FALSE); ?>; + + document.addEventListener('keyup', function(event) { + if(!event.ctrlKey && !event.shiftKey) { + (event.keyCode === 37 && prevPageURL) && (window.location.href = prevPageURL); + (event.keyCode === 39 && nextPageURL) && (window.location.href = nextPageURL); + } + }, false) +</script>
\ No newline at end of file |