bigvisual/index.php

30 lines
667 B
PHP
Raw Normal View History

2021-09-29 12:47:20 +02:00
<?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/front-widgets-top'); ?>
2021-10-01 11:44:18 +02:00
<?php get_template_part('inc/featured'); ?>
2021-09-29 12:47:20 +02:00
<?php if ( have_posts() ) : ?>
2021-10-01 11:44:18 +02:00
<div class="article-grid">
2021-09-29 12:47:20 +02:00
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
2021-10-01 11:44:18 +02:00
</div>
2021-09-29 12:47:20 +02:00
<?php get_template_part('inc/front-widgets-bottom'); ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>