Skip to content

Instantly share code, notes, and snippets.

@kembuco
Created February 22, 2012 17:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save kembuco/1886215 to your computer and use it in GitHub Desktop.
Save kembuco/1886215 to your computer and use it in GitHub Desktop.
Underscore template in jade
script(id='pageTpl', type='text/html')
| <div class="page">
| <div class="head"><%=title%> - <%=path%></div>
| <div class="body">
| <ul>
| <% _(actions).each(function(action) { %>
| <li>
| <%=action.name%> - <%=Helpers.df(action.time)%>
| <% if (action.ext) { %>
| <i class="pop icon-info-sign" data-content="<%=_.template($('#extTpl').html(), action)%>" data-original-title="Extra Information"></i>
| <% } %>
| </li>
| <% }); %>
| </ul>
| </div>
| </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment