Sha256: 799b6409f675f0572f63191fda8b92ad10c42c1c79d4349d2e4191eb5d7a5b40
Contents?: true
Size: 1.65 KB
Versions: 7
Compression:
Stored size: 1.65 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><%= @page_title.nil? ? "" : @page_title + " - " %>OER Recommender</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 -%> </head> <body> <div id="wrapper"> <%= render :partial => 'layouts/global/header' %> <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> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "<%=GlobalConfig.google_analytics_key%>"; urchinTracker(); </script> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems