Skip to content

Instantly share code, notes, and snippets.

@davidray
Created May 18, 2009 03:01
Show Gist options
  • Save davidray/113291 to your computer and use it in GitHub Desktop.
Save davidray/113291 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html class="noscript" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<%= Comatose.config.content_type %>"/>
<title>Comatose Admin</title>
<%= stylesheet_link_tag 'comatose_admin' %>ß
<%= javascript_include_tag :defaults %>
<%= javascript_include_tag 'comatose_admin' %>
<%= javascript_include_tag "jquery", :cache => false %>
<%= javascript_include_tag "jquery.markitup", :cache => false %>
<%= javascript_include_tag "markitup/sets/default/set.js", :cache => false %>
<%= stylesheet_link_tag "markitup/skins/markitup/style.css" %>
<%= stylesheet_link_tag "markitup/sets/default/style.css" %>
</head>
<body>
<div id="page-container">
<div id="header">
<h1><%= link_to Comatose.config.admin_title, :controller=>controller.controller_name, :action=>'index' %></h1>
<div id="flash">
<span id="flash-content"><%= flash[:notice] %></span>
</div>
<h5><%= Comatose.config.admin_sub_title %></h5>
</div>
<div id="content">
<%= yield %>
</div>
<div id="footer">
Powered by <a href="http://comatose.rubyforge.org" target="_new_window">Comatose <%= Comatose::VERSION_STRING %></a>, created by <a href="http://www.mattmccray.com" target="_new_window">M@ McCray</a>.
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment