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