orbit-basic/app/views/layouts/admin.html.erb

34 lines
1.3 KiB
Plaintext
Raw Normal View History

<!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 %>
2009-05-15 06:37:03 +00:00
<%= stylesheet_link_tag "blueprint/screen", "blueprint/plugins/buttons/screen", "forms", "main", :media => "screen, projection" %>
<%= stylesheet_link_tag "blueprint/print", :media => "print" %>
<!--[if IE]>
<%= stylesheet_link_tag "blueprint/ie", :media => "screen, projection" %>
<![endif]-->
<%= yield :page_specific_css %>
</head>
<body>
<div class="container">
<div id ="nav" class="span-24">
2010-01-08 07:45:13 +00:00
<%= link_to t(:home, :scope => :admin), root_path %> |
<%= link_to t(:page, :scope => :admin), admin_pages_path %> |
<%= link_to t(:snippet, :scope => :admin), admin_snippets_path %> |
<%= link_to t(:layout, :scope => :admin), admin_layouts_path %> |
<%= link_to t(:announcement, :scope => :admin), admin_announcements_path %>
</div>
<%= yield %>
</div>
<%= javascript_include_tag "jquery",
"jquery-ui",
"jrails",
"application", :cache => 'all' %>
<%= yield :page_specific_javascript %>
</body>
</html>