Sha256: 436085bd1851093268ab98b850cf732fda5ee6cad1c4e4bb72e7719761574d69
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 KB
Contents
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=<%= charset %>" /> <% stylesheets_full_list.each do |stylesheet| %> <link rel="stylesheet" href="<%= url_for(stylesheet) %>" type="text/css" media="screen" charset="utf-8" /> <% end %> <% javascripts_full_list.each do |javascript| %> <script type="text/javascript" charset="utf-8" src="<%= url_for(javascript) %>"></script> <% end %> <title><%= @list_title %></title> <base id="base_target" target="_parent" /> </head> <body> <script type="text/javascript" charset="utf-8"> var hasFrames = false; try { hasFrames = window.top.frames.main ? true : false; } catch (e) { } if (hasFrames) { document.getElementById('base_target').target = 'main'; document.body.className = 'frames'; } </script> <div id="content"> <h1 id="full_list_header"><%= @list_title %></h1> <div id="nav"> <% menu_lists.each do |list| %> <span><a target="_self" href="<%= url_for_list list[:type] %>"> <%= list[:title] %> </a></span> <% end %> </div> <div id="search">Search: <input type="text" /></div> <ul id="full_list" class="<%= @list_class || @list_type %>"> <%= erb "full_list_#{@list_type}" %> </ul> </div> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yard-0.8.7.6 | templates/default/fulldoc/html/full_list.erb |
yard-0.8.7.5 | templates/default/fulldoc/html/full_list.erb |