Created
December 15, 2011 12:55
-
-
Save yanping/1481001 to your computer and use it in GitHub Desktop.
default.html
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> {% if page.title %} {{ page.title }} | {% endif %} John Doe, Photographer </title> | |
<link rel="stylesheet" href="/css/styles.css" /> | |
</head> | |
<body> | |
<div id="main"> | |
<header> | |
<h1> John Doe Photograghy </h1> | |
<header> | |
<nav role="navigation"> | |
<ul> | |
<li><a href="/">Home</a></li> | |
<li><a href="/portfolio/">Portfolio</a></li> | |
<li><a href="/about">About</a></li> | |
<li><a href="/contact">Contact</a></li> | |
</ul> | |
</nav> | |
{{ content }} | |
<footer> | |
<p>@copy; John Doe Photography 2011 | All Rights Reserved. </p> | |
</footer> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment