incolor/index.php

26 lines
582 B
PHP
Raw Permalink Normal View History

2021-08-20 18:58:06 +02:00
<?php get_header(); ?>
<div class="content">
<?php if ( get_theme_mod('heading-enable','on') == 'on' ) : ?>
<?php get_template_part('inc/page-title'); ?>
<?php endif; ?>
<?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><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>