Sha256: 73b2a9527b79dbedc439467be6ae07b48f48be6fdc3a5aad56c246f4a66af80c
Contents?: true
Size: 1.1 KB
Versions: 5
Compression:
Stored size: 1.1 KB
Contents
<html> <head> <title><%= title %></title> <style> body { margin: 0; padding: 0; } .main { width: 800px; margin: 0 auto; border: 1px solid #ccc; padding: 0 20px 20px 20px; } h1 { margin: 25px 0; } h2,h3,h4 { margin: 5px 0; padding: 0; color: 880044; } h3 { color: 004488; } h4 { color: 888844; } ul { margin: 0; padding: 0; text-align: left; } li { margin: 0; padding: 0; text-align: left; } </style> <link rel="stylesheet" href="notes.css" type="text/css"> </head> <body> <div class="main"> <h1><%= title %></h1> <div class="notes"> <% notes.each do |label, per_file| %> <h2><%= label %></h2> <ol class="set <%= label.downcase %>"> <% per_file.each do |file, line_notes| %> <li><h3><a href="<%= file %>"><%= file %></a></h3><ol class="file" href="<%= file %>"> <% line_notes.sort!{ |a,b| a[0] <=> b[0] } %> <% line_notes.each do |line, note| %> <li class="note <%= label.downcase %>" ref="<%= line %>"><%= h note %> <sup><%= line %></sup></li> <% end %> </ol></li> <% end %> </ol> <% end %> </div> </div> </body> </html>
Version data entries
5 entries across 5 versions & 1 rubygems