2022-09-08 20:10:51 +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; ?>
|
|
|
|
|
2022-09-10 12:17:09 +02:00
|
|
|
<?php if ( get_theme_mod( 'featured-position', 'below' ) == 'above' ) { get_template_part('inc/featured'); } ?>
|
2022-09-10 11:44:33 +02:00
|
|
|
|
2022-09-09 15:25:53 +02:00
|
|
|
<?php get_template_part('inc/front-widgets-top'); ?>
|
|
|
|
|
2022-09-08 20:10:51 +02:00
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<?php get_template_part('content'); ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
|
2022-09-09 15:25:53 +02:00
|
|
|
<?php get_template_part('inc/front-widgets-bottom'); ?>
|
2022-09-10 14:56:51 +02:00
|
|
|
|
2022-09-08 20:10:51 +02:00
|
|
|
<?php get_template_part('inc/pagination'); ?>
|
|
|
|
|
2022-09-10 14:56:51 +02:00
|
|
|
<?php if ( get_theme_mod( 'featured-position', 'below' ) == 'below' ) { get_template_part('inc/featured'); } ?>
|
|
|
|
|
2022-09-08 20:10:51 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div><!--/.content-->
|
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|