Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}{{ repo }}/{{ path }}{% endblock %} 4{% block og_title %}{{ repo }}/{{ path }}{% endblock %} 5{% block og_description %}browsing {{ path }} in {{ repo }}{% endblock %} 6 7{% block breadcrumbs %} 8 9 {{ site.site_name }} 10 {{ repo }} 11 {{ sha[..8] }} 12 {% for crumb in breadcrumbs %} 13 {% if loop.last %}{{ crumb.label }}{% else %}{{ crumb.label }}{% endif %} 14 {% endfor %} 15 16{% endblock %} 17 18{% block content %} 19{% if is_file %} 20 21 22 23 Parent 24 [>] 25 26 27 28 29 Raw 30 [>] 31 32 33 34 Blame 35 [>] 36 37 38 39 {{ content_html|safe }} 40 41 42{% else %} 43 44 {% if path.is_empty() %} 45 {% else %} 46 47 48 .. 49 - 50 51 {% endif %} 52 {% if entries.is_empty() %} 53 Empty directory. 54 {% else %} 55 {% for entry in entries %} 56 57 58 {% if entry.is_dir %}{{ entry.name }}/{% else %}{{ entry.name }}{% endif %} 59 {% if entry.is_dir %}-{% else %}{{ entry.size }}{% endif %} 60 61 {% endfor %} 62 {% endif %} 63 64{% endif %} 65{% endblock %} 66 67{% block scripts %} 68{% if is_file %} 69 70 73{% endif %} 74{% endblock %}