git.fiddlerwoaroof.com
twig/blame.twig
ffc9d555
 {% extends 'layout_page.twig' %}
 
 {% set page = 'commits' %}
 
 {% block title %}GitList{% endblock %}
 
 {% block content %}
6933b58c
   {% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Blame', path:''}]} %}
ffc9d555
 
6933b58c
   <div class="source-view">
     <div class="source-header">
       <div class="meta">{{ file }}</div>
ffc9d555
     </div>
6933b58c
     <table class="blame-view">
       {% for blame in blames %}
         <tr>
           <td class="commit"><a href="{{ path('commit', {repo: repo, commit: blame.commit}) }}">{{ blame.commitShort }}</a></td>
           <td><pre>{{ blame.line }}</pre></td>
         </tr>
       {% endfor %}
     </table>
   </div>
ffc9d555
 {% endblock %}