Sha256: 75d617e8177fddcd68d2ba9fcd075342ee2ae38f333c24227172ce2d78624300
Contents?: true
Size: 853 Bytes
Versions: 5
Compression:
Stored size: 853 Bytes
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"> <ol> <% notes.each do |note| %> <li class="note <%= note.label.downcase %>" ref="<%= note.line %>"><%= note.label %>: <%= h note.text %> <sup><%= note.file %>: <%= note.line %></sup></li> <% end %> </ol> </div> </div> </body> </html>
Version data entries
5 entries across 5 versions & 1 rubygems