wayver's git archive


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

templates/repo.html@375565f690b958e08f589a7fee998ad5f47a70d0

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

1{% extends "base.html" %}
2
3{% block title %}{{repo|repo_name}} - {{crate::config().site_name}}{% endblock %}
4
5{% block content %}
6  {% include "repo-navbar.html" %}
7  <table id="log">
8    <thead>
9      <tr>
10        <th class="commit-date">Date</th>
11        <th class="commit-summary">Commit Message</th>
12        <th class="commit-author-email">Author</th>
13        <th class="commit-files-modified">Files</th>
14        <th class="commit-lines-added">+</th>
15        <th class="commit-lines-removed">-</th>
16      </tr>
17    </thead>
18    <tbody>
19      {% for commit in commits %}
20      {% include "commit-tr.html" %}
21      {% endfor %}
22      <tr>
23        <td colspan="6"><a href="/{{repo|repo_name|urlencode_strict}}/log/">...</a></td>
24      </tr>
25    </tbody>
26  </table>
27  <hr />
28  <div class="readme">
29    {% if !readme_text.is_empty() -%}
30      {{ readme_text|safe }}
31    {% else -%}
32      <em>(no README)</em>
33    {%- endif %}
34  </div>
35{% endblock %}