{% extends 'layout_page.twig' %} {% set page = 'commits' %} {% block title %}GitList{% endblock %} {% block content %} {% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Commit history', path:''}]} %} {% for date, commit in commits %} {% for item in commit %} {% endfor %}
{{ date | date("F j, Y") }}
View {{ item.getShortHash }}

{{ item.getMessage }}

{{ item.getAuthor.getName }} authored in {{ item.getDate | date('d/m/Y \\a\\t H:i:s') }}
{% endfor %}
{% endblock %}