mirror of
https://gh.wpcy.net/https://github.com/aspirepress/site-theme.git
synced 2026-07-15 11:26:29 +08:00
27 lines
662 B
PHP
27 lines
662 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="col-sm-12 blog-main">
|
|
<h1>Latest News</h1>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php while ( have_posts() ) : the_post() ?>
|
|
<?php get_template_part('article', get_post_format()) ?>
|
|
<?php endwhile; ?>
|
|
<?php else: ?>
|
|
<p>Nothing to display</p>
|
|
<?php endif; ?>
|
|
|
|
|
|
<nav>
|
|
<ul class="pager">
|
|
<li><?php next_posts_link('Older') ?></li>
|
|
<li><?php previous_posts_link('Newer') ?></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|
|
<!-- index.php -->
|