You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
619 B
12 lines
619 B
<% if @current_user.present? %> |
|
<nav class="navbar navbar-light bg-light flex-column align-items-stretch p-3 sidenav"> |
|
<nav class="nav nav-pills flex-column"> |
|
<a class="nav-link" href="<%= root_path %>"> Home </a> |
|
<a class="nav-link" href="#"> Search </a> |
|
<a class="nav-link" href="<%= decisions_path %>"> Desicions </a> |
|
<a class="nav-link" href="<%= case_doctrines_path %>"> Case Doctrines </a> |
|
<a class="nav-link" href="<%= subject_indexes_path %>"> Subject Indexes </a> |
|
<a class="nav-link" href="<%= destroy_user_session_path %>"> Log Out </a> |
|
</nav> |
|
</nav> |
|
<% end %>
|
|
|