Ejemplo n.º 1
0
>>>>>>> b875702c9c06ab5012e52ff4337439b03918f453
=======
<?php
/**
 * The template for displaying all single posts
 *
 * @package WordPress
 * @subpackage Twenty_Thirteen
 * @since Twenty Thirteen 1.0
 */

get_header(); ?>

	<div id="primary" class="content-area">
		<div id="content" class="site-content" role="main">

			<?php /* The loop */ ?>
			<?php while ( have_posts() ) : the_post(); ?>

				<?php get_template_part( 'content', get_post_format() ); ?>
				<?php twentythirteen_post_nav(); ?>
				<?php comments_template(); ?>

			<?php endwhile; ?>

		</div><!-- #content -->
	</div><!-- #primary -->

<?php get_sidebar(); ?>
>>>>>>> b875702c9c06ab5012e52ff4337439b03918f453
<?php get_footer(); ?>
Ejemplo n.º 2
0
	<div id="primary" class="content-area">
		<div id="content" class="site-content" role="main">

			<?php 
/* The loop */
?>
			<?php 
while (have_posts()) {
    the_post();
    ?>

				<?php 
    get_template_part('content', get_post_format());
    ?>
				<?php 
    twentythirteen_post_nav();
    ?>
				<?php 
    comments_template();
    ?>

			<?php 
}
?>

		</div><!-- #content -->
	</div><!-- #primary -->

<?php 
get_sidebar();
get_footer();
Ejemplo n.º 3
0
<!-- single.php -->
	<div id="primary" class="content-area">
		<div id="content" class="site-content" role="main">
			<?php 
/* The loop */
?>
			<?php 
while (have_posts()) {
    the_post();
    ?>
				<?php 
    get_template_part('content', get_post_format());
    ?>
				<?php 
    twentythirteen_post_nav('');
    ?>
				<?php 
    comments_template();
    ?>
			<?php 
}
?>

		</div><!-- #content -->
	</div><!-- #primary -->

<!-- end single.php -->

<?php 
get_sidebar();