Created
January 15, 2013 21:18
-
-
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.
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
<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