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

10 lines
326 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
2019-12-05 05:53:56 +01:00
= link "View all", to: Routes.gallery_path(@conn, :index, gallery: [creator: @user.name])
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