|
<?xml version="1.0" encoding="<%= Locale.charset %>" ?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<% site_name = @config.site_name || MyCyma::Info::app_name %>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%= Locale.get %>">
|
|
<head>
|
|
<title><%= site_name %></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<%= Locale.charset %>" />
|
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
<%= stylesheet_link_tag "default" %>
|
|
<%= javascript_include_tag :defaults %>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1><%= link_to_unless_current "~°~ #{site_name} ~°~", root_path %></h1>
|
|
<ul class="nav" id="menu">
|
|
<li><strong><%= _("Setup the Cyma") %></strong>
|
|
<ul>
|
|
<li><%= link_to _("Manage Artworks"), admin_artworks_url %></li>
|
|
<li><%= link_to _("Manage Artwork Conditions"), admin_artwork_conditions_url %></li>
|
|
<li><%= link_to _("Manage Artwork Materials"), admin_artwork_materials_url %></li>
|
|
<li><%= link_to _("Manage Artwork Placement Reasons"), admin_artwork_placement_reasons_url %></li>
|
|
<li><%= link_to _("Manage Artwork Sets & Groups"), admin_artwork_sets_url %></li>
|
|
<li><%= link_to _("Manage Artwork Sizes"), admin_artwork_sizes_url %></li>
|
|
<li><%= link_to _("Manage Techniques"), admin_techniques_url %></li>
|
|
</ul>
|
|
</li>
|
|
<li><strong><%= _("About") %></strong>
|
|
<ul>
|
|
<li><%= link_to _("Project page"), MyCyma::Info::url, :popup => true %></li>
|
|
<li><%= link_to _("Help"), MyCyma::Info::help_url, :popup => true %></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
<!-- <div id="user_info" style="float: right;text-align: center;"><%= session[:login] ? "Loggued in as '#{session[:login]}'<br/>(#{link_to "logout", { :controller => 'logon', :action => 'logout'}})" : "Not loggued in" %></div> -->
|
|
</div>
|
|
<div style="clear: both;"></div>
|
|
<%= render_flash_messages %>
|
|
<div id="content">
|
|
<%= @content_for_layout %>
|
|
</div>
|
|
<div id="footer">
|
|
Generated by <%= MyCyma::Info::versioned_name %>.
|
|
<a href="http://validator.w3.org/check?uri=referer">
|
|
<img src="<%= ActionController::AbstractRequest.relative_url_root %>/images/valid-xhtml11.png" alt="Valid XHTML 1.1!" height="31" width="88" />
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|