mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
32 lines
1.1 KiB
Twig
32 lines
1.1 KiB
Twig
{% extends 'layout.twig' %}
|
|
|
|
{% block body %}
|
|
{% include 'navigation.twig' %}
|
|
|
|
<div class="container">
|
|
<div class="header row">
|
|
<div class="col-sm-12">
|
|
{% if page in ['commits', 'searchcommits'] %}
|
|
<form class="pull-right" action="{{ app.request.basepath }}/{{repo}}/commits/{{branch}}/search" method="POST">
|
|
<input type="search" name="query" class="form-control input-sm" placeholder="Search commits...">
|
|
</form>
|
|
{% else %}
|
|
<form class="pull-right" action="{{ app.request.basepath }}/{{repo}}/tree/{{branch}}/search" method="POST">
|
|
<input type="search" name="query" class="form-control input-sm" placeholder="Search tree...">
|
|
</form>
|
|
{% endif %}
|
|
|
|
{% if branches is defined %}
|
|
{% include 'branch_menu.twig' %}
|
|
{% endif %}
|
|
|
|
{% include 'menu.twig' %}
|
|
</div>
|
|
</div>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% include 'footer.twig' %}
|
|
</div>
|
|
{% endblock %}
|