gitprep / templates / main / home.html.ep /
Newer Older
14 lines | 0.373kb
copy gitweblite soruce code
root authored on 2012-11-23
1
% layout 'common';
renamed gitpub to gitprep
Yuki Kimoto authored on 2012-11-26
2
  %= include '/include/header', title => 'Gitprep';
copy gitweblite soruce code
root authored on 2012-11-23
3
  <table class="project_list">
Dipslay users in home page
Yuki Kimoto authored on 2012-11-23
4
    <th>User</th>
copy gitweblite soruce code
root authored on 2012-11-23
5
    % my $toggle = 0;
Dipslay users in home page
Yuki Kimoto authored on 2012-11-23
6
    % for my $user (@$users) {
copy gitweblite soruce code
root authored on 2012-11-23
7
      <tr class="<%= $toggle++ ? 'light' : 'dark' %>">
8
        <td>
Fixed repositories page
Yuki Kimoto authored on 2012-11-23
9
          <a class="list" href="<%= url_for("/$user") %>">
Dipslay users in home page
Yuki Kimoto authored on 2012-11-23
10
            <%= $user %>
copy gitweblite soruce code
root authored on 2012-11-23
11
          </a>
12
        </td>
13
    % }
14
  </table>