##// END OF EJS Templates
Removed invalid html5 meta (Rails sets an equivalent response header natively) (#10128)....
Jean-Philippe Lang -
r9930:45d976309096
parent child
Show More
@@ -1,85 +1,84
1 1 <!DOCTYPE html>
2 2 <html lang="en">
3 3 <head>
4 4 <meta charset="utf-8" />
5 5 <title><%=h html_title %></title>
6 6 <meta name="description" content="<%= Redmine::Info.app_name %>" />
7 7 <meta name="keywords" content="issue,bug,tracker" />
8 <meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
9 8 <%= csrf_meta_tag %>
10 9 <%= favicon %>
11 10 <%= stylesheet_link_tag 'jquery/jquery-ui-1.8.21', 'application', :media => 'all' %>
12 11 <%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
13 12 <%= javascript_heads %>
14 13 <%= heads_for_theme %>
15 14 <!--[if IE 6]>
16 15 <style type="text/css">
17 16 * html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); }
18 17 body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
19 18 </style>
20 19 <![endif]-->
21 20 <%= call_hook :view_layouts_base_html_head %>
22 21 <!-- page specific tags -->
23 22 <%= yield :header_tags -%>
24 23 </head>
25 24 <body class="<%=h body_css_classes %>">
26 25 <div id="wrapper">
27 26 <div id="wrapper2">
28 27 <div id="top-menu">
29 28 <div id="account">
30 29 <%= render_menu :account_menu -%>
31 30 </div>
32 31 <%= content_tag('div', "#{l(:label_logged_as)} #{link_to_user(User.current, :format => :username)}".html_safe, :id => 'loggedas') if User.current.logged? %>
33 32 <%= render_menu :top_menu if User.current.logged? || !Setting.login_required? -%>
34 33 </div>
35 34
36 35 <div id="header">
37 36 <% if User.current.logged? || !Setting.login_required? %>
38 37 <div id="quick-search">
39 38 <%= form_tag({:controller => 'search', :action => 'index', :id => @project}, :method => :get ) do %>
40 39 <%= hidden_field_tag(controller.default_search_scope, 1, :id => nil) if controller.default_search_scope %>
41 40 <label for='q'>
42 41 <%= link_to l(:label_search), {:controller => 'search', :action => 'index', :id => @project}, :accesskey => accesskey(:search) %>:
43 42 </label>
44 43 <%= text_field_tag 'q', @question, :size => 20, :class => 'small', :accesskey => accesskey(:quick_search) %>
45 44 <% end %>
46 45 <%= render_project_jump_box %>
47 46 </div>
48 47 <% end %>
49 48
50 49 <h1><%= page_header_title %></h1>
51 50
52 51 <% if display_main_menu?(@project) %>
53 52 <div id="main-menu">
54 53 <%= render_main_menu(@project) %>
55 54 </div>
56 55 <% end %>
57 56 </div>
58 57
59 58 <%= tag('div', {:id => 'main', :class => (sidebar_content? ? '' : 'nosidebar')}, true) %>
60 59 <div id="sidebar">
61 60 <%= yield :sidebar %>
62 61 <%= view_layouts_base_sidebar_hook_response %>
63 62 </div>
64 63
65 64 <div id="content">
66 65 <%= render_flash_messages %>
67 66 <%= yield %>
68 67 <%= call_hook :view_layouts_base_content %>
69 68 <div style="clear:both;"></div>
70 69 </div>
71 70 </div>
72 71
73 72 <div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
74 73 <div id="ajax-modal" style="display:none;"></div>
75 74
76 75 <div id="footer">
77 76 <div class="bgl"><div class="bgr">
78 77 Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> &copy; 2006-2012 Jean-Philippe Lang
79 78 </div></div>
80 79 </div>
81 80 </div>
82 81 </div>
83 82 <%= call_hook :view_layouts_base_body_bottom %>
84 83 </body>
85 84 </html>
General Comments 0
You need to be logged in to leave comments. Login now