diff options
Diffstat (limited to 'template/admin/html/post')
-rw-r--r-- | template/admin/html/post/index.php | 4 | ||||
-rw-r--r-- | template/admin/html/post/item.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/template/admin/html/post/index.php b/template/admin/html/post/index.php index 124d39b..a78076e 100644 --- a/template/admin/html/post/index.php +++ b/template/admin/html/post/index.php @@ -1,10 +1,10 @@ <h1><i class="fa fa-newspaper-o"></i><?=$Language->text('post_overview')?><a class="brackets" href="<?=Application::getAdminURL("post/insert.php")?>"><?=$Language->text('insert')?></a></h1> <p><?=$Language->text('overview_post_desc')?></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 diff --git a/template/admin/html/post/item.php b/template/admin/html/post/item.php index 19b81c1..6707e81 100644 --- a/template/admin/html/post/item.php +++ b/template/admin/html/post/item.php @@ -1,4 +1,4 @@ -<li class="item-list-li post"> +<article class="item"> <header> <h2><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?><span>#<?=$POST['ATTR']['ID']?></span></h2> <div> @@ -25,4 +25,4 @@ <li><a href="<?=Application::getAdminURL("post/delete.php?id={$POST['ATTR']['ID']}")?>" title="<?=$Language->text('delete_post')?>"><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 |