textdash/index.php
2021-08-14 18:53:24 +02:00

30 lines
No EOL
740 B
PHP

<?php get_header(); ?>
<div class="content">
<?php get_template_part('inc/featured'); ?>
<?php get_template_part('inc/highlights'); ?>
<?php if ( get_theme_mod('heading-enable','off') == 'on' ) : ?>
<?php get_template_part('inc/page-title'); ?>
<?php endif; ?>
<div class="content-inner group">
<?php get_template_part('inc/front-widgets-top'); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php get_template_part('inc/front-widgets-bottom'); ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div>
</div><!--/.content-->
<div id="move-sidebar-content"></div>
<?php get_footer(); ?>