Created
October 25, 2012 18:09
-
-
Save nelsonJM/3954393 to your computer and use it in GitHub Desktop.
Compass: HTML template for grid
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 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