mirror of
https://ghproxy.net/https://github.com/AlxMedia/curveflow.git
synced 2025-08-26 08:05:29 +08:00
31 lines
No EOL
671 B
PHP
31 lines
No EOL
671 B
PHP
<?php get_header(); ?>
|
|
|
|
|
|
<div class="content">
|
|
|
|
<?php if ( get_theme_mod('heading-enable','off') == 'on' ) : ?>
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php get_template_part('inc/featured'); ?>
|
|
|
|
<?php get_template_part('inc/front-widgets-top'); ?>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<div class="flow-normal">
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<?php get_template_part('content'); ?>
|
|
<?php endwhile; ?>
|
|
</div>
|
|
|
|
<?php get_template_part('inc/front-widgets-bottom'); ?>
|
|
<?php get_template_part('inc/pagination'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|