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