Last active
May 12, 2016 11:34
-
-
Save torounit/2675968ad324d175e977ad80b015dc19 to your computer and use it in GitHub Desktop.
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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<title>Document</title> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url');?>"> | |
<?php wp_head();?> | |
</head> | |
<body> | |
<?php if(have_posts()):?> | |
<?php while (have_posts()):?> | |
<?php the_post();?> | |
<article> | |
<h1><?php the_title();?></h1> | |
<?php the_content();?> | |
</article> | |
<?php endwhile;?> | |
<?php endif;?> | |
<?php wp_footer();?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment