You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
456 B

<?php include('partials/post-type-navi.html.php'); ?>
<?php
/* Get All Posts */
$page = from($_GET, 'page');
$page = $page ? (int)$page : 1;
$perpage = config('posts.perpage');
$posts = get_posts(null, $page, $perpage);
?>
<div class="content-list">
<?php if (!empty($posts)) : ?>
<?php $actionDestination = 'admin'; ?>
<?php include('partials/post-list.html.php'); ?>
<?php else : ?>
<p>No posts found!</p>
<?php endif; ?>
</div>