diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-04 15:28:14 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-04 15:28:14 +0200 |
commit | 926be04229cbaa492755080fac85762b7b876bca (patch) | |
tree | f1939777177205b1c012cf3a97ffc14b0371e317 /theme/admin/html/category/item.php | |
parent | 24877f1ed91380c76c49e3780f3c70c009509b07 (diff) | |
download | blog-926be04229cbaa492755080fac85762b7b876bca.tar.gz blog-926be04229cbaa492755080fac85762b7b876bca.tar.xz blog-926be04229cbaa492755080fac85762b7b876bca.zip |
Prettify the item meta elements in the admin theme
This commit prettifies the item meta elements in the admin theme and
also removes those ugly square brackets. It looks a lot better now.
Diffstat (limited to 'theme/admin/html/category/item.php')
-rw-r--r-- | theme/admin/html/category/item.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/theme/admin/html/category/item.php b/theme/admin/html/category/item.php index ad458d6..710253c 100644 --- a/theme/admin/html/category/item.php +++ b/theme/admin/html/category/item.php @@ -6,13 +6,16 @@ </h2> <ul class="item-meta"> <li> - <time class="brackets" datetime="<?=$CATEGORY['ATTR']['TIME_INSERT']?>"><?=parseDatetime($CATEGORY['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> + <i class="fa fa-newspaper-o"></i> + <span><?=$COUNT['POST']?> <?=$Language->text('posts')?></span> </li> <li> - <span class="brackets"><?=$Language->text('posts')?>: <?=$COUNT['POST']?></span> + <i class="fa fa-tags"></i> + <span><?=$COUNT['CHILDREN']?> <?=$Language->text('categories')?></span> </li> - <li> - <span class="brackets"><?=$Language->text('categories')?>: <?=$COUNT['CHILDREN']?></span> + <li class="item-meta-right"> + <i class="fa fa-clock-o"></i> + <time datetime="<?=$CATEGORY['ATTR']['TIME_INSERT']?>"><?=parseDatetime($CATEGORY['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </li> </ul> </header> |