website/templates/main/usersList.html.ep

12 lines
324 B
Plaintext

% title 'UNIX.dog Users';
% layout 'default';
<article>
<h1>Users</h1>
<p>Here's a list of all UNIX.dog users and their webpages:</p>
<ul>
<% foreach my $username (@{$users}) { %>
<li><a href="https://unix.dog/~<%=$username%>/">~<%= $username %></a></li>
<% } %>
</ul>
</article>