By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 repo-log.html

View raw Download
text/html • 1.46 kiB
HTML document, ASCII text
        
            
1
{% extends "repo.html" %}
2
{% block content %}
3
<x-vbox>
4
<x-frame style="--width: 896px;" class="flexible-space">
5
<h2>Branches</h2>
6
<x-vbox>
7
{% for commit in commits %}
8
<article class="card card-horizontal">
9
<figure class="branch-icon">
10
<a href="/{{ commit.ownerName }}">
11
<img src="/info/{{ commit.ownerName }}/avatar" style="width: 48px; height: 48px;">
12
</a>
13
</figure>
14
<section class="card-main flexible-space">
15
<h3>{{ commit.message | split("\n") | first }}</h3>
16
<p>by <a href="/{{ commit.ownerName }}">{{ commit.ownerName }}</a>, <span title="{{ commit.authorDate | unixtime }}
17
received on {{ commit.receiveDate | strftime('%A, %e %B %Y, %H:%M:%S') }} ({{ commit.receiveDate | unixtime }})">{{ commit.authorDate | strftime("%A, %e %B %Y, %H:%M:%S") }}</span></p>
18
<code>{{ commit.sha }}</code>
19
</section>
20
<section>
21
<x-buttonbox style="align-items: center; height: 100%;">
22
<a class="button" href="/{{ username }}/{{ repository }}/tree/~{{ commit.sha }}">View tree</a>
23
</x-buttonbox>
24
</section>
25
</article>
26
{% endfor %}
27
</x-vbox>
28
</x-frame>
29
</x-vbox>
30
{% endblock %}