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
<article class="post"> | |
<header> | |
<h1 class="post-title"><?php the_title(); ?></h1> | |
<p class="post-meta"><?php the_date(); ?></p> | |
</header> | |
<div class="post-content"> | |
<?php the_content(); ?> | |
</div> | |
</article> |
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'); ?>" /> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
<title><?php bloginfo('name'); ?></title> | |
</head> | |
<body> | |
<div id="container"> | |
<!-- header --> |
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
<?php get_header(); ?> | |
<div id="content"> | |
<?php | |
if(have_posts()): while(have_posts()): the_post(); | |
get_template_part('content'); | |
endwhile; endif; ?> | |
</div> | |
<?php | |
get_sidebar(); | |
get_footer(); |
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
/* | |
Theme Name: Sample 2.1 | |
Theme URL: http://wordpress.hitsuji.me | |
Description: Wordpress sample theme for training. | |
Author: Tae Matsumoto | |
Version: 2.1 | |
*/ | |
/* 以下はすべて元のスタイルシートをコピーする */ | |
/*---------------------------------------------------------*/ |
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'); ?>" /> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
<title><?php bloginfo('name'); ?></title> | |
</head> | |
<body> | |
<div id="container"> | |
<!-- header --> |
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
@CHARSET "utf-8"; | |
/*---------------------------------------------------------*/ | |
/* General */ | |
/*---------------------------------------------------------*/ | |
body { | |
font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif; | |
font-size: 14px; | |
color: black; | |
padding: 0; |
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="utf-8" /> | |
<link rel="stylesheet" href="style.css" type="text/css" /> | |
<title>Hitsuji x WordPress</title> | |
</head> | |
<body> | |
<div id="container"> | |
<!-- header --> |
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> | |
<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> |
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="UTF-8" /> | |
<title>HitsujixWordpress</title> | |
<link rel="stylesheet" href="http://127.0.0.1:8080/wordpress/wp-content/themes/Training/style.css" type="text/css" /> | |
</head> | |
<body> | |
Hello, welcome to Wordpress! | |
</body> |