{% extends "layout.html" %} {% block title %}blame · {{ path }} · {{ owner.username }}/{{ repo.name }} — kitgit{% endblock %} {% block content %}

{{ owner.username }}/{{ repo.name }} · blame

{% let tab = "code" %} {% let archive_ref = branch %} {% include "partials/repo_tabs.html" %}

{{ branch }} {% for (name, full) in breadcrumbs %} / {% if loop.last %} {{ name }} {% else %} {{ name }} {% endif %} {% endfor %}

{{ path }}
{% if binary %}

Binary file — blame is not available.

{% else if lines.is_empty() %}

Empty file.

{% else %}
Commit # Line
{% for line in lines %}
{% if line.hunk_start && !line.commit_id.is_empty() %} {{ line.short_id }} {{ line.author }} {{ line.time_display }} {% endif %}
{{ line.line_no }}
{{ line.content }}
{% endfor %}
{% endif %}
{% endblock %}