- gitlist.git
- twig
- layout_page.twig
This file ( 880B ) 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 body %}
{% include 'navigation.twig' %}
<div class="container">
{% if page in ['commits', 'searchcommits'] %}
<form class="form-group" action="{{ app.git_clone_subdir }}/{{repo}}/commits/{{branch}}/search" method="POST">
<input type="search form-control" name="query" class="form-control input-sm" placeholder="Search commits...">
</form>
{% else %}
<form class="form-group" action="{{ app.git_clone_subdir }}/{{repo}}/tree/{{branch}}/search" method="POST">
<input type="search form-control" name="query" class="form-control input-sm" placeholder="Search tree...">
</form>
{% endif %}
{% include 'menu.twig' %}
{% block content %}{% endblock %}
</div>
{% include 'footer.twig' %}
{% endblock %}