summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
blob: e2b8e020ffc88c37c953dc8987b67834e5b0ef2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
  <title>Leaguer</title>
  <%= stylesheet_link_tag    "application", media: "all", "data-turbolinks-track" => true %>
  <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
  <%= 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 &#169; <%= Time.now.year %> </p> </footer>

</body>
</html>