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-tree.html

View raw Download
text/html • 1.54 kiB
HTML document, ASCII text
        
            
1
{% extends "repo.html" %}
2
{% block title %}
3
Tree of {{ username }}/{{ repository }}
4
{% endblock %}
5
{% block content %}
6
<x-vbox>
7
<x-frame style="--width: 896px;" class="flexible-space">
8
<article class="card">
9
<section class="card-main">
10
<x-vbox>
11
<x-buttonbox>
12
{% include "path-bar.html" %}
13
<button onclick="history.back();" class="button-flat big-button">
14
<iconify-icon icon="mdi:arrow-left"></iconify-icon>
15
</button>
16
<button onclick="history.forward();" class="button-flat big-button">
17
<iconify-icon icon="mdi:arrow-right"></iconify-icon>
18
</button>
19
<a href="../" class="button button-flat big-button">
20
<iconify-icon icon="mdi:arrow-up"></iconify-icon>
21
</a>
22
<a href="/{{ username }}/{{ repository }}/tree/{{ current }}/" class="button button-flat big-button">
23
<iconify-icon icon="mdi:home"></iconify-icon>
24
</a>
25
<a href="" class="button button-flat big-button">
26
<iconify-icon icon="mdi:refresh"></iconify-icon>
27
</a>
28
</x-buttonbox>
29
{% include "tree-view.html" %}
30
</x-vbox>
31
</section>
32
</article>
33
</x-frame>
34
</x-vbox>
35
{% endblock %}