<?php
/*
Template Name: Custom Page Template
*/
get_header(); ?>

<div id="contents">

    <div id="main_content">
        <div class="title_container">
            <h1><?php the_title(); ?></h1>
            <h2><?php echo get_queried_object()->post_name; ?></h2>
        </div>
        <article class="common-page-main" id="main">
            <div class="section_wrapper ">
                <div class="common_list_container">
                    <?php
                    if (function_exists('custom_breadcrumb')) {
                        custom_breadcrumb();
                    }
                    ?>
                    <?php if (have_posts()) : ?>
                        <?php while (have_posts()) : the_post(); ?>
                        <article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
                            <div class="entry-content">
                            <?php the_content(); ?>
                            </div>
                        </article>
                        <?php endwhile; ?>
                    <?php endif; ?>
                </div>
            </div>
        </article>
    </div>
</div>

<?php get_footer(); ?>