summaryrefslogtreecommitdiff
path: root/app/views/application/_header.html.erb
blob: 38bfcf4d024ea3ffe051b06a91174122108e1729 (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
<header class="flex flex-shrink items-center justify-between px-4 py-1 bg-gray-800 text-display">
  <div class="header-title text-2xl">
    <%= link_to "Esoterra", home_index_path, class: "no-underline" %>
  </div>
  <div id="header_center" data-turbolinks-permanent>
  </div>
  <div>
    <ul class="flex flex-row text-sm">
      <% if user_signed_in? %>
        <li class="mr-3">
          <%= link_to "Activities", activities_path %>
        </li>
        <li class="mr-3">
          <%= link_to "Items", items_path %>
        </li>
        <li class="mr-3">
          <%= link_to "Leaderboard", leaderboard_path %>
        </li>
        <li class="mr-3">
          <%= link_to "Logout", logout_path %>
        </li>
      <% else %>
        <li class="mr-3">
          <%= link_to "Login", login_path %>
        </li>
      <% end %>
    </ul>
  </div>
</header>