PoorBooru/templates/tags.html.ep

11 lines
182 B
Plaintext
Raw Permalink Normal View History

% layout "main";
<h1><%= title %></h1>
<p class="text-center">
2023-03-21 22:43:36 +01:00
% for my $t ($tags->@*) {
<%= link_to $t->{name} => $t->{uri} %>(<%= $t->{count} %>)
% }
</p>
%= include "_pager";