Sha256: e1643a7cfa28790bc3af1cca1e4b7d58dea5259c67b658d7bfffb66293f4c74d
Contents?: true
Size: 1.07 KB
Versions: 7
Compression:
Stored size: 1.07 KB
Contents
<!DOCTYPE html> <html> <head> <title> <%= @meta_service.name %> </title> <link rel="stylesheet" type="text/css" href="<%= css_path %>" /> </head> <body> <div id="page"> <div id="content"> <h1> <%= @meta_service.name %> </h1> <%= description %> <%= tag_with_anchor('h2', 'Services') %> <ul> <% services.each do |serv| %> <li> <h3> <%= serv.name_as_link %> </h3> </li> <% end %> </ul> <%= tag_with_anchor('h2', 'Endpoints') %> <% endpoints.each do |endpoint_ary| %> <%= tag_with_anchor('h3', endpoint_ary.first.prefix) %> <ul> <% endpoint_ary.each do |endpoint| %> <li> <%= endpoint.name_as_link %> </li> <% end %> </ul> <% end %> <% if discussion %> <%= tag_with_anchor('h2', 'Discussion') %> <%= discussion %> <% end %> </div> </div> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems