mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
26 lines
751 B
Twig
26 lines
751 B
Twig
{% 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.relativePath}) }}">{{ repository.name }}</a>
|
|
<a href="{{ path('rss', {repo: repository.relativePath, branch: repository.branch }) }}"><i class="rss pull-right"></i></a>
|
|
</div>
|
|
<div class="repository-body">
|
|
<p>{{ repository.description }}</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<hr />
|
|
|
|
{% include 'footer.twig' %}
|
|
</div>
|
|
{% endblock %}
|