33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
<!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">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><%= h html_title %></title>
|
|
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
|
<meta name="keywords" content="issue,bug,tracker" />
|
|
<%= csrf_meta_tag %>
|
|
<%= favicon %>
|
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'new_user', 'user_leftside', :media => 'all' %>
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
<%= javascript_heads %>
|
|
<%= javascript_include_tag "bootstrap","avatars","new_user"%>
|
|
<%= heads_for_theme %>
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
<%= yield :header_tags -%>
|
|
</head>
|
|
<div class="navContainer">
|
|
<% is_current_user = User.current.logged? && User.current == @user%>
|
|
<% if User.current.logged? %>
|
|
<%= render :partial => 'layouts/logined_header' %>
|
|
<% else%>
|
|
<%= render :partial => 'layouts/unlogin_header' %>
|
|
<% end%>
|
|
</div>
|
|
|
|
<%= yield %>
|
|
<div class="cl"></div>
|
|
<%= render :partial => 'layouts/footer' %>
|
|
<div class="cl"></div>
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
</body>
|
|
</html> |