2020-10-29 23:50:19 +09:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Template Name: No sidebar
|
2020-11-13 10:43:00 +09:00
|
|
|
* Template Post Type: page, post
|
2020-10-29 23:50:19 +09:00
|
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<!-- [ #container ] -->
|
|
|
|
<div id="container" class="innerBox">
|
|
|
|
<!-- [ #content ] -->
|
|
|
|
<div id="content" class="content wide">
|
|
|
|
|
|
|
|
<div class="bcnlist">
|
|
|
|
<?php if(function_exists('bcn_display'))
|
|
|
|
{
|
|
|
|
bcn_display();
|
|
|
|
}?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
|
|
|
<div id="post-<?php the_ID(); ?>" class="entry-content">
|
|
|
|
|
|
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
|
|
|
|
|
|
<?php the_content(); ?>
|
|
|
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . 'Pages:', 'after' => '</div>' ) ); ?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div>
|
|
|
|
<!-- [ /#content ] -->
|
|
|
|
</div>
|
|
|
|
<!-- [ /#container ] -->
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|