summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
blob: e13a8dff0b9ae584c13e328c6b643fc0f94438e4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!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 %>
  <%= yield :head %>
</head>
<body>
<header><nav>
	<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 %>
	</div>

	<div id="log-buttons">
		<% if signed_in? %>
			<%= current_user.user_name.upcase %>
			<%= link_to "Sign out", session_path("/signout"), method: "delete", :class => "signout", :role => "button" %>
		<% else %>
			<%= link_to "Log in", new_session_path, :class => "signin", :role => "button" %>
			<%= link_to "Sign up", new_user_path, :class => "signup", :role => "button" 
				%>
		<% end %>
	</div>
</nav></header>

<% if notice %><div id="notice"><p><%= notice %></p></div><% end %>

<div class="container"><%= yield %></div>

<hr>
<footer id="footer">
	<p>Leaguer is copyright &copy; 2014, Tomer Kimia, Andrew Murrell, Luke Shumaker, Nathaniel Foy, Davis Webb, and Guntas Grewal</p>
</footer>
<%= debug(params) if Rails.env.development? %>
</body>
</html>