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
|
<!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 %>
<button type="button" class="btn btn-danger" ><%= link_to "Sign out", session_path("current"), method: "delete" %></button>
<% else %>
<button type="button" class="btn btn-info" ><%= link_to "Log in", new_session_path %></button>
<button type="button" class="btn btn-success"><%= link_to "Sign up", new_user_path %></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 © 2014, Tomer Kimia, Andrew Murrell, Luke Shumaker, Nathaniel Foy, Davis Webb, and Guntas Grewal</p>
</footer>
<%= debug(params) if Rails.env.development? %>
</body>
</html>
|