1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/app/views/layouts/_header.html.erb
Jacob Cody Wimer e27c29d313 Fixed Layouts
2014-01-03 11:03:08 -05:00

19 lines
668 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>
<li><%= link_to "School Scores", '/static_pages/school' %></li>
<li><%= link_to "Brackets" , '#' %></li>
<li><%= link_to "Bout Board" , '#' %></li>
<% #If logged in %>
<li><%= link_to "Admin" , '/admin/index' %></li>
<% #ELSE %>
<li><%= link_to "Log In" , '#' %></li>
</ul>
</nav>
</div>
</div>
</header>