improve links with routes

This commit is contained in:
Lili (Tlapka) 2021-10-11 13:01:33 +02:00
parent 308e31471a
commit baf7775b98
2 changed files with 4 additions and 4 deletions

View File

@ -14,14 +14,14 @@
<section class="container">
<nav role="navigation">
<ul>
<li><a href="http://localhost:4000/tracker">Clothes tracker</a></li>
<%= link "Clothes tracker", to: Routes.live_path(@conn, PokemonCoutureWeb.ClothesTrackerLive) %>
<%= if function_exported?(Routes, :live_dashboard_path, 2) do %>
<li><%= link "LiveDashboard", to: Routes.live_dashboard_path(@conn, :home) %></li>
<% end %>
</ul>
<%= render "_user_menu.html", assigns %>
</nav>
<a href="http://localhost:4000/" class="phx-logo"> <!-- TODO: needs a way to show the proper link -->
<a href="<%= Routes.page_path(@conn, :index) %>" class="phx-logo"> <!-- TODO: needs a way to show the proper link -->
<img src="<%= Routes.static_path(@conn, "/images/phoenix.png") %>" alt="Phoenix Framework Logo"/>
</a>
</section>

View File

@ -9,10 +9,10 @@
<h2>Navigation</h2>
<ul>
<li>
<a href="http://localhost:4000/tracker">Clothes tracker</a>
<%= link "Clothes tracker", to: Routes.live_path(@conn, PokemonCoutureWeb.ClothesTrackerLive) %>
</li>
<li>
<a href="http://localhost:4000/clothes">List of clothes</a>
<%= link "List of Clothes", to: Routes.clothes_path(@conn, :index) %>
</li>
</ul>
</article>