2010-03-04 08:33:26 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<title>R4</title>
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
|
|
<%= yield :page_specific_link %>
|
2011-08-18 05:43:33 +00:00
|
|
|
<%= stylesheet_link_tag "application" %>
|
|
|
|
<%= javascript_include_tag "application" %>
|
2010-03-15 08:13:26 +00:00
|
|
|
<%= csrf_meta_tag %>
|
2010-03-04 08:33:26 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="container">
|
2011-04-13 10:19:51 +00:00
|
|
|
|
|
|
|
<div id="banner_link" style='text-align:right'>
|
|
|
|
<ul class="hmenu">
|
|
|
|
<li>
|
|
|
|
<%= render 'layouts/lang_menu' %>
|
|
|
|
</li>
|
|
|
|
<%= render 'devise/menu/login_items' %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2010-03-04 08:33:26 +00:00
|
|
|
<div id="header">
|
|
|
|
|
|
|
|
<h1>RulingSite Panel</h1>
|
|
|
|
|
|
|
|
<ul id="nav">
|
2011-04-13 10:19:51 +00:00
|
|
|
<li><%= link_to t('panel.home'), root_path %></li>
|
|
|
|
<li><%= link_to t('panel.user'), panel_users_path %></li>
|
2010-03-04 08:33:26 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
<div class="main"><%= yield %></div>
|
|
|
|
<div class="secondary"><%= yield :secondary %></div>
|
|
|
|
<div class="tertiary"><%= yield :tertiary %></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
<p>Rulingcom</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<%= yield :page_specific_javascript %>
|
|
|
|
</body>
|
2011-04-13 10:19:51 +00:00
|
|
|
</html>
|