metamaps--metamaps/app/views/layouts/application.html.erb

24 lines
976 B
Text
Raw Normal View History

2016-02-03 21:38:41 +08:00
<%#
# @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
#%>
2016-03-24 21:26:07 -07:00
<%= render :partial => 'layouts/head' %>
<body class="<%= authenticated? ? "authenticated" : "unauthenticated" %> controller-<%= controller_name %> action-<%= action_name %>">
2017-03-12 12:26:49 -04:00
<div class="main" id="react-app"></div>
<%= yield %>
2017-03-11 01:49:27 -05:00
<% 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 %>
2016-03-24 21:26:07 -07:00
<%= render :partial => 'layouts/foot' %>