• File: content-page.php
  • Full Path: /home/chassiw/www/wp-content/themes/kasuari/inc/format/content-page.php
  • File size: 1 KB
  • MIME-type: text/plain
  • Charset: utf-8
<article id="page-<?php the_ID(); ?>" <?php post_class( 'page'); ?>>

	
	<div class="container page-title-wrap">
		<h1><?php the_title(); ?></h1>
	</div>

	<div class="page-content wrapper clearfix">
		 <div class="container">
			<?php 
				the_content(); 
				wp_link_pages( array(
					'before'      => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'kasuari' ) . '</span>',
					'after'       => '</div>',
					'link_before' => '<span>',
					'link_after'  => '</span>',
					'pagelink'    => '<span class="screen-reader-text">' . esc_html__( 'Page', 'kasuari' ) . ' </span>%',
					'separator'   => '<span class="screen-reader-text">, </span>',
				) ); 
			?>
		</div> 
	</div><!-- page-content --> 

	<div class="page-comment container clearfix">
		<?php 
			if ( is_singular() ) wp_enqueue_script( "comment-reply" ); 
			if ( comments_open() || '0' != get_comments_number() ) comments_template(); 
		?>
	</div>

</article><!-- #page<?php the_ID(); ?> -->