gitprep / templates / main / home.html.ep /
2ad0cd3 11 years ago
2 contributor
14 lines | 0.373kb
% layout 'common';
  %= include '/include/header', title => 'Gitprep';
  <table class="project_list">
    <th>User</th>
    % my $toggle = 0;
    % for my $user (@$users) {
      <tr class="<%= $toggle++ ? 'light' : 'dark' %>">
        <td>
          <a class="list" href="<%= url_for("/$user") %>">
            <%= $user %>
          </a>
        </td>
    % }
  </table>