diff options
Diffstat (limited to 'template/standard/html/user/main.php')
-rw-r--r-- | template/standard/html/user/main.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php new file mode 100644 index 0000000..adc0534 --- /dev/null +++ b/template/standard/html/user/main.php @@ -0,0 +1,43 @@ +<?php +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Standard: User Main Template [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +<h1><i class="fa fa-user"></i><?=$Language->template('user_heading_text', [escapeHTML($USER['ATTR']['FULLNAME']), $USER['ATTR']['USERNAME']])?></h1> +<p><em><?=$Language->template('user_heading_desc', [escapeHTML($USER['ATTR']['FULLNAME']), $COUNT['POST'], $COUNT['PAGE']])?></em></p> + +<section id="content" class="user"> + <?=$USER['BODY']['HTML']?> +</section> + +<section id="site-navi"> + + <?php if($USER['PREV']): ?> + <div><a href="<?=$USER['PREV']['URL']?>" title="<?=$Language->text('prev_user')?> »<?=escapeHTML($USER['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($USER['NEXT']): ?> + <div><a href="<?=$USER['NEXT']['URL']?>" title="<?=$Language->text('next_user')?> »<?=escapeHTML($USER['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($USER['PREV'] ? $USER['PREV']['URL'] : FALSE); ?>; + var nextPageURL = <?php echo json_encode($USER['NEXT'] ? $USER['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 |