%# # @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 #%> <%= render :partial => 'layouts/head' %>
controller-<%= controller_name %> action-<%= action_name %>"> <%= yield %> <% if devise_error_messages? %> <%= devise_error_messages! %> <% end %> <% if notice %> <%= notice %> <% end %> <% if alert %> <%= alert %> <% end %> <% if authenticated? %> <% # for creating and pulling in topics and synapses %> <% if controller_name == 'maps' && action_name == "conversation" %> <%= render :partial => 'maps/newtopicsecret' %> <% else %> <%= render :partial => 'maps/newtopic' %> <% end %> <%= render :partial => 'maps/newsynapse' %> <% # for populating the change metacode list on the topic card %> <%= render :partial => 'shared/metacodeoptions' %> <% end %>