Created
May 3, 2012 11:15
-
-
Save garethrees/2585051 to your computer and use it in GitHub Desktop.
HTML5 / SCSS Structure
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
| <section id="widgets"> | |
| <% @widgets.each do |widget| %> | |
| <article class="widget"> | |
| <!-- widget.stuff --> | |
| </article> | |
| <% end %> | |
| </section> |
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
| <article id="widget"> | |
| <header></header> | |
| <div></div> | |
| <footer></footer> | |
| </article> |
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
| #widgets { | |
| // widget list | |
| .widget { | |
| // individual widget listing | |
| } | |
| } | |
| #widget { | |
| // widget show | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment