feature/share-libs
erb 23 lines 786 Bytes
Raw
1 <aside>
2 <h2 class="mb-4"><%= t("top_10_artists") %></h2>
3 <% @trending_artists.each_with_index do |artist, index| %>
4 <div class="row mb-4">
5 <div class="col-4">
6 <%= image_pack_tag(
7 "image-placeholder-#{rand(0...3)}.jpg",
8 alt:"#{artist.name} image",
9 class: "img-thumbnail rounded-circle "
10 )
11 %>
12 </div>
13 <div class="col-8 fs-6">
14 <h3 class="fs-6 mt-2 mb-3">
15 <%= "#{index + 1}." %>
16 <%= link_to artist.name, artist_detail_path(artist.slug) %>
17 </h3>
18 <i class="bi bi-graph-up-arrow"></i>
19 <span class="badge rounded-pill bg-warning text-dark"><%= artist.views_count %></span>
20 </div>
21 </div>
22 <% end %>
23 </aside>