mirror of
https://ghproxy.net/https://github.com/AlxMedia/boxcard.git
synced 2025-08-26 08:39:30 +08:00
21 lines
No EOL
402 B
PHP
21 lines
No EOL
402 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<?php get_template_part('content'); ?>
|
|
<?php endwhile; ?>
|
|
|
|
<?php get_template_part('inc/pagination'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div><!--/.content-->
|
|
|
|
<div id="move-sidebar-content"></div>
|
|
|
|
<?php get_footer(); ?>
|