Skip to content

Instantly share code, notes, and snippets.

@steinsag
Created January 15, 2013 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steinsag/4542150 to your computer and use it in GitHub Desktop.
Save steinsag/4542150 to your computer and use it in GitHub Desktop.
Base structure of a HTML5 page including responsive.gs classes to define rows and columns.
<body>
<div id="page_wrap" class="container row">
<header class="row">...</header>
<section id="content_wrap" class="row">
<section id="article_listing" class="col span_8">
<article class="row">...</article>
<article class="row">...</article>
</section>
<aside class="col span_2">...</aside>
<aside class="col span_2">...</aside>
</section>
<footer class="row">...</footer>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment