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

View raw Download
text/html • 2.01 kiB
HTML document, ASCII text
        
            
1
{% extends "repo.html" %}
2
{% set active_page = "tree" %}
3
4
{% block title %}
5
{% trans basename=basename, username=username, repository=repository %}{{ basename }} in {{ 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
<x-buttonbox>
16
<button onclick="history.back();" class="button-flat big-button" aria-label="{% trans %}Back{% endtrans %}">
17
<iconify-icon icon="mdi:arrow-left"></iconify-icon>
18
</button>
19
<button onclick="history.forward();" class="button-flat big-button" aria-label="{% trans %}Forwards{% endtrans %}">
20
<iconify-icon icon="mdi:arrow-right"></iconify-icon>
21
</button>
22
<a href="./" class="button button-flat big-button" aria-label="{% trans %}Up{% endtrans %}">
23
<iconify-icon icon="mdi:arrow-up"></iconify-icon>
24
</a>
25
<a href="/{{ username }}/{{ repository }}/tree/{{ current }}/" class="button button-flat big-button" aria-label="{% trans %}Home{% endtrans %}">
26
<iconify-icon icon="mdi:home"></iconify-icon>
27
</a>
28
<a href="" class="button button-flat big-button" aria-label="{% trans %}Refresh{% endtrans %}">
29
<iconify-icon icon="mdi:refresh"></iconify-icon>
30
</a>
31
</x-buttonbox>
32
</x-buttonbox>
33
{% include "file-view.html" %}
34
</x-vbox>
35
</section>
36
</article>
37
</x-frame>
38
</x-vbox>
39
{% endblock %}
40