Skip to content

Instantly share code, notes, and snippets.

@ylluminate
Created March 5, 2012 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ylluminate/1980689 to your computer and use it in GitHub Desktop.
Save ylluminate/1980689 to your computer and use it in GitHub Desktop.
new typus base.html.erb
<!DOCTYPE html>
<html lang="<%= I18n.locale %>">
<head>
<%= render 'admin/shared/head' %>
</head>
<body>
<div id="wrapper">
<div id="header">
<div class="container_12">
<div class="grid_12 title">
<%= admin_header %>
</div>
<div class="grid_8 applications">
<%= apps %>
</div>
<div class="grid_4 profile">
<%= login_info %>
</div>
</div>
</div>
<div id="content">
<div class="container_12">
<%= yield :layout %>
</div>
</div>
<div id="footer">
<div class="container_12">
<div class="grid_12">
<span class="copyright">
Powered by <%= link_to "Typus", "http://core.typuscmf.com/" %> &#183; <%= Typus.admin_sub_title.html_safe %>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment