77 lines
2.7 KiB
Plaintext
77 lines
2.7 KiB
Plaintext
<% @nav_dispaly_home_path_label = 1
|
|
@nav_dispaly_main_course_label = 1
|
|
@nav_dispaly_main_project_label = 1
|
|
@nav_dispaly_main_contest_label = 1 %>
|
|
<% @nav_dispaly_forum_label = 1%>
|
|
<!DOCTYPE html>
|
|
<html lang="<%= current_language %>">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="content-type" content="text/html; 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', 'nyan', :media => 'all' %>
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
<%= javascript_heads %>
|
|
<%#= heads_for_theme %>
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
<%= yield :header_tags -%>
|
|
</head>
|
|
<body class="<%= h body_css_classes %>">
|
|
<div id="wrapper">
|
|
<div id="wrapper2">
|
|
<div id="wrapper3">
|
|
<%= render :partial => 'layouts/base_header'%>
|
|
<div>
|
|
<div id="main">
|
|
<div class="top-content">
|
|
<table>
|
|
<tr>
|
|
<td class="info_font" style="width: 240px; color: #15bccf"><%=t(:label_stores_index)%></td>
|
|
<td style="width: 430px; color: #15bccf"><strong><%= l(:label_user_location) %> : </strong></td>
|
|
<td rowspan="2" width="250px">
|
|
<div class="top-content-search" style="display:none;">
|
|
<%= form_tag(:method => :get) do %>
|
|
<%= text_field_tag 'name', params[:name], :size => 20 %>
|
|
<%= hidden_field_tag 'project_type', params[:project_type] %>
|
|
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
|
|
<% end %>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding-left: 8px"><%= link_to request.host()+"/stores" , stores_url %></td>
|
|
<td><p class="top-content-list"><%=link_to l(:label_home),home_path %> > <%=link_to l(:label_stores_index),stores_url %> </p></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<%= render_flash_messages %>
|
|
<div id="top_field">
|
|
<%= yield :top_field %>
|
|
</div>
|
|
<div id="sidebaraa">
|
|
<%= yield :sidebar %>
|
|
<%= view_layouts_base_sidebar_hook_response %>
|
|
</div>
|
|
<div id="store_content" style="padding-top: 0px;">
|
|
<%= yield %>
|
|
<%= call_hook :view_layouts_base_content %>
|
|
</div>
|
|
<%= render :partial => 'layouts/base_footer'%>
|
|
</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>
|
|
</div>
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
</body>
|
|
</html>
|