{% 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}} / {{h.really_unicode(blob.filename)}} @{{h.text.truncate(blob._commit._id, 10)}} {% endblock %} {% block header %} @{{h.text.truncate(blob._commit._id, 10)}}: {{lib.path_links(blob.path().split('/')[1:-1])}} {{h.really_unicode(blob.filename)}} {% endblock %} {% block content %} {% if prev %} Parent(s): {% for b in prev %} {{h.text.truncate(b._commit._id, 10)}} (diff) {% endfor %}
{% endif %} {% if next %} Child(ren): {% for b in next %} {{h.text.truncate(b._commit._id, 10)}} (diff) {% endfor %}
{% endif %} {% if blob.has_image_view %}{% endif %} {% if not blob.has_html_view and not blob.has_image_view and not force_display %} {{h.really_unicode(blob.filename)}} is not known to be viewable in your browser. Try to display it anyway or download it instead. {% endif %} {% if blob.has_html_view and not blob.has_image_view or force_display %} Download this file

{{h.really_unicode(blob.filename)}}

{{g.highlight(blob.text, filename=blob.filename)}}
{% endif %} {% endblock %}