blob: 481cafe880cb9a590ba7b1eed545cd7d6770048d (
plain)
1
2
3
4
5
6
7
8
9
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->template('overview_post_desc')?></p>
<ul class="item-list">
<?php foreach($LIST['POSTS'] as $post): ?>
<?php echo $post; ?>
<?php endforeach; ?>
</ul>
<?=$PAGINATION['HTML']?>
|