{% extends 'repo/repo_master.html' %}
{% do g.register_forge_css('css/forge/hilite.css') %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}}
/ {{commit.shorthand_id()}} {{path}}
{% endblock %}
{% block header %}
{{commit.shorthand_id()}} /
{{lib.path_links(path.split('/')[1:-1])}}
{% endblock %}
{% block actions %}
History
{% endblock %}
{% block content %}
{{ clone_info(c.app.repo) }}
{{c.tree_widget.display(repo=repo, commit=commit, tree=tree, path=path)}}
{% set name, text = tree.readme() %}
{% if name %}
{{g.pypeline_markup.render(name, text)|safe}}{% endif %} {% endblock %}