wayver's git archive


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

templates/refs.html@a5fbdd41e56dc312103006ed0c7058b275594a83

raw
Date Commit Message Author Files + -
2026-02-19 17:51 large refactoring wayverd 53 2153 1683
...

1{% extends "base.html" %}
2
3{% block title %}{{repo|repo_name}} refs - {{config.site_name}}{% endblock %}
4
5{% block head %}
6<link rel="alternate" type="application/rss+xml" title="{{repo|repo_name}} tags" href="refs.xml">
7{% endblock %}
8
9{% block content %}
10  {% include "repo-navbar.html" %}
11  <table>
12    <tbody>
13      <tr>
14        <td><h3>Branches</h3></td>
15      </tr>
16      {% for branch in branches %}
17        <tr>
18          <td class="git-reference">
19            <a href="/{{repo|repo_name|urlencode_strict}}/log/{{branch.shorthand().unwrap()}}">{{ branch.shorthand().unwrap()
20              }}</a>
21          </td>
22        </tr>
23      {% endfor %}
24    </tbody>
25  </table>
26  <table>
27    <tbody>
28      <tr>
29        <td><h3>Tags</h3></td>
30        <td><a href="/{{repo|repo_name|urlencode_strict}}/refs.xml" class="feed">[rss]</a></td>
31      </tr>
32    </tbody>
33  </table>
34  <table>
35    <tbody>
36      {% for tag in tags %}
37        <tr>
38          <td class="git-reference">
39            <a href="/{{repo|repo_name|urlencode_strict}}/{{tag.link}}">{{tag.tag}}</a>
40          </td>
41          <td>
42            {{tag.signature|ref|signature_email_link|safe}}
43          </td>
44          <td>
45            {{tag.signature.when()|format_datetime("%Y-%m-%d")}}
46          </td>
47        </tr>
48      {% endfor %}
49    </tbody>
50  </table>
51{% endblock %}