Created
June 16, 2014 01:08
-
-
Save hitsujixgit/9312a28d9e3ced734af1 to your computer and use it in GitHub Desktop.
Wordpress sample theme for training. #03
(only body tag)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div id="container"><!-- 全体を中央寄せ--> | |
<div id="header"> | |
<h1><?php bloginfo('name'); ?></h1> | |
</div> <!–header–> | |
<div id="contents"> | |
<?php if(have_posts()): while(have_posts()): the_post(); ?> | |
<div class="post"> | |
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
<?php the_content(); ?> | |
</div> <!–post–> | |
<?php endwhile; endif; ?> | |
</div> <!–contents–> | |
<div id="footer"> | |
<?php bloginfo('name'); ?> All rights reserved. | |
</div><!-- footer --> | |
</div><!-- container --> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment