Sha256: a1221d8b975bcbdf17e9c01be18a28c1e4c03987fc22a6548080cf59e87b7ec6
Contents?: true
Size: 1.9 KB
Versions: 7
Compression:
Stored size: 1.9 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="" /> <meta name="keywords" content="" /> <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]--> <%= csrf_meta_tag %> </head> <body> <div id="container"> <div id="header"> <div id="branding"></div> <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
7 entries across 7 versions & 1 rubygems