{% extends 'base.html.twig' %} {% block header %} {% include 'page-header.html.twig' with { repository: repository, baseRef: repository.defaultBranch, current: 'code' } %} {% endblock %} {% block search %} {% include 'search.html.twig' with { repository: repository, commitish: tree.hash } %} {% endblock %} {% block body %}

{{ repository.description }}

{% include 'reflist.html.twig' with { ref: tree.hash, refPath: '', path: 'repository_tree', repository: repository } %}
{{ lastCommit.author.name }} {{ lastCommit.author.name }} {{ lastCommit.subject }} {{ lastCommit.shortHash }} @ {{ lastCommit.commitedAt|date(commit_date_format) }}
{% if tree.name %} {% if tree_show_file_size %} {% endif %} {% if tree_show_last_commit %} {% endif %} {% endif %} {% for object in tree.children|onlyTrees %} {% if tree_show_file_size %} {% endif %} {% if tree_show_last_commit %} {% endif %} {% endfor %} {% for object in tree.children|onlyFiles %} {% if tree_show_file_size %} {% endif %} {% if tree_show_last_commit %} {% endif %} {% endfor %}
..
{{ object.fileName }} {% if object.firstParent.isCommit %} {{ object.firstParent.subject }} {% endif %} {% if object.firstParent %} {{ object.firstParent.commitedAt|date(commit_date_format) }} {% endif %}
{{ object.fileName }} {{ object.size|formatFileSize }} {% if object.firstParent.isCommit %} {{ object.firstParent.subject }} {% endif %} {% if object.firstParent.isCommit %} {{ object.firstParent.commitedAt|date(commit_date_format) }} {% endif %}
{% if readme %}
{{ readme.name }}
{{ readme.contents|markdown|raw }}
{% endif %} {% endblock %}