wayver's git archive


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

templates/log.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}} log at {{branch}} - {{crate::config().site_name}}{% endblock %}
4
5{% block head %}
6<link rel="alternate" type="application/rss+xml" title="{{repo|repo_name}} {{branch}} commits" href="log.xml">
7{% endblock %}
8
9{% block content %}
10  {% include "repo-navbar.html" %}
11  <table>
12    <tbody>
13      <tr>
14        <td><h3>{{branch}}</h3></td>
15        <td><a href="/{{repo|repo_name|urlencode_strict}}/log.xml" class="feed">[rss]</a></td>
16      </tr>
17    </tbody>
18  </table>
19  {% if next_page.is_some() %}
20    <a href="{{next_page.as_ref().unwrap()}}">older commits &rarr;</a>
21  {% endif %}
22  <hr>
23  <table id="log">
24    <thead>
25      <tr>
26        <th class="commit-date">Date</th>
27        <th class="commit-summary">Commit Message</th>
28        <th class="commit-author-email">Author</th>
29        <th class="commit-files-modified">Files</th>
30        <th class="commit-lines-added">+</th>
31        <th class="commit-lines-removed">-</th>
32      </tr>
33    </thead>
34    <tbody>
35      {% for commit in commits %}
36      {% include "commit-tr.html" %}
37      {% endfor %}
38    </tbody>
39  </table>
40  {% if next_page.is_some() %}
41    <a href="{{next_page.as_ref().unwrap()}}">older commits &rarr;</a>
42  {% endif %}
43{% endblock %}