Created
August 6, 2015 17:43
-
-
Save fizzvr/c453b124fd39deaf5008 to your computer and use it in GitHub Desktop.
bs3.panel
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="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