Add the new_application layout
This commit is contained in:
parent
5c1aad2e4f
commit
e605be9246
1 changed files with 35 additions and 0 deletions
35
app/views/layouts/new_application.html.haml
Normal file
35
app/views/layouts/new_application.html.haml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
%html
|
||||||
|
%head
|
||||||
|
%meta{ "http-equiv" => "Content-Type", :content => "text/html; charset=UTF-8" }
|
||||||
|
%meta{ "http-equiv" => "X-UA-Compatible", :content => "IE=edge"}
|
||||||
|
%meta{ :name => "turbolinks-cache-control", :content => "no-cache" }
|
||||||
|
= csrf_meta_tags
|
||||||
|
= action_cable_meta_tag
|
||||||
|
|
||||||
|
%title
|
||||||
|
= t("dynamics.page_title")
|
||||||
|
|
||||||
|
= stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
||||||
|
= stylesheet_link_tag "print", :media => "print", "data-turbolinks-track" => true
|
||||||
|
|
||||||
|
%body
|
||||||
|
= render :partial => "layouts/support_navigator_banner"
|
||||||
|
= render :partial => "layouts/ie_lt_10"
|
||||||
|
#beta{class:(Rails.env == "production" ? "" : "beta_staging")}
|
||||||
|
- if Rails.env == "production"
|
||||||
|
Beta
|
||||||
|
- else
|
||||||
|
Env Test
|
||||||
|
|
||||||
|
= render partial: "layouts/flash_messages"
|
||||||
|
= yield
|
||||||
|
|
||||||
|
= render :partial => "layouts/switch_devise_profile_module"
|
||||||
|
= render :partial => "layouts/notifications_alert"
|
||||||
|
|
||||||
|
= render partial: "layouts/google_analytics"
|
||||||
|
|
||||||
|
= javascript_include_tag "application", "data-turbolinks-track" => true
|
||||||
|
- if Rails.env == "test"
|
||||||
|
%script{ :type => "text/javascript"}
|
||||||
|
(typeof jQuery !== "undefined") && (jQuery.fx.off = true);
|
Loading…
Add table
Add a link
Reference in a new issue