Sha256: f0d2da77013861c5548739867e3c686c046f5bd62008c9f3a5665d8c04a9a4f2

Contents?: true

Size: 1.28 KB

Versions: 2

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>
    <%= render :partial => 'shared/google_analytics' unless local_request? %>
    <%= 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 %>
  </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

2 entries across 2 versions & 1 rubygems

Version Path
refinerycms-0.9.5.30 vendor/plugins/refinery/app/views/layouts/application.html.erb
refinerycms-0.9.5.29 vendor/plugins/refinery/app/views/layouts/application.html.erb