wayver's git archive


a simple self-hosted git server
git clone https://git.wayver.dev/bile

templates/last-commit.html@71b17dd92232913d023854951d629e9876076719

raw
Date Commit Message Author Files + -
2026-02-17 21:07 initial mvp wayverd 74 10800 0
...

1<hr/>
2<table id="log">
3  <thead>
4    <tr>
5      <th class="commit-date">Date</th>
6      <th class="commit-summary">Commit Message</th>
7      <th class="commit-author-email">Author</th>
8      <th class="commit-files-modified">Files</th>
9      <th class="commit-lines-added">+</th>
10      <th class="commit-lines-removed">-</th>
11    </tr>
12  </thead>
13  <tbody>
14    {% let commit = last_commit.clone() %}
15    {% include "commit-tr.html" %}
16    <tr>
17      <td colspan="6"><a href="/{{repo|repo_name|urlencode_strict}}/log/{{spec}}/{{path.display()}}">...</a></td>
18    </tr>
19  </tbody>
20</table>
21<hr/>