Pi66

git.pi66.xyz
A web interface for the pi66.xyz Git server
git clone https://git.pi66.xyz/git.pi66.xyz

src/templates/Index.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% set page_content %}

<h1 class="!text-center !text-3xl"><strong>Repositories</strong></h1>
<p><br></p>
<table class="!mb-1">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Owner</th>
<th>Last commit</th>
</tr>
</thead>
<tbody>
{% for repo in repos %}
<tr>
    <td> <a href="/{{repo.name|lower}}/log.html"><h1><strong>{{ repo.name }}</strong></h1></a> </td>
    <td class="!text-gray-400"> {{ repo.desc }}</td>
    <td class="!text-gray-400"> {{ repo.author }}</td>
    <td class="!text-gray-400"> {{ repo.last_commit_date }}</td>
</tr>

{% endfor%}


</tbody>
</table>
{% endset %}
{% include "base.html" %}