176 lines
7.7 KiB
Plaintext
176 lines
7.7 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 %>
|
||
<%= javascript_heads %>
|
||
<%= heads_for_theme %>
|
||
<%= stylesheet_link_tag 'org_new_style','jquery/jquery-ui-1.9.2', 'org2' %>
|
||
<%= javascript_include_tag 'cookie','project', 'organization','header','prettify','select_list_move','org'%>
|
||
<%= javascript_include_tag '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>
|
||
<!--<script type="text/javascript" src="/javascripts/jquery-1.8.3.min.js"></script>-->
|
||
<script type="text/javascript" src="/javascripts/koala.min.1.5.js"></script><!--焦点图-->
|
||
|
||
<script>
|
||
$(document).ready(function(){
|
||
$(".nav-element").mouseover(function(){
|
||
$(this).next(".sn-grey-opacity").show(0);
|
||
});
|
||
$(".sn-grey-opacity").mouseover(function(){
|
||
$(this).show(0);
|
||
});
|
||
$(".nav-element").mouseout(function(){
|
||
$(this).next(".sn-grey-opacity").delay(150).hide(0);
|
||
});
|
||
$(".sn-grey-opacity").mouseout(function(){
|
||
$(this).delay(150).hide(0);
|
||
});
|
||
$(".sn-sub-nav").each(function(){
|
||
$(this).children(".sn-subnav-slice:last").hide();
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</head>
|
||
|
||
<!--add by huang-->
|
||
<script type="text/javascript">
|
||
function org_new_files_upload()
|
||
{
|
||
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'files/upload_org_new_files',:locals => {:org => @organization, :org_attachment_type => 0}) %>');
|
||
showModal('ajax-modal', '513px');
|
||
$('#ajax-modal').siblings().remove();
|
||
$('#ajax-modal').before("<a href='javascript:void(0)' onclick='hideModal()' style='margin-left: 480px;'><img src='/images/bid/close.png' width='26px' height='26px' /></a>");
|
||
$('#ajax-modal').parent().css("top","40%").css("left","36%").css("border","3px solid #269ac9");
|
||
$('#ajax-modal').parent().addClass("popbox_polls");
|
||
}
|
||
|
||
function org_new_files_banner_upload()
|
||
{
|
||
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'files/upload_org_new_files_banner',:locals => {:org => @organization, :org_attachment_type => 1}) %>');
|
||
showModal('ajax-modal', '513px');
|
||
$('#ajax-modal').siblings().remove();
|
||
$('#ajax-modal').before("<a href='javascript:void(0)' onclick='hideModal()' style='margin-left: 480px;'><img src='/images/bid/close.png' width='26px' height='26px' /></a>");
|
||
$('#ajax-modal').parent().css("top","40%").css("left","36%").css("border","3px solid #269ac9");
|
||
$('#ajax-modal').parent().addClass("popbox_polls");
|
||
}
|
||
</script>
|
||
<body onload="prettyPrint();">
|
||
<!--内容开始-->
|
||
<div class="sn-inner-body">
|
||
<header>
|
||
<div class="sn-header">
|
||
<%= render :partial => 'organizations/org_logined_header' %>
|
||
<div class="sn-row sn-bg-white">
|
||
<div class="sn-logo">
|
||
<% if @org_logo_attchment.blank? %>
|
||
<img src="/images/org_new_style/logo.jpg" width="367" height="63" class="sn-mt13" alt=""/>
|
||
<% else %>
|
||
<img src="/attachments/<%= @org_logo_attchment.id %>/<%= @org_logo_attchment.filename %>" width="367" height="63" class="sn-mt13" alt="">
|
||
<% end %>
|
||
<% if User.current.admin_of_org?(@organization) %>
|
||
<a href="#" class="sn-logo-add" title="点击替换LOGO" onclick="org_new_files_upload();"></a>
|
||
<% end %>
|
||
|
||
</div>
|
||
</div>
|
||
<!--导航-->
|
||
<div class="sn-row sn-bg-blue sn-p-relative">
|
||
<ul class="sn-nav">
|
||
<% @subfield_content.each do |field| %>
|
||
<% if is_default_field?(field) %>
|
||
<% case field.name %>
|
||
<% when 'activity' %>
|
||
<li class="nav-element-default" style="display:<%= field.hide == 0?'block':'none' %>;">
|
||
<%= link_to "首页", organization_path(@organization), :class => "sn-link-white" %>
|
||
</li>
|
||
<% when 'course' %>
|
||
<li class="nav-element-default" style="display:<%= field.hide == 0?'block':'none' %>;">
|
||
<a href="#course_<%= field.id %>" class="sn-link-white"> 课程动态</a>
|
||
</li>
|
||
<% when 'project' %>
|
||
<li class="nav-element-default" style="display:<%= field.hide == 0?'block':'none' %>;">
|
||
<a href="#project_<%= field.id %>" class="sn-link-white">项目动态</a>
|
||
</li>
|
||
<% end %>
|
||
<% else %>
|
||
<% if field.field_type == "Post" && field.hide == 0 %>
|
||
<li class="nav-element">
|
||
<a href="#message_<%= field.id %>" class="sn-link-white"><%= field.name %></a>
|
||
</li>
|
||
<!--二级目录-->
|
||
<div class="sn-row sn-subnav-position sn-grey-opacity" style="display:none;">
|
||
<ul class="sn-sub-nav" style="display:<%= if_hidden_subdomain( field) ? 'block':'none' %>;">
|
||
<% field.sub_domains.each do |subdomain| %>
|
||
<li><%=link_to subdomain.name, org_subfield_sub_domain_sub_document_comments_path(subdomain, :org_subfield_id => @org_subfield.id), :class => "sn-link-grey" %></li>
|
||
<li class="sn-subnav-slice">|</li>
|
||
<% end %>
|
||
</ul>
|
||
</div>
|
||
<% elsif field.field_type == "Resource" && field.hide == 0 %>
|
||
<li class="nav-element">
|
||
<a href="#resource_<%= field.id %>" class="sn-link-white"><%= field.name %></a>
|
||
</li>
|
||
<% end %>
|
||
<% end %>
|
||
<% end %>
|
||
<% if User.current.admin_of_org?(@organization) %>
|
||
<li class="nav-element">
|
||
<a href="<%= setting_organization_path(@organization) %>" class="sn-link-white">配置</a>
|
||
</li>
|
||
<% end %>
|
||
</ul>
|
||
</div>
|
||
<div class="sn-row">
|
||
<div class="sn-banner">
|
||
<img src="/images/sn_banner.jpg" width="1200" height="210" alt="banner image" />
|
||
<!--<a href="#" class="sn-banner-add" title="点击替换图片" ></a>-->
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
<%# 更新访问数,刷新的时候更新访问次数 %>
|
||
<% update_visiti_count @organization %>
|
||
<%# over %>
|
||
<!--内容开始-->
|
||
|
||
<!--内容结束-->
|
||
<%= render_flash_messages %>
|
||
<%= yield %>
|
||
<%= call_hook :view_layouts_base_content %>
|
||
<div style="clear:both;"></div>
|
||
|
||
<footer>
|
||
<%= render :partial => "layouts/org_custom_footer" %>
|
||
</footer>
|
||
</div>
|
||
|
||
<!--页面底部-->
|
||
<div class="cl"></div>
|
||
<div id="ajax-modal" style="display:none;"></div>
|
||
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
||
</body>
|
||
</html>
|
||
|
||
|
||
|