at 22e2605
{% extends "base.html" %} {% block head %} <title>{{ project_name }} — {{ filename }}</title> {% endblock %} {% block header %} <a href="{{ root_path }}" class="site-title">{{ project_name }}</a> <nav> <a href="{{ root_path }}{{ git_ui_path }}index.html">Log</a> <a href="{{ root_path }}{{ git_ui_path }}refs.html">Refs</a> </nav> {% endblock %} {% block body %} <main> <nav class="breadcrumb"> {% for crumb in breadcrumbs %} {% if not loop.last %}<span class="breadcrumb-sep">/</span>{% endif %} {% if crumb.url %}<a href="{{ crumb.url }}">{{ crumb.name | escape }}</a>{% else %}<span>{{ crumb.name | escape }}</span>{% endif %} {% endfor %} </nav> <p class="tree-rev">at <a class="hash" href="{{ commit_url }}">{{ commit_hash_short }}</a></p> {% if is_binary %} <p class="blob-notice">Binary file ({{ size }} bytes)</p> {% elif too_large %} <p class="blob-notice">File too large to display ({{ size }} bytes)</p> {% elif content_html %} <div class="blob-content">{{ content_html | safe }}</div> {% else %} <p class="blob-notice">Empty file</p> {% endif %} </main> {% endblock %}