Sha256: c796f594c524f66c153259be64c70d6b38dea719846d4a4790768431b3750e20
Contents?: true
Size: 1.67 KB
Versions: 18
Compression:
Stored size: 1.67 KB
Contents
<!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) -%></title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta name="description" content="<%= yield(:meta_description) -%>" /> <meta name="keywords" content="<%= yield(:meta_keywords) -%>" /> <link rel="canonical" href="<%= request.url -%>" /> <link rel="shortcut icon" href="/favicon.ico" /> <%= stylesheet_link_tag 'core', 'application', :cache => true %> <!--[if IE]> <%= stylesheet_link_tag 'core_ie', :media => :all -%> <![endif]--> <%= javascript_include_tag :defaults %> <%= csrf_meta_tag %> </head> <body> <div id="container"> <div id="header"> <div id="navigation"><%= render :partial => 'shared/nav_tabs' -%></div> </div> <div id="page_header"> <h1><%= yield(:page_title) -%></h1> <div id="breadcrumbs"><%= breadcrumbs -%></div> </div> <div id="content_area"> <div id="washout" style="display:none;"></div> <%- flash.each do |name, msg| -%> <%- if name == :notice -%> <%= content_tag :div, msg, :id => "flash_#{name}", :class => "flash_#{name}", :style => "display:none;" -%> <%- else -%> <%= content_tag :div, msg, :id => "flash_#{name}", :class => "flash_#{name}" -%> <%- end -%> <%- end -%> <%= yield -%> <br style="clear: both;" /> </div> <div id="footer"><p>© <%= Time.zone.now.year -%> SEO Logic. All rights reserved.</p></div> </div> </body> </html>
Version data entries
18 entries across 18 versions & 1 rubygems