Your IP : 216.73.216.95


Current Path : /var/test/www/html/seeds/wp-content/themes/raze/
Upload File :
Current File : /var/test/www/html/seeds/wp-content/themes/raze/content-single.php

<?php
/**
 * @package raze
 */
?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<header class="entry-header">
		<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
		
		
		<div class="entry-meta">
			<?php raze_posted_on(); ?>
		</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<?php if ( !get_theme_mod('raze_disable_featimg') && has_post_thumbnail() ) : ?>
		<div id="featured-image">
			<?php the_post_thumbnail('full'); ?>
		</div>
	<?php endif; ?>			
			
	<div class="entry-content">
		<?php the_content(); ?>
		<?php
			wp_link_pages( array(
				'before' => '<div class="page-links">' . __( 'Pages:', 'raze' ),
				'after'  => '</div>',
			) );
		?>
	</div><!-- .entry-content -->

	<footer class="entry-footer">
		<?php raze_entry_footer(); ?>
	</footer><!-- .entry-footer -->
	
		<?php if (!get_theme_mod('raze_disable_nextprev',false) ): 
				raze_post_nav();
		  endif; ?>

</article><!-- #post-## -->