scinote-web/app/views/layouts/main.html.erb
2019-07-12 14:33:41 +02:00

11 lines
349 B
Plaintext

<% content_for :content do %>
<div class="container <%= yield :container_class %>">
<% if user_signed_in? %>
<%= render partial: 'shared/flash_alerts',
locals: { flash: flash, notice: notice, alert: alert } %>
<% end %>
<%= yield %>
</div>
<% end %>
<%= render template: 'layouts/application' %>