Sha256: 21a585c9f68e83536459e46c257a7a4450703ccdebae4b16fa18da586f65c99d
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
<% setup # sets up any meta tags and page title -%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> <%= yield :title %> - <%= RefinerySetting.find_or_set(:site_name, "Company Name") %> </title> <%= stylesheet_link_tag 'application' %> <%= stylesheet_link_tag 'formatting', 'theme' %> <%= stylesheet_link_tag 'home' if @page.home? %> <!--[if IE 7]><%= stylesheet_link_tag 'ie7' %><![endif]--> <link rel="shortcut icon" href="/favicon.ico" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <%= yield :head %> <%= render :partial => 'shared/google_analytics' unless local_request? %> </head> <body> <%= render :partial => "/shared/ie6check" if request.env['HTTP_USER_AGENT'] =~ /MSIE/ %> <div id='page_container'> <div id='page' class='clearfix'> <div id='header' class='clearfix'> <%= render :partial => "/shared/header" %> </div> <div id='body' class='clearfix'> <%= yield %> </div> <div id='footer' class='clearfix'> <%= render :partial => "/shared/footer" %> </div> </div> </div> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
refinerycms-0.9.5.28 | vendor/plugins/refinery/app/views/layouts/application.html.erb |