Files
runosaari.net/lib/runosaari_web/templates/performer/index.html.eex
2021-06-02 19:31:28 +03:00

16 lines
491 B
Elixir

<section class="main">
<h1 id="performers-start">Esiintyjät</h1>
<%= if length(@performers) == 0 do %>
<i>Lisätietoja tulossa myöhemmin!</i>
<% end %>
<div class="performers-container">
<%= for performer <- @performers do %>
<div class="performer-name">
<span class="fa fa-chevron-right" ></span>
<%= link "#{performer.name}", to: "#{Routes.performer_path(@conn, :show, performer)}#performer-start" %>
</div>
<% end %>
</div>
</section>