Sha256: 8242cd539425aa6cadbd2f1dd387c5a3e874884475e98fe854e64023366e1d34
Contents?: true
Size: 752 Bytes
Versions: 17
Compression:
Stored size: 752 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Cloud9 Rocks!</title> </head> <body> <table class="table"> <tr> <th>Name</th> <th>Size</th> </tr> <% if (!isRoot) { %> <tr> <td><a href="..">..</a></td> <td></td></td> </tr> <% } %> <% entries.forEach(function(entry) { %> <tr> <td> <span class="glyphicon <%= entry.mime == 'directory' ? 'folder': 'file'%>"></span> <a href="<%= entry.name %>"><%= entry.name %></a> </td> <td><%= entry.size %></td> </tr> <% }) %> </table> </body> </html>
Version data entries
17 entries across 17 versions & 1 rubygems