Sha256: bd9cf351e968c3a8240951fb096aa6c8ff136fc528d77b4615917d15dcfcce28
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" xml:lang="<%= session[:locale] %>" lang="<%= session[:locale] %>"> <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <%= @no_index == true ? '<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"><META NAME="Googlebot" CONTENT="nofollow">' : '' %> <title>OER Recommender<%= @page_title.nil? ? "" : " - " + @page_title %></title> <%= stylesheet_link_tag 'default' %> <%= javascript_include_tag "jquery-1.3.2.min.js" %> <%= javascript_include_tag "jquery.jgrowl_minimized.js" %> <%= javascript_include_tag "application.js" %> <%= javascript_tag %[const AUTH_TOKEN = #{form_authenticity_token.inspect};] if protect_against_forgery? %> <%= yield :head -%> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "<%=GlobalConfig.google_analytics_key%>"; urchinTracker(); </script> </head> <body> <div id="wrapper"> <div id="header"> <h1 class="home_page_title"><%= t(:title) %></h1> <p style="color: green"> <%= flash[:notice] %> </p> <p> <%= t(:tag_line) %> </p> </div> <div id="content-wrapper"> <div id="content"> <%= yield :layout %> </div> </div> </div> <script type="text/javascript" language="JavaScript"> jQuery(document).ready(function(){ <%= yield :ready %> }); </script> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems