engine/app/views/locomotive/shared/_head.html.haml

39 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2010-04-24 00:32:36 +00:00
%title= escape_once("#{Locomotive.config.name} — #{current_site.name}")
= csrf_meta_tag
- key = Rails.application.config.session_options[:key]
%meta{ :name => 'key-param', :content => Rails.application.config.session_options[:key] }
%meta{ :name => 'key-token', :content => cookies[key] }
%script{ :type => 'text/javascript' }
:plain
window.Locomotive = { mounted_on: '#{Locomotive.mounted_on}' };
= stylesheet_link_tag 'locomotive', :media => 'screen'
= javascript_include_tag 'locomotive'
2010-04-25 00:33:38 +00:00
%script{ :type => 'text/javascript' }
:plain
window.locale = '#{I18n.locale}';
window.content_locale = '#{::Mongoid::Fields::I18n.locale}';
Locomotive.current_site = new Locomotive.Models.Site(#{current_site.to_json});
Locomotive.current_account = new Locomotive.Models.Account(#{current_locomotive_account.to_json});
$(document).ready(function() {
window.application_view = new Locomotive.Views.ApplicationView({
flash: #{flash.to_json},
view: #{backbone_view_class_name},
2012-02-02 15:53:26 +00:00
view_data: { #{backbone_view_data} }
});
window.application_view.render();
});
2010-04-24 00:32:36 +00:00
= yield :head
= render 'locomotive/shared/main_app_head'