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 • 1 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
<a href="./" class="button button-flat big-button" aria-label="{% trans %}Go to directory{% endtrans %}">
17
<iconify-icon icon="mdi:arrow-up"></iconify-icon>
18
</a>
19
</x-buttonbox>
20
</x-buttonbox>
21
{% include "file-view.html" %}
22
</x-vbox>
23
</section>
24
</article>
25
</x-frame>
26
</x-vbox>
27
{% endblock %}
28