diff options
Diffstat (limited to 'app/views/application/_header.html.erb')
-rw-r--r-- | app/views/application/_header.html.erb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/views/application/_header.html.erb b/app/views/application/_header.html.erb new file mode 100644 index 0000000..b2b2cf8 --- /dev/null +++ b/app/views/application/_header.html.erb @@ -0,0 +1,25 @@ +<header class="flex 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> |