Pi66

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

md/index.md

 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
30
31
32
{% set page_title = "Pixel - Git" %}
{% set page_content %}

#  **Repositories** [.!text-center .!text-2xl]

<table markdown=1 class="!mb-1">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Owner</th>
<th>Last commit</th>
</tr>
</thead>
<tbody>

{% for repo in storage.get("repos") %}
<tr>
    <td> <a href="/{{repo.name|lower}}/log.html"><strong>{{ repo.name }}</strong></a> </td>
    <td class="!text-gray-400"> {{ repo.desc }}</td>
    <td class="!text-gray-400"> {{ repo.author }}</td>
    <td class="!text-gray-400 time-ago"> {{ repo.last_commit_date }}</td>
</tr>

{% endfor%}

</tbody>
</table>

{% endset %}

{% include "base.html" %}