diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/layouts/application.html.erb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index de9f3b8..e6b5b25 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -38,11 +38,14 @@ <% if notice %><div id="notice"><p><%= notice %></p></div><% end %> -<div class="container"><%= yield %></div> +<div class="wrapper"> + <%= yield %> +</div> <footer> <p>Leaguer © 2014, Tomer Kimia, Andrew Murrell, Luke Shumaker, Nathaniel Foy, Davis Webb, and Guntas Grewal</p> + <%= debug(params) if Rails.env.development? %> </footer> -<%= debug(params) if Rails.env.development? %> + </body> </html> |