Skip to content

Instantly share code, notes, and snippets.

@cjavdev
Created September 3, 2013 02:40
Show Gist options
  • Save cjavdev/6419154 to your computer and use it in GitHub Desktop.
Save cjavdev/6419154 to your computer and use it in GitHub Desktop.
div/a => ul/li
<div class="container">
<h3>My Boards
<a class="pull-right" href="#"><small>New Board...</a></small>
</h3>
<ul class="list-group">
<% boards.each(function (b) { %>
<li class="list-group-item">
<%= b.escape("name") %>
</li>
<% }) %>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment