Current path: home/webdevt/www/demo2/wp-content/themes/spacious/
?? Go up: /home/webdevt/www/demo2/wp-content/themes
<?php
/**
* The template used for displaying blog post full content.
*
* @package ThemeGrill
* @subpackage Spacious
* @since Spacious 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php do_action( 'spacious_before_post_content' ); ?>
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a>
</h2><!-- .entry-title -->
</header>
<div class="entry-content clearfix">
<?php
the_content();
wp_link_pages( array(
'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'spacious' ),
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>'
) );
?>
</div>
<?php spacious_entry_meta(); ?>
<?php
do_action( 'spacious_after_post_content' );
?>
</article>