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/single.php

52 lines
1.1 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template for displaying all single posts
2014-12-10 11:36:38 +00:00
*
* @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();
2018-11-18 20:05:13 +00:00
$container = get_theme_mod( 'understrap_container_type' );
?>
<div class="wrapper" id="single-wrapper">
<div class="<?php echo esc_attr( $container ); ?>" id="content" tabindex="-1">
2016-11-21 18:47:05 +00:00
<div class="row">
<!-- Do the left sidebar check -->
2017-10-27 02:46:40 +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
while ( have_posts() ) {
the_post();
get_template_part( 'loop-templates/content', 'single' );
understrap_post_nav();
2016-11-21 18:47:05 +00:00
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
2016-11-21 18:47:05 +00:00
comments_template();
}
}
?>
2016-11-21 18:47:05 +00:00
</main><!-- #main -->
2018-11-18 20:05:13 +00:00
<!-- Do the right sidebar check -->
<?php get_template_part( 'global-templates/right-sidebar-check' ); ?>
2018-11-18 20:05:13 +00:00
</div><!-- .row -->
2018-11-18 20:05:13 +00:00
</div><!-- #content -->
2018-11-18 20:05:13 +00:00
</div><!-- #single-wrapper -->
2014-12-10 11:36:38 +00:00
<?php
get_footer();