- gitlist.git
- twig
- index.twig
This file ( 1kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
{% extends 'layout.twig' %}
{% block title %}P3X GitList{% endblock %}
{% block body %}
{% include 'navigation.twig' %}
<div class="container" id="repositories">
<div class="search form-group">
<input class="search form-control" placeholder="Search" autofocus>
</div>
<div class="list">
{% for repository in repositories %}
<div class="repository">
<div class="repository-header">
<i class="fas fa-cube"></i>
<a href="{{ path('repository', {repo: repository.name}) }}">
<span class="name">{{ repository.name | remove_extension }}</span>
</a>
<a href="{{ path('rss', {repo: repository.name, branch: 'master'}) }}"><span class="fa fa-rss pull-right"></span></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 %}
</div>
{% include 'footer.twig' %}
</div>
{% endblock %}