From 3180d399f20d6e7bec41cf986cfbf8e1aafa3587 Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Thu, 14 Sep 2017 23:51:36 +0200
Subject: 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).

---
 template/standard/html/page/list.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'template/standard/html/page/list.php')

diff --git a/template/standard/html/page/list.php b/template/standard/html/page/list.php
index da75330..b2361bf 100644
--- a/template/standard/html/page/list.php
+++ b/template/standard/html/page/list.php
@@ -10,10 +10,10 @@
 <h1><i class="fa fa-file-text-o"></i><?=$Language->text('page_overview')?><span class="head-link brackets"><i class="fa fa-rss"></i><a href="<?=Application::getURL('feed/page/')?>" title="<?=$Language->text('feed_name_pages', escapeHTML($BLOGMETA['NAME']))?>">Feed</a></span></h1>
 <p><?=$Language->text('page_overview_heading_desc', $PAGINATION['THIS'])?></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
-- 
cgit v1.2.3