Created
September 3, 2013 02:40
-
-
Save cjavdev/6419154 to your computer and use it in GitHub Desktop.
div/a => ul/li
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
<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