PoorBooru/templates/gallery.html.ep

10 lines
192 B
Plaintext
Raw Normal View History

2023-03-05 18:23:13 +01:00
% layout "main";
<div class="flex-c-horizontal flex-c-wrap gallery">
% for my $m (@$media) {
<%= link_to $m->{media_src} => begin %>
2023-03-14 22:53:34 +01:00
<%= image $m->{media_src} %>
2023-03-05 18:23:13 +01:00
<% end %>
% }
</div>