Sha256: 604b797d21397f80ab7254ef0012cade3af430afde2bb5f65c24a449143d7fea
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
<html> <head> <meta charset='utf-8'> <title><%= @filename %></title> <link rel="stylesheet" href="css/coco.css" type="text/css" /> </head> <body> <p class="menu"> <a href="index.html">Index</a> <img src="img/coconut16.png" width="16" height="16" /> <a href="https://github.com/lkdjiin/coco/wiki">Wiki</a> <img src="img/coconut16.png" width="16" height="16" /> <a href="https://github.com/lkdjiin/coco">Source</a> <img src="img/coconut16.png" width="16" height="16" /> <a href="#">Web site</a> </p> <h2><%= @filename %></h2> <p class="date"><%= "#{Time.now}" %></p> <table class="source"> <% @lines.each do |num, text, hit|%> <% if hit.nil? %> <tr class="never"> <% elsif hit.zero? %> <tr class="miss"> <% elsif hit > 0 %> <tr class="hit" %> <% end %> <%= "<td><pre>#{num} </pre></td><td><pre>#{text}</pre></td>" %> </tr> <% end%> </table> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
coco-0.4.1 | template/file.erb |