mirror of
https://ghproxy.net/https://github.com/AlxMedia/dashwall.git
synced 2025-08-26 08:18:41 +08:00
23 lines
No EOL
418 B
PHP
23 lines
No EOL
418 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="page-col-center">
|
|
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<div class="page-grid-center">
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<?php get_template_part('content'); ?>
|
|
<?php endwhile; ?>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php get_template_part('inc/pagination'); ?>
|
|
|
|
</div>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|