diff options
author | Thomas Lange <code@nerdmind.de> | 2017-09-15 16:29:54 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-09-15 16:29:54 +0200 |
commit | 54516e1178c34b0a68b96edab024a6b0184d36cb (patch) | |
tree | 0b9d3c2b0c93a99fedef1081733e6fb0fd5fd3d9 /template/admin/html/page | |
parent | 3bf57273ef02b1e892bf7231b58dcb7cfc45c1e6 (diff) | |
download | blog-54516e1178c34b0a68b96edab024a6b0184d36cb.tar.gz blog-54516e1178c34b0a68b96edab024a6b0184d36cb.tar.xz blog-54516e1178c34b0a68b96edab024a6b0184d36cb.zip |
The IDs of the items in the overview lists of the admin template are now no longer displayed within a <h2> element and have been moved to the underlying <div> element.
Diffstat (limited to 'template/admin/html/page')
-rw-r--r-- | template/admin/html/page/item.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php index 4fa1375..fa251cb 100644 --- a/template/admin/html/page/item.php +++ b/template/admin/html/page/item.php @@ -1,7 +1,8 @@ <article class="item"> <header> - <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?><span>#<?=$PAGE['ATTR']['ID']?></span></h2> + <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?></h2> <div> + <span class="brackets item-id">#<?=$PAGE['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <time class="brackets" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> |