Skip to content

Instantly share code, notes, and snippets.

@garethrees
Created May 3, 2012 11:15
Show Gist options
  • Select an option

  • Save garethrees/2585051 to your computer and use it in GitHub Desktop.

Select an option

Save garethrees/2585051 to your computer and use it in GitHub Desktop.
HTML5 / SCSS Structure
<section id="widgets">
<% @widgets.each do |widget| %>
<article class="widget">
<!-- widget.stuff -->
</article>
<% end %>
</section>
<article id="widget">
<header></header>
<div></div>
<footer></footer>
</article>
#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