Created
June 16, 2014 01:03
-
-
Save hitsujixgit/78aab9448d53b55ac300 to your computer and use it in GitHub Desktop.
Wordpress sample theme for training. #02
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> | |
<head> | |
<meta charset="<?php bloginfo('charset'); ?>" /> | |
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
</head> | |
<body> | |
<h1><?php bloginfo('name'); ?></h1> | |
<?php if(have_posts()): while(have_posts()): the_post(); ?> | |
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
<?php the_content(); ?> | |
<?php endwhile; endif; ?> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment