diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-04 14:50:48 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-04 14:50:48 +0200 |
commit | 24877f1ed91380c76c49e3780f3c70c009509b07 (patch) | |
tree | 22835f5732e90d19a596a396163b1b7a982cd39b /theme/admin/html/category/item.php | |
parent | 347b9a7ba86016a12c0b0c05b6edd24f0d381bda (diff) | |
download | blog-24877f1ed91380c76c49e3780f3c70c009509b07.tar.gz blog-24877f1ed91380c76c49e3780f3c70c009509b07.tar.xz blog-24877f1ed91380c76c49e3780f3c70c009509b07.zip |
Use list for item meta elements
Diffstat (limited to 'theme/admin/html/category/item.php')
-rw-r--r-- | theme/admin/html/category/item.php | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/theme/admin/html/category/item.php b/theme/admin/html/category/item.php index f8e7223..ad458d6 100644 --- a/theme/admin/html/category/item.php +++ b/theme/admin/html/category/item.php @@ -4,11 +4,17 @@ <i class="fa fa-tag"></i><?=escapeHTML($CATEGORY['ATTR']['NAME'])?> <span class="item-id">#<?=$CATEGORY['ATTR']['ID']?></span> </h2> - <div> - <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> - </div> + <ul class="item-meta"> + <li> + <time class="brackets" datetime="<?=$CATEGORY['ATTR']['TIME_INSERT']?>"><?=parseDatetime($CATEGORY['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> + </li> + <li> + <span class="brackets"><?=$Language->text('posts')?>: <?=$COUNT['POST']?></span> + </li> + <li> + <span class="brackets"><?=$Language->text('categories')?>: <?=$COUNT['CHILDREN']?></span> + </li> + </ul> </header> <blockquote cite="<?=$CATEGORY['URL']?>"> <?php if(isset($CATEGORY['FILE']['LIST'][0])): ?> |