Created
August 24, 2009 18:28
-
-
Save jasonmelgoza/174020 to your computer and use it in GitHub Desktop.
new base html for capo with (super cool) grid support
This file contains 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> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<link rel="stylesheet" href="/static/css/style.css" type="text/css" media="screen" title="no title" charset="utf-8"> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> | |
<title>Page Title</title> | |
</head> | |
<html> | |
<body> | |
<div class="row"> | |
<div class="column grid_12"><p>Header</p></div> | |
</div> | |
<div class="row"> | |
<div class="column grid_10"> | |
<div class="row"> | |
<div class="column grid_2"><p>Nav</p></div> | |
<div class="column grid_8"><p>Posts</p></div> | |
</div> | |
</div> | |
<div class="column grid_2"><p>Sidebar</p></div> | |
</div> | |
<div class="row"> | |
<div class="column grid_12"><p>Footer</p></div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment