{% extends 'jinja_master/master.html' %} {% do g.register_forge_css('css/forge/hilite.css') %} {% block title %} {{c.project.name}} / {{c.app.config.options.mount_label}} {% if tree %} / @{{h.text.truncate(tree._commit._id, 10)}}: {{lib.path_links(tree.path().split('/')[1:-1])}} {% endif %} {% endblock %} {% block header %} {% if tree %} @{{h.text.truncate(tree._commit._id, 10)}}: {{lib.path_links(tree.path().split('/')[1:-1])}} {% else %} No files {% endif %} {% endblock %} {% block content %} {% if tree %} {% if c.app.repo %}

Read access: git clone git://{{c.app.repo.scm_url_path}} {{c.project.name}}
Read/write access: git clone ssh://{{c.user == c.user.anonymous() and 'USERNAME' or c.user.username}}@{{c.app.repo.scm_url_path}} {{c.project.name}}
{% if c.user != c.user.anonymous() %}

{% endif %}

{% endif %}
{% if tree.readme() %}

Read Me

{{g.markdown.convert(tree.readme())|safe}}
{% endif %} {{c.tree_widget.display(tree=tree)}} {% endif %} {% endblock %}