Created
June 19, 2014 03:47
-
-
Save hitsujixgit/6446c1230993fa7530de to your computer and use it in GitHub Desktop.
HTMLからWPテーマを作成する - index.phpをカスタマイズする#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="utf-8" /> | |
<link rel="stylesheet" href="style.css" type="text/css" /> | |
<title>Hitsuji x WordPress</title> | |
</head> | |
<body> | |
<div id="container"> | |
<!-- header --> | |
<header id="header"> | |
<div id="site-title-wrapper"> | |
<h1 id="site-title"><a href="index.html">Hitsuji x WordPress</a></h1> | |
<h2 id="site-description">WordPress tips and lessons.</h2> | |
</div> | |
<nav> | |
<ul id="main-nav"> | |
<li><a href="dummy.html">WordPress Tips</a></li> | |
<li><a href="dummy.html">このサイトについて</a></li> | |
</ul> | |
</nav> | |
</header> | |
<div id="main"> | |
<!-- content --> | |
<div id="content"> | |
<article class="post"> | |
<header> | |
<h1 class="post-title">2件目の投稿</h1> | |
<p class="post-meta">2012年9月2日</p> | |
</header> | |
<div class="post-content"> | |
<p>今日もWordPressでサイトを作っている。10年前にWebサイトを作ったときは、ページ毎にHTMLをゴリゴリ書いていたので、更新やメンテナンスが大変だった。こんなに高機能なツールが無料で公開されている現代は凄いと思う。</p> | |
<p>サイト制作に飽きて来たので、今日はこれから外に出掛けます。</p> | |
</div> | |
</article> | |
<article class="post"> | |
<header> | |
<h1 class="post-title">1件目の投稿</h1> | |
<p class="post-meta">2012年9月1日</p> | |
</header> | |
<div class="post-content"> | |
<p>おはようございます。もう9月だと言うのに、毎日暑い日が続きますね。</p> | |
</div> | |
</article> | |
</div><!--content--> | |
<!-- sidebar --> | |
<aside id="sidebar"> | |
<h4>サイドバー</h4> | |
<ul><li>サイドバー設置予定</li></ul> | |
</aside> | |
</div><!--main--> | |
<!-- footer --> | |
<footer> | |
<p>©Hitsuji x WordPress, All rights reserved.</p> | |
</footer> | |
</div><!--container--> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment