PoorBooru/templates/tags.html.ep

11 lines
182 B
Plaintext

% layout "main";
<h1><%= title %></h1>
<p class="text-center">
% for my $t ($tags->@*) {
<%= link_to $t->{name} => $t->{uri} %>(<%= $t->{count} %>)
% }
</p>
%= include "_pager";