diff --git a/app/views/icons/_exclamation_circle.html.erb b/app/views/icons/_exclamation_circle.html.erb new file mode 100644 index 00000000..4de7318f --- /dev/null +++ b/app/views/icons/_exclamation_circle.html.erb @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index b364bacd..f94ae9e6 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -14,7 +14,7 @@ <%= render 'shared/navbar' %> - <% if flash.present? %><% render 'shared/flash' %><% end %> + <% if flash.present? %><%= render 'shared/flash' %><% end %>
<%= yield %>
diff --git a/app/views/layouts/plain.html.erb b/app/views/layouts/plain.html.erb index dc2bd1cc..dce433c8 100644 --- a/app/views/layouts/plain.html.erb +++ b/app/views/layouts/plain.html.erb @@ -10,7 +10,7 @@ <%= stylesheet_pack_tag 'application', media: 'all' %> - <% if flash.present? %><% render 'shared/flash' %><% end %> + <% if flash.present? %><%= render 'shared/flash' %><% end %> <%= yield %> diff --git a/app/views/shared/_flash.html.erb b/app/views/shared/_flash.html.erb index 929441c0..35c7e994 100644 --- a/app/views/shared/_flash.html.erb +++ b/app/views/shared/_flash.html.erb @@ -1,11 +1,15 @@