-
- <%= link to: Routes.page_path(CanneryWeb.Endpoint, :index) do %>
-
Cannery
- <% end %>
-
- <%= if @title_content do %>
- |
- <%= @title_content %>
- <% end %>
-
-
-
-
- <%# user settings %>
- <%= if @current_user do %>
-
- <%= link @current_user.email, class: "hover:underline",
- to: Routes.user_settings_path(CanneryWeb.Endpoint, :edit) %>
-
-
- <%= link to: Routes.user_session_path(CanneryWeb.Endpoint, :delete), method: :delete do %>
-
- <% end %>
-
-
- <%= if function_exported?(Routes, :live_dashboard_path, 2) do %>
-
- <%= link "LiveDashboard", class: "hover:underline",
- to: Routes.live_dashboard_path(CanneryWeb.Endpoint, :home) %>
-
- <% end %>
- <% else %>
-
- <%= link "Register", class: "hover:underline",
- to: Routes.user_registration_path(CanneryWeb.Endpoint, :new) %>
-
-
- <%= link "Log in", class: "hover:underline",
- to: Routes.user_session_path(CanneryWeb.Endpoint, :new) %>
-
- <% end %>
-
-
-