Sha256: 317689bb1d1f387796da28d3a05781291752a1d866c10a4bc0f7af9c1aa1cf2a
Contents?: true
Size: 1.25 KB
Versions: 6
Compression:
Stored size: 1.25 KB
Contents
<!DOCTYPE html> <html> <head> <title> <%= @meta_service.name %> </title> <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> <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> <a href="<%= endpoint.url %>"> <%= render_erb("shared/endpoint_name.html.erb", endpoint.get_binding) %> </a> </li> <% end %> </ul> <% end %> <% if discussion %> <%= tag_with_anchor('h2', 'Discussion') %> <%= discussion %> <% end %> </div> </div> </body> </html>
Version data entries
6 entries across 6 versions & 2 rubygems