2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2019-11-14 17:16:31 +00:00
|
|
|
* The main template file
|
2014-12-10 11:36:38 +00:00
|
|
|
*
|
|
|
|
* This is the most generic template file in a WordPress theme
|
|
|
|
* and one of the two required files for a theme (the other being style.css).
|
|
|
|
* It is used to display a page when nothing more specific matches a query.
|
|
|
|
* E.g., it puts together the home page when no home.php file exists.
|
|
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2019-06-20 08:57:12 +00:00
|
|
|
// Exit if accessed directly.
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
2018-09-10 21:59:04 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
get_header();
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2018-11-18 20:59:03 +00:00
|
|
|
$container = get_theme_mod( 'understrap_container_type' );
|
2016-11-01 15:25:21 +00:00
|
|
|
?>
|
|
|
|
|
2017-01-09 14:55:51 +00:00
|
|
|
<?php if ( is_front_page() && is_home() ) : ?>
|
2017-10-27 02:42:06 +00:00
|
|
|
<?php get_template_part( 'global-templates/hero' ); ?>
|
2017-01-09 14:55:51 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2018-02-22 17:27:55 +00:00
|
|
|
<div class="wrapper" id="index-wrapper">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2017-06-08 14:54:29 +00:00
|
|
|
<div class="<?php echo esc_attr( $container ); ?>" id="content" tabindex="-1">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="row">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<!-- Do the left sidebar check and opens the primary div -->
|
2017-10-27 02:42:06 +00:00
|
|
|
<?php get_template_part( 'global-templates/left-sidebar-check' ); ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<main class="site-main" id="main">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2020-04-19 10:08:39 +00:00
|
|
|
<?php
|
|
|
|
if ( have_posts() ) {
|
|
|
|
// Start the Loop.
|
|
|
|
while ( have_posts() ) {
|
|
|
|
the_post();
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
/*
|
|
|
|
* Include the Post-Format-specific template for the content.
|
|
|
|
* If you want to override this in a child theme, then include a file
|
|
|
|
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop-templates/content', get_post_format() );
|
2020-04-19 10:08:39 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
get_template_part( 'loop-templates/content', 'none' );
|
|
|
|
}
|
|
|
|
?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</main><!-- #main -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-23 09:42:53 +00:00
|
|
|
<!-- The pagination component -->
|
|
|
|
<?php understrap_pagination(); ?>
|
|
|
|
|
2018-11-18 20:59:03 +00:00
|
|
|
<!-- Do the right sidebar check -->
|
|
|
|
<?php get_template_part( 'global-templates/right-sidebar-check' ); ?>
|
2016-11-21 18:47:05 +00:00
|
|
|
|
2018-11-18 20:59:03 +00:00
|
|
|
</div><!-- .row -->
|
2016-11-21 18:47:05 +00:00
|
|
|
|
2018-11-18 20:59:03 +00:00
|
|
|
</div><!-- #content -->
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2018-11-18 20:59:03 +00:00
|
|
|
</div><!-- #index-wrapper -->
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2020-04-19 10:08:39 +00:00
|
|
|
<?php
|
|
|
|
get_footer();
|