120 lines
4.1 KiB
Plaintext
120 lines
4.1 KiB
Plaintext
<% @nav_dispaly_project_label = 1
|
||
@nav_dispaly_forum_label = 1 %>
|
||
<%#@nav_dispaly_project_label = 1 %>
|
||
<!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 %>
|
||
<%= javascript_heads %>
|
||
<%= heads_for_theme %>
|
||
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2','css/common','css/structure','scm','css/public', 'css/project','css/popup','prettify','repository','css/gantt', 'css/calendar' %>
|
||
<%= javascript_include_tag 'cookie','project',"avatars", 'header','prettify','select_list_move','attachments' %>
|
||
|
||
<%= call_hook :view_layouts_base_html_head %>
|
||
<!-- page specific tags -->
|
||
<%= yield :header_tags -%>
|
||
<!-- MathJax的配置 -->
|
||
<script type="text/javascript"
|
||
src="/javascripts/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
|
||
</script>
|
||
<!-- 配置 : 在生成的公式图片上去掉Math定义的右键菜单,$$ $$ \( \) \[ \] 中的公式给予显示-->
|
||
<script type="text/x-mathjax-config">
|
||
MathJax.Hub.Config({
|
||
showMathMenu: false,
|
||
showMathMenuMSIE: false,
|
||
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
|
||
});
|
||
</script>
|
||
|
||
</head>
|
||
<!--add by huang-->
|
||
<body onload="prettyPrint();">
|
||
<div class="navContainer mb10">
|
||
<% if User.current.logged? %>
|
||
<%= render :partial => 'layouts/logined_header' %>
|
||
<% else%>
|
||
<%= render :partial => 'layouts/unlogin_header' %>
|
||
<% end%>
|
||
</div>
|
||
<div class="cl"></div>
|
||
|
||
<div id="Container">
|
||
<div class="cl"></div>
|
||
|
||
<div id="content">
|
||
<%= render :partial => 'layouts/base_project_top' %>
|
||
<div id="LSide" class="fl">
|
||
|
||
<!--邀请加入-->
|
||
<div class="subNavBoxProject">
|
||
<div id="project_memu_list">
|
||
<%#= render :partial => 'projects/development_group', :locals => {:project => @project} %>
|
||
</div>
|
||
</div>
|
||
<!--项目侧导航 end-->
|
||
<div class="cl"></div>
|
||
<!-- 项目描述 -->
|
||
<div class="project_intro">
|
||
<div id="course_description" class="course_description">
|
||
<h4 ><%= l(:label_project_overview)%>:</h4>
|
||
<div id="course_description_content" class="break_word">
|
||
<%= textilizable(@project.description) if @project.description && !@project.description.blank? %>
|
||
</div>
|
||
</div>
|
||
<div class="lg-foot" id="lg-foot" onclick="show_more_msg();">
|
||
<label id="expend_more_information" value="show_more"><%= l(:label_expend_information)%></label>
|
||
<span class="g-arr-down">
|
||
<img id="arrow" src="/images/jiantou.jpg" width="12" height="6" />
|
||
</span>
|
||
</div>
|
||
</div><!--项目简介 end-->
|
||
|
||
<!-- tag模块 -->
|
||
<div class="project_Label">
|
||
<h4 class="mb5"><%= l(:label_tag)%>:</h4>
|
||
<div class="tag_h">
|
||
<div id="tags">
|
||
<%= render :partial => 'tags/project_tag', :locals => {:obj => @project,:object_flag => "2"}%>
|
||
</div>
|
||
</div>
|
||
<div class="cl"></div>
|
||
</div><!--项目标签 end-->
|
||
<div class="fontGrey5 mt10 ml10 mb10">访问计数 <%= @project.visits.to_i %> (自2016年5月)</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="fl">
|
||
<%= render_flash_messages %>
|
||
<%= yield %>
|
||
<%= call_hook :view_layouts_base_content %>
|
||
<div style="clear:both;"></div>
|
||
</div>
|
||
<div style="clear:both;"></div>
|
||
</div><!--Container end-->
|
||
|
||
<div class="cl"></div>
|
||
<%= render :partial => 'layouts/footer' %>
|
||
<div class="cl"></div>
|
||
|
||
<% if hidden_unproject_infos %>
|
||
<%= render :partial => 'layouts/new_feedback' %>
|
||
<% end %>
|
||
|
||
<div id="ajax-indicator" style="display:none;">
|
||
<span><%= l(:label_loading) %></span>
|
||
</div>
|
||
<div id="ajax-modal" style="display:none;"></div>
|
||
<div id="nh_tx_dialog_html" class="white_content" style="display:none;">
|
||
<%=render :partial => 'layouts/upload_avatar', :locals => {:source => @project} %>
|
||
</div>
|
||
<%= call_hook :view_layouts_base_body_bottom %>
|
||
</body>
|
||
</html>
|
||
|