philomena/lib/philomena_web/templates/profile/_recent_galleries.html.slime
2023-02-19 20:59:58 +01:00

9 lines
362 B
Text

= if Enum.any?(@galleries) do
.block
.block__header
span.block__header__title Recent Galleries
= link "View all", to: Routes.gallery_path(@conn, :index, gallery: [creator: @user.name])
.block__content.media-list
= for gallery <- @galleries do
= render PhilomenaWeb.GalleryView, "_gallery.html", gallery: gallery, conn: @conn