diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-04 14:41:47 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-04 14:41:47 +0200 |
commit | 347b9a7ba86016a12c0b0c05b6edd24f0d381bda (patch) | |
tree | 21fc8aaebc2824f935778033a53ed9bd7774c19d /theme/admin/html/post | |
parent | 1a483f43f06f287ca97ff9543c396f74f5f72077 (diff) | |
download | blog-347b9a7ba86016a12c0b0c05b6edd24f0d381bda.tar.gz blog-347b9a7ba86016a12c0b0c05b6edd24f0d381bda.tar.xz blog-347b9a7ba86016a12c0b0c05b6edd24f0d381bda.zip |
Move ID into heading element and remove brackets
Diffstat (limited to 'theme/admin/html/post')
-rw-r--r-- | theme/admin/html/post/item.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/theme/admin/html/post/item.php b/theme/admin/html/post/item.php index 41991d5..330e682 100644 --- a/theme/admin/html/post/item.php +++ b/theme/admin/html/post/item.php @@ -1,8 +1,10 @@ <article class="item"> <header> - <h2><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?></h2> + <h2> + <i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?> + <span class="item-id">#<?=$POST['ATTR']['ID']?></span> + </h2> <div> - <span class="brackets item-id">#<?=$POST['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <?php if($CATEGORY): ?> <a class="brackets" href="<?=Application::getAdminURL("category/update.php?id={$CATEGORY['ATTR']['ID']}")?>" title="<?=$Language->text('update_category')?>"><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></a> |