RSS Git Download  Clone
Raw View History
Blames found: 9 Mode: twig Binary: false


Hang on, we reloading big blames...
{% extends 'layout.twig' %}
{% block title %}GitList{% endblock %}
{% block body %} {% include 'navigation.twig' %} <div class="container"> <div class="row"> <div class="span12"> {% include 'menu.twig' %} </div> </div>
{% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Blame', path:''}]} %}
<div class="source-view"> <div class="source-header"> <div class="meta">{{ file }}</div> </div> <table class="blame-view">
{% for blame in blames %}
<tr>
<td class="commit"><a href="{{ path('commit', {repo: repo, commit: blame.commit}) }}">{{ blame.commit }}</a></td>
<td><pre>{{ blame.line }}</pre></td> </tr> {% endfor %} </table> </div> <hr> {% include 'footer.twig' %} </div> {% endblock %}