1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<!DOCTYPE html>
<html <%= "lang=\"#{html_lang}\"" unless html_lang.nil? %>>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="<%= charset %>" />
<% stylesheets_full_list.each do |stylesheet| %>
<link rel="stylesheet" href="<%= mtime_url(stylesheet) %>" type="text/css" media="screen" />
<% end %>
<% javascripts_full_list.each do |javascript| %>
<script type="text/javascript" charset="utf-8" src="<%= mtime_url(javascript) %>"></script>
<% end %>
<title><%= @list_title %></title>
<base id="base_target" target="_parent" />
</head>
<body>
<div id="content">
<div class="fixed_header">
<h1 id="full_list_header"><%= @list_title %></h1>
<div id="full_list_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">
<label for="search-class">Search:</label>
<input id="search-class" type="text" />
</div>
</div>
<ul id="full_list" class="<%= @list_class || @list_type %>">
<%= erb "full_list_#{@list_type}" %>
</ul>
</div>
</body>
</html>
|