Added routes, display seems to work so long as you remove the forms from the views.
[feedcatcher.git] / app / views / layouts / application.html.erb
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Feedcatcher</title>
5 <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6 <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7 <%= csrf_meta_tags %>
8 </head>
9 <body>
10 <% if flash[:notice] -%>
11 <div id="notice"><%= h flash[:notice] %></div>
12 <% end -%>
13
14 <%= yield %>
15
16 </body>
17 </html>