mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/readspec.git
synced 2026-05-26 13:42:28 +08:00
33 lines
No EOL
702 B
PHP
33 lines
No EOL
702 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
|
|
<div class="content-inner">
|
|
<div class="pad group">
|
|
|
|
<?php if ( ! is_paged() ) : ?>
|
|
<?php the_archive_description( '<div class="notebox">', '</div>' ); ?>
|
|
<?php endif; ?>
|
|
|
|
<?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><!--/.pad-->
|
|
</div><!--/.content-inner-->
|
|
|
|
<?php get_template_part('inc/subfooter'); ?>
|
|
|
|
</div><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|