This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/index.php

80 lines
2.0 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The main template file.
*
* 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
*/
2016-11-21 18:47:05 +00:00
get_header();
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
$container = get_theme_mod( 'understrap_container_type' );
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
?>
2017-01-09 14:55:51 +00:00
<?php if ( is_front_page() && is_home() ) : ?>
<?php get_template_part( 'global-templates/hero', 'none' ); ?>
<?php endif; ?>
<div class="wrapper" id="wrapper-index">
2016-11-21 18:47:05 +00:00
<div class="<?php echo esc_html( $container ); ?>" id="content" tabindex="-1">
2016-11-21 18:47:05 +00:00
<div class="row">
2016-11-21 18:47:05 +00:00
<!-- Do the left sidebar check and opens the primary div -->
<?php get_template_part( 'global-templates/left-sidebar-check', 'none' ); ?>
2016-11-21 18:47:05 +00:00
<main class="site-main" id="main">
2016-11-21 18:47:05 +00:00
<?php if ( have_posts() ) : ?>
2016-11-21 18:47:05 +00:00
<?php /* Start the Loop */ ?>
2016-11-21 18:47:05 +00:00
<?php while ( have_posts() ) : the_post(); ?>
2016-11-21 18:47:05 +00:00
<?php
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() );
?>
2016-11-21 18:47:05 +00:00
<?php endwhile; ?>
2016-11-21 18:47:05 +00:00
<?php else : ?>
2016-11-21 18:47:05 +00:00
<?php get_template_part( 'loop-templates/content', 'none' ); ?>
2016-11-21 18:47:05 +00:00
<?php endif; ?>
2016-11-21 18:47:05 +00:00
</main><!-- #main -->
2016-11-23 09:42:53 +00:00
<!-- The pagination component -->
<?php understrap_pagination(); ?>
2016-11-21 18:47:05 +00:00
</div><!-- #primary -->
2016-11-21 18:47:05 +00:00
<!-- Do the right sidebar check -->
<?php if ( 'right' === $sidebar_pos || 'both' === $sidebar_pos ) : ?>
2016-11-21 18:47:05 +00:00
<?php get_sidebar( 'right' ); ?>
<?php endif; ?>
</div><!-- .row -->
</div><!-- Container end -->
</div><!-- Wrapper end -->
2014-12-10 11:36:38 +00:00
<?php get_footer(); ?>