Page of each project is completed
Categories: News
2008-08-19 Last update:
2008-04-11: Sun Posts
Business migration from the old website has been completed anyway.
Even if it is referred to as complete, but too quickly in a very simple one, and attitude of our commitment to work, so I made the representation, and · First you okay.
"Page.php" write only has to read the contents of content on each page.
"Page.php" actual are as follows:
<?php get_header(); ?>
<div id="body">
<div id="contents">
<!-- 記事のループ表示 -->
<div class="post">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php the_content() ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<!-- 記事の表示-end -->
<div class="page-top"><a href="#page"><img src="<?php bloginfo('template_directory'); ?>/images/btntop.gif" alt="ページのトップに戻る" width="114" height="24" /></a></div>
<div class="height-30"><span class="dummy">空白</span></div>
</div><!-- contents-end -->
<?php get_sidebar(); ?>
</div><!-- body-end -->
<?php get_footer(); ?>




























