RSS Git Download  Clone
Raw View History
Blames found: 11 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"> {% for repository in repositories %} <div class="repository"> <div class="repository-header">
<i class="icon-folder-open icon-spaced"></i> <a href="{{ path('repository', {repo: repository.name}) }}">{{ repository.name }}</a> <a href="{{ path('rss', {repo: repository.name, branch: 'master'}) }}"><i class="rss pull-right"></i></a>
</div> <div class="repository-body">
{% if repository.description %}
<p>{{ repository.description }}</p>
{% else %} <p>There is no repository description file. Please, create one to remove this message.</p> {% endif %}
</div> </div> {% endfor %}
<hr />
{% include 'footer.twig' %} </div> {% endblock %}