kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.5 KiB
98 lines
3.5 KiB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="<%= I18n.locale.to_s %>" xml:lang="<%= I18n.locale.to_s %>">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<title><%= html_title %></title>
|
|
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
|
<meta name="keywords" content="issue,bug,tracker" />
|
|
<meta name="current_menu_item" content="<%= current_menu_item %>" />
|
|
<%= csrf_meta_tag %>
|
|
<%= favicon_link_tag 'favicon.ico' %>
|
|
<%= stylesheet_link_tag current_theme.stylesheet_manifest %>
|
|
<%= javascript_include_tag 'application' %>
|
|
<!-- user specific tags -->
|
|
<%= user_specific_javascript_includes %>
|
|
<!-- project specific tags -->
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
<!-- page specific tags -->
|
|
<%= content_for(:header_tags) if content_for?(:header_tags) %>
|
|
</head>
|
|
<noscript><%=l(:description_noscript)%></noscript>
|
|
<body class="<%= body_css_classes %>">
|
|
<div id="wrapper">
|
|
<div id="top-menu">
|
|
<div id="header">
|
|
<div id="logo"></div>
|
|
<div id="top-menu-items">
|
|
<div id="search">
|
|
<%= label_tag("q", l(:label_search), :class => "hidden-for-sighted") %>
|
|
<%= form_tag({:controller => '/search', :action => 'index', :project_id => @project}, :method => :get) do %>
|
|
<%= hidden_field_tag(controller.default_search_scope, 1, :id => nil) if controller.default_search_scope %>
|
|
<div id='search_wrap'>
|
|
<%= text_field_tag 'q', @question, :size => 20, :class => 'search_field', :placeholder => l(:search_input_placeholder), :accesskey => accesskey(:quick_search) %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<h1 class="hidden-for-sighted">
|
|
<%= l(:label_top_menu) %>
|
|
</h1>
|
|
|
|
<%= render_top_menu %>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="breadcrumb">
|
|
<h1>
|
|
<%= you_are_here_info %>
|
|
<%= full_breadcrumb %>
|
|
</h1>
|
|
</div>
|
|
<%= javascript_tag('jQuery("div#breadcrumb ul.breadcrumb").adjustBreadcrumbToWindowSize()') %>
|
|
</div>
|
|
|
|
<% main_menu = render_main_menu(@project) %>
|
|
<% side_displayed = content_for?(:sidebar) || content_for?(:main_menu) || !main_menu.blank? %>
|
|
<div id="main" class="<%= side_displayed ? '' : "nosidebar" %>">
|
|
<% if (side_displayed) %>
|
|
<div id="main-menu">
|
|
<h1 class="hidden-for-sighted"><%= l(:label_main_menu) %></h1>
|
|
<div id="toggle-project-menu">
|
|
<a href="javascript:;" title="<%= l(:show_hide_project_menu) %>" class="navigation-toggler"></a>
|
|
</div>
|
|
<div id="menu-sidebar">
|
|
<%= main_menu %>
|
|
<%= content_for :main_menu %>
|
|
<!-- Sidebar -->
|
|
<div id="sidebar">
|
|
<%= content_for :sidebar %>
|
|
<%= call_hook :view_layouts_base_sidebar %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= expand_current_menu %>
|
|
<% end %>
|
|
<div class="<%= side_displayed ? '' : "nosidebar" %>" id="content">
|
|
<h1 class="hidden-for-sighted"><%= l(:label_content) %></h1>
|
|
<%= render_flash_messages %>
|
|
|
|
<!-- Action menu -->
|
|
<%= render :partial => 'layouts/action_menu' %>
|
|
|
|
<%= yield %>
|
|
<%= call_hook :view_layouts_base_content %>
|
|
<div style="clear:both;"> </div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<%= layout_footer_text %>
|
|
</div>
|
|
|
|
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
|
|
|
</div>
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
</body>
|
|
</html>
|
|
|