aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/user
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-07-04 14:41:47 +0200
committerThomas Lange <code@nerdmind.de>2021-07-04 14:41:47 +0200
commit347b9a7ba86016a12c0b0c05b6edd24f0d381bda (patch)
tree21fc8aaebc2824f935778033a53ed9bd7774c19d /theme/admin/html/user
parent1a483f43f06f287ca97ff9543c396f74f5f72077 (diff)
downloadblog-347b9a7ba86016a12c0b0c05b6edd24f0d381bda.tar.gz
blog-347b9a7ba86016a12c0b0c05b6edd24f0d381bda.tar.xz
blog-347b9a7ba86016a12c0b0c05b6edd24f0d381bda.zip
Move ID into heading element and remove brackets
Diffstat (limited to 'theme/admin/html/user')
-rw-r--r--theme/admin/html/user/item.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/theme/admin/html/user/item.php b/theme/admin/html/user/item.php
index ae16637..80edd3b 100644
--- a/theme/admin/html/user/item.php
+++ b/theme/admin/html/user/item.php
@@ -1,8 +1,10 @@
<article class="item">
<header>
- <h2><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?></h2>
+ <h2>
+ <i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?>
+ <span class="item-id">#<?=$USER['ATTR']['ID']?></span>
+ </h2>
<div>
- <span class="brackets item-id">#<?=$USER['ATTR']['ID']?></span>
<time class="brackets" datetime="<?=$USER['ATTR']['TIME_INSERT']?>"><?=parseDatetime($USER['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time>
</div>
</header>