Sha256: cb9dee5e224edcbf1a91f581f6c8d2fb2e43327e65829d295eae897a0aa23dba
Contents?: true
Size: 914 Bytes
Versions: 13
Compression:
Stored size: 914 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title><%= image.title %></title> <style> body { background-color: white; color: black; } </style> </head> <body> <p> <% if image.previous %> <a href="<%= image.previous.number %>.html"><--Previous</a> <% end %> <a href="../<%= image.index.relative_html %>">Up</a> <% if image.next %> <a href="<%= image.next.number %>.html">Next--></a> <% end %> </p> <p><img alt="<%= image.title %>" src="../<%= image.relative_image %>"/></p> <% if image.title %> <h1><%= image.title %></h1> <% end %> <% if image.description %> <p><%= image.description %></p> <% end %> <% if image.tags.any? %> <p> <% image.tags.each do |tag| %> <b><%= tag %></b> <% end %> </p> <% end %> </body> </html>
Version data entries
13 entries across 13 versions & 1 rubygems