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/page/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/page/item.php')
-rw-r--r-- | theme/admin/html/page/item.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/theme/admin/html/page/item.php b/theme/admin/html/page/item.php index 267416a..c88256e 100644 --- a/theme/admin/html/page/item.php +++ b/theme/admin/html/page/item.php @@ -4,10 +4,14 @@ <i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?> <span class="item-id">#<?=$PAGE['ATTR']['ID']?></span> </h2> - <div> - <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> - <time class="brackets" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> - </div> + <ul class="item-meta"> + <li> + <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> + </li> + <li> + <time class="brackets" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> + </li> + </ul> </header> <blockquote cite="<?=$PAGE['URL']?>"> <?php if(isset($PAGE['FILE']['LIST'][0])): ?> |