Sha256: e442ad396f4a0beb4030f8d93eb87f6ec2442d5506a6b0c17467f1bf834a057d
Contents?: true
Size: 1.99 KB
Versions: 4
Compression:
Stored size: 1.99 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;" -%> <script type="text/javascript"> $('washout').toggle(); $('flash_notice').toggle(); <%= visual_effect(:fade, 'flash_notice', :duration => 1.0, :delay => 1.0).html_safe -%> <%= visual_effect(:fade, 'washout', :duration => 1.0, :delay => 1.0).html_safe -%> </script> <%- 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
4 entries across 4 versions & 1 rubygems