mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/readspec.git
synced 2026-05-26 22:17:57 +08:00
39 lines
No EOL
905 B
PHP
39 lines
No EOL
905 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
|
|
<div class="content-inner">
|
|
<div class="pad group">
|
|
|
|
<div class="notebox">
|
|
<?php esc_html_e('For the term','readspec'); ?> "<span><?php echo get_search_query(); ?></span>".
|
|
<?php if ( !have_posts() ): ?>
|
|
<?php esc_html_e('Please try another search:','readspec'); ?>
|
|
<?php endif; ?>
|
|
<div class="search-again">
|
|
<?php get_search_form(); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?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(); ?>
|