blob: 2a8e69871006307170cdef3cc73e9bb52c53d6ff (
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
|
<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-reverse text-sm">
<% if user_signed_in? %>
<li class="mr-3">
<%= link_to "Logout", logout_path %>
</li>
<% else %>
<li class="mr-3">
<%= link_to "Login", login_path %>
</li>
<% end %>
<% if user_signed_in? %>
<li class="mr-3">
<%= link_to "Characters", "#" %>
</li>
<% end %>
</ul>
</div>
</header>
|