Sha256: 3795b2ae195ce5754d8a17cf55d182b1a9446d0683cb2b3bf0f1fc8e2e73441b
Contents?: true
Size: 1.23 KB
Versions: 8
Compression:
Stored size: 1.23 KB
Contents
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title><%= @page_title || 'untitled' %></title> <meta http-equiv="content-type" content="text/xhtml; charset=utf-8" /> <link rel="stylesheet" href="/stylesheets/admin/styles.css" type="text/css" media="screen" /> <%= javascript_include_tag 'jquery.min.js' %> <%= javascript_include_tag 'application' %> <%= meta_tags -%> <%= yield :head %> </head> <body> <% if flash[:notice] %> <div id="flash-notice"><%= flash[:notice] %> <a href="#">Close</a></div> <% end %> <div id="header">QWERTY+ Control Panel</div> <ul id="top_menu"> <li><a href="<%= admin_dashboard_path %>">Dashboard</a></li> <li><a href="<%= admin_users_path %>">Users</a></li> <li><a href="<%= root_path %>">Site Homepage</a></li> </ul> <% if @document %> <%= admin_bread_crumb(@document) %> <% end %> <div id="container"> <div id="content"> <%= yield %> </div> <div id="sidebar"> <%= yield :sidebar %> </div> </div> <!-- container --> </body> </html>
Version data entries
8 entries across 8 versions & 1 rubygems