diff options
author | Tomer Kimia <tkimia@purdue.edu> | 2014-02-25 17:33:25 -0500 |
---|---|---|
committer | Tomer Kimia <tkimia@purdue.edu> | 2014-02-25 17:33:25 -0500 |
commit | 21cc8930b7821075fce8bbcb3f68dcd8fe081ff0 (patch) | |
tree | 917555e80422bbad1f94d9797ba1fd81b44d344c /app | |
parent | 1b0022eca5cfbab8bfee72030d45443bf9d44af7 (diff) |
Search bar and footer html.
Diffstat (limited to 'app')
-rw-r--r-- | app/views/layouts/application.html.erb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index cefd1be..e2b8e02 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -7,8 +7,19 @@ <%= csrf_meta_tags %> </head> <body> +<header> + <h1 id="logo"> Leaguer </h1> + <%= form_tag("/search", method: "get", :id => "search-bar") do %> + <%= text_field_tag(:query, nil, :placeholder => "Search") %> + <%= submit_tag("Go") %> + <% end %> +</header> <%= yield %> +<footer > +<p> Tomer Kimia Andrew Murrell Luke Shumaker Nathaniel Foy Davis Webb Guntas Grewal </p> +<p> The Leaguer System © <%= Time.now.year %> </p> </footer> + </body> </html> |