mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
22 lines
939 B
Plaintext
22 lines
939 B
Plaintext
<header class="navbar navbar-fixed-top navbar-inverse">
|
|
<div class="navbar-inner">
|
|
<div class="container">
|
|
<%= link_to "CCHS Wrestling", root_path, id: "logo" %>
|
|
<nav>
|
|
<ul class="nav pull-right">
|
|
<li><%= link_to "Home", root_path %></li>
|
|
<% if @tournament %>
|
|
<li><%= link_to "Brackets" , "/static_pages/weights?tournament=#{@tournament.id}" %></li>
|
|
<li><%= link_to "Upcoming Matches" , "/static_pages/up_matches?tournament=#{@tournament.id}" %></li>
|
|
<li><%= link_to "Results" , "/static_pages/results?tournament=#{@tournament.id}" %></li>
|
|
<% end %>
|
|
<% if user_signed_in? %>
|
|
<li><%= link_to "Log Out", destroy_user_session_path, method: :delete %></li>
|
|
<% else %>
|
|
<li><%= link_to "Log In" , new_user_session_path %></li>
|
|
<% end %>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header> |