Created
November 12, 2012 16:28
-
-
Save meskarune/4060313 to your computer and use it in GitHub Desktop.
Simple HTML template
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> | |
{put your title here} | |
</title> | |
<link rel="stylesheet" type="text/css" media="all" href="default.css" /> | |
</head> | |
<body> | |
<aside> | |
<a href="/" target="blank"><img src="logo.png" alt="logo"></a> | |
<nav> | |
<a href="/blog">Blog</a> | |
<a href="/portfolio">Portfolio</a> | |
<a href="/resume">Resume</a> | |
<a href="mailto:{your email}" target="blank">Email</a> | |
<a href="/links" target="blank">Links</a> | |
</nav> | |
</aside> | |
<div id="content"> | |
<article> | |
<header><h2>{Post Title}</h2></header> | |
<p> | |
{post text here} | |
</p> | |
<header><h2>{Another Title}</h2></header> | |
<p> | |
{most post text} | |
</p> | |
</article> | |
<article> | |
<header><h2>{A Second Article}</h2></header> | |
<p> | |
{second post text here} | |
</p> | |
</article> | |
</div> | |
<footer> | |
{footer text here} | |
</footer> | |
</body> | |
</html> |
----Body----
|....| || |
|....| || |
|....| || |
|....| || |
|....|_________.| <-- footer
aside posts
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
body = page body
aside = side bar
nav = navigation
content = stuff that isn't the sidebar
article = post
header = top of post, title
p = paragraph
footer = site footer (usually copyright information)