Initial import

This commit is contained in:
Lucas Gabriel Vuotto 2025-04-26 09:41:50 +00:00
commit dd492db92e
37 changed files with 1953 additions and 0 deletions

13
templates/gallery.html.ep Normal file
View file

@ -0,0 +1,13 @@
% layout "main";
<%= tag("h1", title) if title %>
<div class="layout-flex-row gallery">
% for my $m ($media->@*) {
<%= link_to $m->{show_media_url} => begin %>
<%= image $m->{media_src} %>
<%= end %>
% }
</div>
%= include "_pager";