<?php
/*
Template Name: 会員専用ページ用
*/
?>

<?php if (is_user_logged_in()) { ?>

	<?php get_header("members"); ?>
	
	<div class="page_title">
		<h2><?php the_title(); ?></h2>
	</div>
	
	<div id="contents">
	
		<?php get_sidebar(); ?>
		<article id="main">
	
		<?php
			if(have_posts()):
				while(have_posts()):
					the_post();
					the_content();
				endwhile;
			endif;
		?>
		<?php wp_reset_query(); ?>
	
				<?php if (is_user_logged_in()) { ?>
					<?php if( is_page('25') ) { ?>
						<section class="members_top_news clearfix">
							<h3>新着情報<br><span class="ttl_en">NEWS & TOPICS</span></h3>
							<dl>
								<?php query_posts('posts_per_page=5&category_name=members-news'); ?>
								<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
										<dt><?php the_time('n月j日'); ?>
										<?php
											$days=7;
											$today=date('U'); $entry=get_the_time('U');
											$diff1=date('U',($today - $entry))/86400;
											if ($days > $diff1) { ?>
												<img src="<?php bloginfo('stylesheet_directory'); ?>/img/top/new.gif" width="18" height="12" alt="new" class="new-img">
											<?php } ?>
										</dt>
										<dd>
											<?php if(in_category('members-news')) : ?>
												<a href="<?php the_permalink(); ?>">
													<p><?php the_title();?></p>
												</a>
											<?php else : ?>
											<?php endif; ?>
										</dd>
								<?php endwhile; endif; ?>
								<?php wp_reset_query(); ?>
							</dl>
			<!--				<a href="<?php echo home_url('/'); ?>news/" class="news_all"><p>すべてのお知らせを見る</p></a>-->
						<!-- top_news --></section>
					<?php } ?>
				<?php } ?>
	
				<p id="pageTop"><a data-scroll href="#header"><br>page top</a></p>
			<!-- /main --></article>
		<!-- /contents --></div>
	
	<?php get_footer("members"); ?>

<?php } else { ?>
	<?php get_header();?>
	<?php if( is_page('25') ) { ?>
		<div class="page_title">
			<h2><?php the_title(); ?></h2>
		</div>
		<div id="contents">
			<article id="main">
				<?php
					if(have_posts()):
						while(have_posts()):
							the_post();
							the_content();
						endwhile;
					endif;
				?>
				<?php wp_reset_query(); ?>
				<p id="pageTop"><a data-scroll href="#header"><br>page top</a></p>
			<!-- /main --></article>
		<!-- /contents --></div>
	<?php } else { ?>
		<div class="page_title">
			<h2>404 page not found</h2>
		</div>
		<article id="main">
			<section>
				<p>お探しのページが見つかりません。</p>
			</section>
		</article>
	<?php } ?>
	<?php get_footer(); ?>
<?php } ?>
