76 lines
3.2 KiB
Plaintext
76 lines
3.2 KiB
Plaintext
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<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', 'application', :media => 'all' %>
|
||
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
||
<%= javascript_heads %>
|
||
<%= heads_for_theme %>
|
||
<%= call_hook :view_layouts_base_html_head %>
|
||
<!-- page specific tags -->
|
||
<%= yield :header_tags -%>
|
||
</head>
|
||
<body class="<%=h body_css_classes %>">
|
||
<div id="wrapper">
|
||
<div id="wrapper2">
|
||
<div id="wrapper3">
|
||
<div id="top-menu">
|
||
<div id="account">
|
||
<%= render_menu :account_menu -%>
|
||
</div>
|
||
<%= content_tag('div', "#{l(:label_logged_as_new)}: #{link_to_user(User.current, :format => :username)}".html_safe, :id => 'loggedas') if User.current.logged? %>
|
||
<%= render_menu :top_menu if User.current.logged? || !Setting.login_required? -%>
|
||
</div>
|
||
<% if display_main_menu?(@project) %>
|
||
<div id="header">
|
||
<%= link_to "项目配置", { :controller => 'projects', :action => 'settings' }, :last => true, :class => "user_setting" %>
|
||
<div class="project_header_tag">
|
||
标签:项目托管 社交网络 Rails
|
||
</div>
|
||
<%= link_to "主页:www.trustie.net", home_path, :class => 'project_homepage_tag' %>
|
||
<h1><%= page_header_title %>
|
||
<% if @project.description.present? %>
|
||
<%= textilizable @project.description %>
|
||
<% end %>
|
||
</h1>
|
||
<hr size="5">
|
||
<%= link_to(session[:project_member_num], {:controller => 'projects', :action => 'member'}, :class => 'project_infor_tag') +'个成员'+'|' %>
|
||
<%= link_to(session[:project_focus_num], {:controller => 'projects', :action => 'focus'}, :class => 'project_infor_tag') +'个关注(' %>
|
||
<%= link_to(session[:project_investor_num], {:controller => 'projects', :action =>'investor'}, :class => 'project_infor_tag') +'个投资者)'+ '|' %>
|
||
<%= link_to(session[:project_issue_num], {:controller => 'projects', :action => 'issue'}, :class => 'project_infor_tag') +'个缺陷'+'|' %>
|
||
<%= link_to(session[:project_mission_num], {:controller =>'projects', :action =>'mission'}, :class => 'project_infor_tag')+'个任务'+'|'%>
|
||
<%= link_to(session[:project_on_num], {:controller =>'projects', :action =>'on'}, :class => 'project_infor_tag')+'个提交'+'|'%>
|
||
<%= link_to(session[:project_file_num], {:controller =>'projects', :action =>'file'}, :class => 'project_infor_tag')+'个文件' %>
|
||
<hr size="5">
|
||
</div>
|
||
<% end %>
|
||
<div id="main" class="<%= sidebar_content? ? 'nosidebar' : 'nosidebar' %>">
|
||
<div id="content">
|
||
<%= render_flash_messages %>
|
||
<%= yield %>
|
||
<%= call_hook :view_layouts_base_content %>
|
||
<div style="clear:both;">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
||
<div id="ajax-modal" style="display:none;"></div>
|
||
|
||
<div id="footer">
|
||
<div class="bgl"><div class="bgr">
|
||
Powered by <%= link_to 'BitNami Redmine Stack', 'http://bitnami.com/stack/redmine' %> © 2006-2013 Jean-Philippe Lang
|
||
</div></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<%= call_hook :view_layouts_base_body_bottom %>
|
||
</body>
|
||
</html>
|