Sha256: 2ccccb2ef794ca6b5071c5cc405e8ffe9daf49ab92b367e4de1230e40c554204
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
<!DOCTYPE html> <html lang="en"> <head> <title>Default View</title> <meta charset="utf-8" /> <meta content="repo" name="keywords" /> <meta content="RepoManager default template" name="description" /> <meta content="Robert Wahler" name="author" /> <link href="http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css" rel="stylesheet" /> <style type="text/css"><%= partial 'css/basic.css' %></style> </head> <body> <div class="container"> <div class="content"> <div class="page-header"> <h1>Assets Report</h1> </div> <% unless items.empty? -%> <h2>Assets</h2> <table class="condensed-table bordered-table zebra-striped"> <thead> <tr> <th>Name</th> </tr> </thead> <tbody> <% for item in items do -%> <%= "<tr>" %> <%= "<td>#{item.name}</td>" %> <%= "</tr>" %> <% end -%> </tbody> </table> <% else -%> <p>No Assets found.</p> <% end -%> </div> <footer> <p>Copyright © 2011 GearheadForHire, LLC</p> </footer> </div> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems