OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/views/layouts/backlogs.html.erb

38 lines
1.4 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" xml:lang="en">
<head>
<title><%=h html_title %></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="<%= Redmine::Info.app_name %>" />
<meta name="keywords" content="issue,bug,tracker" />
<!-- disabling caching the stylesheets, it complicates background image loading -->
<%= stylesheet_link_tag 'smoothness/jquery-ui-1.8rc3.custom.css', 'common.css', 'purecssmenu.css', :plugin => 'redmine_backlogs' %>
<%= javascript_include_tag 'jquery-1.4.2.min.js', 'jquery-ui-1.8rc3.custom.min.js', 'jquery.jeditable.mini.js', 'common.js', :plugin => 'redmine_backlogs' %>
<!--[if lte IE 7]>
<script type="text/javascript">
// and when it all appears to work beautifully on every browser,
// it fails on IE
$(document).ready(function() {
var zIndex = 10000;
$('div, ul, li, span').each(function() {
$(this).css('zIndex', zIndex);
zIndex -= 10;
});
});
</script>
<![endif]-->
<%= call_hook :view_layouts_base_html_head %>
<%= yield :header_tags -%>
</head>
<body>
<%= render :partial => "header" -%>
<div id="content">
<%= render_flash_messages %>
<%= yield %>
<%= call_hook :view_layouts_base_content %>
</div>
<%= call_hook :view_layouts_base_body_bottom %>
</body>
</html>