{% extends "repo_master.html" %} {% block title %}Tree - {{ repo.name }}{% endblock %} {%block tag %}home{% endblock %} {% block repo %}

{{ branchname }}/{% for file in filename.split('/') %} {% if loop.first %} {% set path = file %} {% else %} {% set path = path + '/' + file %} {% endif %} {% if loop.index != loop.length %}{{ file }}/{% else %}{{ file }}{% endif %} {% endfor %}

{% if content %} {% if output_type == 'file' or output_type == 'binary' or output_type == 'image' %}
{% if output_type=='file' %} {% autoescape false %} {{ content | format_loc}} {% endautoescape %} {% elif output_type == 'image' %} {% elif output_type == 'binary' %}

Binary files cannot be rendered.
Please view the raw version

{% endif %}
{% else %}

Tree

{% endif %} {% else %} No content found in this repository {% endif %} {% endblock %}