wayver's git archive


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

templates/index.html@71b17dd92232913d023854951d629e9876076719

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

1{% extends "base.html" %}
2
3{% block content %}
4  <div>
5    {% for repo in repos %}
6      <table class="repo">
7        <tbody>
8          <tr>
9            <td class="repo-link"><a href="{{repo|repo_name|urlencode_strict}}">{{repo|repo_name}}</a></td>
10            <td class="repo-last-updated">last updated {{repo|last_modified|format_datetime("%Y-%m-%d")}}</td>
11          </tr>
12          <tr>
13            <td class="repo-description" colspan="2">{{repo|description}}</td>
14          </tr>
15        </tbody>
16      </table>
17    {% endfor %}
18  </div>
19{% endblock %}