aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/html/user
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-17 22:00:39 +0200
committerThomas Lange <code@nerdmind.de>2021-06-17 22:00:39 +0200
commit5555624546ea48d6327700f32b80848e0662dc90 (patch)
tree47d61fb756a6cb008aaf33586d292fcfe43da2a1 /template/standard/html/user
parent91d8a28c664afa5378735bcd0efe068dd74d589f (diff)
parent0a2614cb69fc732c2115ef2f0c356f39f602d311 (diff)
downloadblog-optimization.tar.gz
blog-optimization.tar.xz
blog-optimization.zip
Merge branch 'master' into 'optimization'optimization
Diffstat (limited to 'template/standard/html/user')
-rw-r--r--template/standard/html/user/item.php20
-rw-r--r--template/standard/html/user/list.php19
-rw-r--r--template/standard/html/user/main.php31
3 files changed, 0 insertions, 70 deletions
diff --git a/template/standard/html/user/item.php b/template/standard/html/user/item.php
deleted file mode 100644
index 45106af..0000000
--- a/template/standard/html/user/item.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# Standard: User Item Template [Thomas Lange <code@nerdmind.de>] #
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# #
-# [see documentation] #
-# #
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-?>
-<article class="item">
- <header>
- <h2>
- <a title="<?=$Language->text('select_user')?>: »<?=escapeHTML($USER['ATTR']['FULLNAME'])?>«" href="<?=$USER['URL']?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a>
- </h2>
- <span class="brackets info"><?=escapeHTML($USER['ATTR']['USERNAME'])?></span>
- </header>
- <blockquote cite="<?=$USER['URL']?>">
- <?=$USER['BODY']['HTML']()?>
- </blockquote>
-</article> \ No newline at end of file
diff --git a/template/standard/html/user/list.php b/template/standard/html/user/list.php
deleted file mode 100644
index ebc231d..0000000
--- a/template/standard/html/user/list.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# Standard: User List Template [Thomas Lange <code@nerdmind.de>] #
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# #
-# [see documentation] #
-# #
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-?>
-<h1><i class="fa fa-user"></i><?=$Language->text('user_overview')?></h1>
-<p><?=$Language->text('user_overview_heading_desc', $PAGINATION['THIS'])?></p>
-
-<div class="item-container user">
- <?php foreach($LIST['USERS'] as $user): ?>
- <?php echo $user; ?>
- <?php endforeach; ?>
-</div>
-
-<?=$PAGINATION['HTML']?> \ No newline at end of file
diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php
deleted file mode 100644
index a72b3d3..0000000
--- a/template/standard/html/user/main.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# Standard: User Main Template [Thomas Lange <code@nerdmind.de>] #
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# #
-# [see documentation] #
-# #
-#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-?>
-<h1><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?></h1>
-<p><em><?=$Language->text('user_main_heading_desc', [escapeHTML($USER['ATTR']['USERNAME']), $COUNT['POST'], $COUNT['PAGE']])?></em></p>
-
-<div id="content" class="user">
- <?=$USER['BODY']['HTML']()?>
-</div>
-
-<section id="site-navi">
-
- <?php if($USER['PREV']): ?>
- <div><a id="prev-site" href="<?=$USER['PREV']['URL']?>" title="<?=$Language->text('prev_user')?> »<?=escapeHTML($USER['PREV']['ATTR']['FULLNAME'])?>«"><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 id="next-site" href="<?=$USER['NEXT']['URL']?>" title="<?=$Language->text('next_user')?> »<?=escapeHTML($USER['NEXT']['ATTR']['FULLNAME'])?>«"><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