Skip to content

Instantly share code, notes, and snippets.

@fizzvr
Created August 6, 2015 17:43
Show Gist options
  • Select an option

  • Save fizzvr/c453b124fd39deaf5008 to your computer and use it in GitHub Desktop.

Select an option

Save fizzvr/c453b124fd39deaf5008 to your computer and use it in GitHub Desktop.
bs3.panel
<div class="panel panel-default">
<div class="table-responsive">
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Hex</th>
<th class="tex-center">Curso</th>
<!-- <th>Tags</th> -->
</tr>
</thead>
<tbody>
<% posts = @getCollection('proyectos_desarrollando') %>
<% for i in [0...Math.min(4,posts.length)]: %>
<% document = posts.at(i).toJSON() %>
<% if document.estado is 'todo': %>
<tr>
<th scope="row"><%= document.hex %></th>
<td><p><a href="<%= document.url %>"><%= document.titulo %></a></p></td>
</tr>
<% end %>
<% end %>
</tbody>
</table>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment