Skip to content

Instantly share code, notes, and snippets.

@nelsonJM
Created October 25, 2012 18:09
Show Gist options
  • Select an option

  • Save nelsonJM/3954393 to your computer and use it in GitHub Desktop.

Select an option

Save nelsonJM/3954393 to your computer and use it in GitHub Desktop.
Compass: HTML template for grid
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="grid">
<div class="col-2-3">
<article class="module">
stuff
</article>
<article class="module">
stuff
</article>
</div>
<div class="col-1-3">
<aside class="module">
Sidebar stuff. Sub modules?
</aside>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment