microtype/index.php

31 lines
817 B
PHP
Raw Normal View History

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; ?>
<?php if ( get_theme_mod( 'featured-position', 'below' ) == 'above' ) { get_template_part('inc/featured'); } ?>
2022-09-10 11:44:33 +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; ?>
<?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(); ?>