socialforge/app/views/layouts/login_bigdata.html.erb

27 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-01-20 15:26:20 +08:00
<!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 %>
2017-03-24 16:05:52 +08:00
<%= stylesheet_link_tag 'css/bigdata-showpage', 'css/font-awesome', 'css/bigdata-common', 'css/bigdata-login', 'css/bigdata-popup' %>
2017-01-20 15:26:20 +08:00
<%#= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
<%= javascript_heads %>
2017-03-24 16:05:52 +08:00
<%= javascript_include_tag "bootstrap", "bigdata" %>
2017-01-20 15:26:20 +08:00
</head>
<body>
2017-03-24 16:05:52 +08:00
<% if @welcome %>
<header class="header">
2017-01-23 18:34:33 +08:00
<%= render :partial => User.current.logged? ? 'layouts/logined_header' : 'layouts/unlogin_header' %>
<%#= render :partial => 'layouts/bigdata_header' %>
2017-01-20 15:26:20 +08:00
</header>
2017-03-24 16:05:52 +08:00
<% end %>
<div id="Container">
2017-01-20 15:26:20 +08:00
<%= yield %>
2017-03-24 16:05:52 +08:00
</div>
2017-01-23 15:44:09 +08:00
<%= render :partial => 'layouts/footer' %>
2017-01-20 15:26:20 +08:00
</body>
</html>