diff options
Diffstat (limited to 'theme/admin/html/post/item.php')
-rw-r--r-- | theme/admin/html/post/item.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/theme/admin/html/post/item.php b/theme/admin/html/post/item.php index 03b39d3..6fcbcad 100644 --- a/theme/admin/html/post/item.php +++ b/theme/admin/html/post/item.php @@ -6,16 +6,19 @@ </h2> <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> + <i class="fa fa-clock-o"></i> + <time datetime="<?=$POST['ATTR']['TIME_INSERT']?>"><?=parseDatetime($POST['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </li> - <?php if($CATEGORY): ?> <li> - <a class="brackets" href="<?=Application::getAdminURL("category/update.php?id={$CATEGORY['ATTR']['ID']}")?>" title="<?=$Language->text('update_category')?>"><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></a> + <i class="fa fa-user"></i> + <a href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> </li> - <?php endif ?> - <li> - <time class="brackets" datetime="<?=$POST['ATTR']['TIME_INSERT']?>"><?=parseDatetime($POST['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> + <?php if($CATEGORY): ?> + <li class="item-meta-right"> + <i class="fa fa-tag"></i> + <a href="<?=Application::getAdminURL("category/update.php?id={$CATEGORY['ATTR']['ID']}")?>" title="<?=$Language->text('update_category')?>"><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></a> </li> + <?php endif ?> </ul> </header> <blockquote cite="<?=$POST['URL']?>"> |