27 lines
1.0 KiB
Plaintext
27 lines
1.0 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 'css/bigdata-showpage', 'css/font-awesome', 'css/bigdata-common', 'css/bigdata-login', 'css/bigdata-popup' %>
|
|
<%#= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
<%= javascript_heads %>
|
|
<%= javascript_include_tag "bootstrap", "bigdata" %>
|
|
</head>
|
|
<body>
|
|
<% if @welcome %>
|
|
<header class="header">
|
|
<%= render :partial => User.current.logged? ? 'layouts/logined_header' : 'layouts/unlogin_header' %>
|
|
<%#= render :partial => 'layouts/bigdata_header' %>
|
|
</header>
|
|
<% end %>
|
|
<div id="Container">
|
|
<%= yield %>
|
|
</div>
|
|
<%= render :partial => 'layouts/footer' %>
|
|
</body>
|
|
</html> |