16 lines
491 B
Elixir
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>
|