aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/html/post
diff options
context:
space:
mode:
Diffstat (limited to 'template/standard/html/post')
-rw-r--r--template/standard/html/post/item.php4
-rw-r--r--template/standard/html/post/list.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/template/standard/html/post/item.php b/template/standard/html/post/item.php
index 7733e61..c4035cb 100644
--- a/template/standard/html/post/item.php
+++ b/template/standard/html/post/item.php
@@ -7,7 +7,7 @@
# #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
?>
-<li class="item-list-li post">
+<article class="item">
<header>
<h2>
<a title="<?=$Language->text('select_post')?>: »<?=escapeHTML($POST['ATTR']['NAME'])?>«" href="<?=$POST['URL']?>"><?=escapeHTML($POST['ATTR']['NAME'])?></a>
@@ -17,4 +17,4 @@
<blockquote cite="<?=$POST['URL']?>">
<?=$POST['BODY']['HTML']()?>
</blockquote>
-</li> \ No newline at end of file
+</article> \ No newline at end of file
diff --git a/template/standard/html/post/list.php b/template/standard/html/post/list.php
index adb4fd6..7622170 100644
--- a/template/standard/html/post/list.php
+++ b/template/standard/html/post/list.php
@@ -10,10 +10,10 @@
<h1><i class="fa fa-newspaper-o"></i><?=$Language->text('post_overview')?><span class="head-link brackets"><i class="fa fa-rss"></i><a href="<?=Application::getURL('feed/post/')?>" title="<?=$Language->text('feed_name_posts', escapeHTML($BLOGMETA['NAME']))?>">Feed</a></span></h1>
<p><?=$Language->text('post_overview_heading_desc', $PAGINATION['THIS'])?></p>
-<ul class="item-list post">
+<div class="item-container post">
<?php foreach($LIST['POSTS'] as $post): ?>
<?php echo $post; ?>
<?php endforeach; ?>
-</ul>
+</div>
<?=$PAGINATION['HTML']?> \ No newline at end of file