summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
blob: af26e29940409ae3c575fb1a1e72c0e3d1e0d4cd (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
	<title>Leaguer</title>

	<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
	<%= stylesheet_link_tag "#{params[:controller]}", media: "all", "data-turbolinks-track" => true %>

	<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
	<%= javascript_include_tag "#{params[:controller]}", "data-turbolinks-track" => true %>
	<%= javascript_include_tag "#{params[:controller]}/#{params[:action]}", "data-turbolinks-track" => true %>

	<%= csrf_meta_tags %>
	<%= yield :head %>
</head>
<body>
<header>
	<nav>
	<%# This is the logo %>
	<div class="navbar-brand"><%= link_to('Leaguer', root_path) %></div>

	<%# This is the search bar  #%>
	<div>
		<%= form_tag("/search", method: "get", :class => "search") do %>
			<%= text_field_tag(:query, params[:query], type: "search") %>
			<%= submit_tag("Search", :name=>nil) %>
		<% end %>
	</div>

	<%# these are the log in buttons #%>
	<div id="log-buttons">
		<% if signed_in? %>
			<%= link_to current_user.user_name, current_user, :class => "user" %>
			<%= link_to "Messages", pms_path, :class => "signup" %>
			<% if current_user.can? :edit_server %>
				<%= link_to "Server settings", edit_server_path, :class => "server" %>
			<% end %>
			<% if current_user.can? :create_alert %>
				<%= link_to "Create Alert", new_alert_path, :class => "create-alert" %>
			<% end %>
			<%= link_to "Sign out", session_path("current"), method: "delete", :class => "signout" %>
			<%# if there is an unread alert then I wanna be able to show the notification icon by saying :style => display:inline. This will be Done by Guntas once he figures out how to get unread alerts. Psuedo if alerts.unread > 0 then display else don't.%>
			<%= link_to "", alerts_path, :class => "alerts", :id => "alerts-ajax"%>
		<% else %>
			<%= link_to "Log in", new_session_path, :class => "signin" %>
			<%= link_to "Sign up", new_user_path, :class => "signup" %>
		<% end %>
	</div>
	</nav>
</header>

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

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

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

</body>
</html>