Last active
August 29, 2015 14:02
-
-
Save hitsujixgit/caafedf601257565d474 to your computer and use it in GitHub Desktop.
テンプレートフォルダ内の画像を使用する - index.phpをカスタマイズする#3
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 --> | |
| <header id="header"> | |
| <div id="site-title-wrapper"> | |
| <h1 id="site-title"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></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"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment