<%# # @file # Main application file. Holds scaffolding present on every page. # Then a certain non-partial view (no _ preceding filename) will be # displayed within, based on URL #%> <%=h yield(:title) %> <%= csrf_meta_tags %> <%= stylesheet_link_tag "application", :media => "all" %> <%= javascript_include_tag "application" %> <% if devise_error_messages? %>

<%= devise_error_messages! %>

<% elsif notice %>

<%= notice %>

<% end %> <%= content_tag :div, class: "main" do %>
<%= render :partial => 'layouts/upperelements', :locals => {:appsPage => true } %> <%= yield %>
<% end %> <%= render :partial => 'layouts/lightboxes' %> <%= render :partial => 'layouts/templates' %> <%= render :partial => 'shared/metacodeBgColors' %> <%= render :partial => 'layouts/googleanalytics' if Rails.env.production? %>