philomena/lib/philomena_web/templates/profile/_recent_galleries.html.slime

10 lines
310 B
Text
Raw Normal View History

2019-12-05 05:53:56 +01:00
= if Enum.any?(@galleries) do
.block
.block__header
2023-11-23 17:07:49 +01:00
span Recent Galleries
2024-06-06 22:28:35 +02:00
= link "View all", to: ~p"/galleries?#{[gallery: [creator: @user.name]]}"
2019-12-05 05:53:56 +01:00
2023-11-23 17:07:49 +01:00
.media-list
2019-12-05 05:53:56 +01:00
= for gallery <- @galleries do
2023-11-23 17:07:49 +01:00
= render PhilomenaWeb.GalleryView, "_gallery.html", gallery: gallery, conn: @conn