diff options
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])): ?> |