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

71 lines
1.8 KiB
PHP
Raw Permalink Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* 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' );
?>
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; ?>
<div class="wrapper" id="index-wrapper">
<div class="<?php echo esc_attr( $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 -->
2017-10-27 02:42:06 +00:00
<?php get_template_part( 'global-templates/left-sidebar-check' ); ?>
2016-11-21 18:47:05 +00:00
<main class="site-main" id="main">
<?php
if ( have_posts() ) {
// Start the Loop.
while ( have_posts() ) {
the_post();
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() );
}
} else {
get_template_part( 'loop-templates/content', 'none' );
}
?>
2016-11-21 18:47:05 +00:00
</main><!-- #main -->
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 -->
2018-11-18 20:59:03 +00:00
</div><!-- #index-wrapper -->
2014-12-10 11:36:38 +00:00
<?php
get_footer();