diff options
author | Thomas Lange <code@nerdmind.de> | 2017-09-14 23:51:36 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-09-14 23:51:36 +0200 |
commit | 3180d399f20d6e7bec41cf986cfbf8e1aafa3587 (patch) | |
tree | 24ddabcc6f140a6d006e940edcbf56b5814829f3 /template/admin/html/page | |
parent | a2556505e5f2d528a6c93958a8c7c9beaf4e002a (diff) | |
download | blog-3180d399f20d6e7bec41cf986cfbf8e1aafa3587.tar.gz blog-3180d399f20d6e7bec41cf986cfbf8e1aafa3587.tar.xz blog-3180d399f20d6e7bec41cf986cfbf8e1aafa3587.zip |
Some markup optimizations has been made to both templates (the HTML5 <article> element is more correct for the purpose of an item list, because real lists should only be used if the order of the items would change the meaning. This is not the case, because each item is a self-contained area which has nothing to do with the other items).
Diffstat (limited to 'template/admin/html/page')
-rw-r--r-- | template/admin/html/page/index.php | 4 | ||||
-rw-r--r-- | template/admin/html/page/item.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/template/admin/html/page/index.php b/template/admin/html/page/index.php index 0989796..dbd5144 100644 --- a/template/admin/html/page/index.php +++ b/template/admin/html/page/index.php @@ -1,10 +1,10 @@ <h1><i class="fa fa-file-text-o"></i><?=$Language->text('page_overview')?><a class="brackets" href="<?=Application::getAdminURL("page/insert.php")?>"><?=$Language->text('insert')?></a></h1> <p><?=$Language->text('overview_page_desc')?></p> -<ul class="item-list page"> +<div class="item-container page"> <?php foreach($LIST['PAGES'] as $page): ?> <?php echo $page; ?> <?php endforeach; ?> -</ul> +</div> <?=$PAGINATION['HTML']?>
\ No newline at end of file diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php index 4f0f884..156824b 100644 --- a/template/admin/html/page/item.php +++ b/template/admin/html/page/item.php @@ -1,4 +1,4 @@ -<li class="item-list-li page"> +<article class="item"> <header> <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?><span>#<?=$PAGE['ATTR']['ID']?></span></h2> <div> @@ -25,4 +25,4 @@ <li><a href="<?=Application::getAdminURL("page/delete.php?id={$PAGE['ATTR']['ID']}")?>" title="<?=$Language->text('delete_page')?>"><i class="fa fa-trash-o"></i></a></li> </ul> </footer> -</li>
\ No newline at end of file +</article>
\ No newline at end of file |