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/category/item.php | |
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/category/item.php')
-rw-r--r-- | theme/admin/html/category/item.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/theme/admin/html/category/item.php b/theme/admin/html/category/item.php index 05212e7..f8e7223 100644 --- a/theme/admin/html/category/item.php +++ b/theme/admin/html/category/item.php @@ -1,8 +1,10 @@ <article class="item"> <header> - <h2><i class="fa fa-tag"></i><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></h2> + <h2> + <i class="fa fa-tag"></i><?=escapeHTML($CATEGORY['ATTR']['NAME'])?> + <span class="item-id">#<?=$CATEGORY['ATTR']['ID']?></span> + </h2> <div> - <span class="brackets item-id">#<?=$CATEGORY['ATTR']['ID']?></span> <time class="brackets" datetime="<?=$CATEGORY['ATTR']['TIME_INSERT']?>"><?=parseDatetime($CATEGORY['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> <span class="brackets"><?=$Language->text('posts')?>: <?=$COUNT['POST']?></span> <span class="brackets"><?=$Language->text('categories')?>: <?=$COUNT['CHILDREN']?></span> |