diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-04 11:38:21 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-04 11:38:21 -0500 |
commit | 42c241f0d533e243a01560d28e8cd7e3b90a6165 (patch) | |
tree | 567813c942a96a2f10c10e7662db37c5c4f6751a /app/views/layouts | |
parent | 1d90f33bf07f9610d358c6c9c56754784b050541 (diff) |
indent application.html.erb
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/application.html.erb | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index f12c778..0362062 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -10,14 +10,12 @@ <body> <div role="navigation" class="navbar navbar-inverse"> <header> - <div class="navbar-brand no-dec"> - <%= link_to('Leaguer', '/', nil) %> - </div> + <div class="navbar-brand no-dec"><%= link_to('Leaguer', root_path, nil) %></div> <div> - <%= form_tag("/search", method: "get", :class => "navbar-form navbar-right") do %> - <%= text_field_tag(:query, nil, :placeholder => "Search") %> - <%= submit_tag("Go", {:class => "btn btn-warning"}) %> - <% end %> + <%= form_tag("/search", method: "get", :class => "navbar-form navbar-right") do %> + <%= text_field_tag(:query, nil, :placeholder => "Search") %> + <%= submit_tag("Go", {:class => "btn btn-warning"}) %> + <% end %> </div> <ul> <% if signed_in? %> @@ -29,15 +27,14 @@ <% end %> </ul> </header> - </div> - -<div class="container"> -<%= yield %> </div> + +<div class="container"><%= yield %></div> + <hr> <footer id="footer"> -<p> Tomer Kimia Andrew Murrell Luke Shumaker Nathaniel Foy Davis Webb Guntas Grewal </p> -<p> The Leaguer System © <%= Time.now.year %> </p> </footer> - <%= debug(params) if Rails.env.development? %> + <p>Leaguer is copyright © 2014, Tomer Kimia, Andrew Murrell, Luke Shumaker, Nathaniel Foy, Davis Webb, and Guntas Grewal</p> +</footer> +<%= debug(params) if Rails.env.development? %> </body> </html> |