diff options
author | Thomas Lange <code@nerdmind.de> | 2019-04-26 20:32:48 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2019-04-26 21:02:13 +0200 |
commit | 33794b12d5c68df918b988497a396b86acb09feb (patch) | |
tree | 810476a1fe4265f5163d0d1ceb6a49f5a668aa33 /theme/admin/html/page/item.php | |
parent | 0c918cafbef2e6c402e6852e821397114ea62284 (diff) | |
download | blog-33794b12d5c68df918b988497a396b86acb09feb.tar.gz blog-33794b12d5c68df918b988497a396b86acb09feb.tar.xz blog-33794b12d5c68df918b988497a396b86acb09feb.zip |
Rename "template" directory to "theme"
This commit renames the "template" directory to "theme" because "theme" is the more correct term here.
Diffstat (limited to 'theme/admin/html/page/item.php')
-rw-r--r-- | theme/admin/html/page/item.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/theme/admin/html/page/item.php b/theme/admin/html/page/item.php new file mode 100644 index 0000000..a92b2fd --- /dev/null +++ b/theme/admin/html/page/item.php @@ -0,0 +1,29 @@ +<article class="item"> + <header> + <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']}")?>" 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> + </header> + <blockquote cite="<?=$PAGE['URL']?>"> + <p><?=excerpt($PAGE['BODY']['HTML']())?></p> + </blockquote> + + <?php if($PAGE['ARGV']): ?> + <ul class="arguments"> + <?php foreach($PAGE['ARGV'] as $argument => $value): ?> + <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> + <?php endforeach; ?> + </ul> + <?php endif; ?> + + <footer> + <ul> + <li><a href="<?=$PAGE['URL']?>" target="_blank" title="<?=$Language->text('select_page')?>"><i class="fa fa-external-link"></i><span class="hidden"><?=$Language->text('select_page')?></span></a></li> + <li><a href="<?=Application::getAdminURL("page/update.php?id={$PAGE['ATTR']['ID']}")?>" title="<?=$Language->text('update_page')?>"><i class="fa fa-pencil-square-o"></i><span class="hidden"><?=$Language->text('update_page')?></span></a></li> + <li><a href="<?=Application::getAdminURL("page/delete.php?id={$PAGE['ATTR']['ID']}")?>" title="<?=$Language->text('delete_page')?>"><i class="fa fa-trash-o"></i><span class="hidden"><?=$Language->text('delete_page')?></span></a></li> + </ul> + </footer> +</article>
\ No newline at end of file |