<?php
/**
 * Page Template
 *
 * @package Rifeng_Weifang
 */

get_header();
?>

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

<section class="page-content">
    <div class="container">
        <?php while ( have_posts() ) : the_post(); ?>
            <div class="entry-content">
                <?php
                the_content();
                
                wp_link_pages( array(
                    'before' => '<div class="page-links">' . __( 'Pages:', 'rifeng-weifang' ),
                    'after'  => '</div>',
                ) );
                ?>
            </div>
            
            <?php
            // If comments are open or we have at least one comment, load up the comment template.
            if ( comments_open() || get_comments_number() ) :
                comments_template();
            endif;
            ?>
        <?php endwhile; ?>
    </div>
</section>

<?php get_footer();
