{# Goblet - Web based git repository browser Copyright (C) 2012-2014 Dennis Kaarsemaker See the LICENSE file for licensing details #} {% extends "repo_base.html" %} {% block subtitle %}Search{% endblock %} {% block repo_content %} {% if total == 0 %}

No search results for {{ request.args['q'] }}

{% else %}

Results {{ start }}..{{ end }} of {{ total }} for {{ request.args['q'] }}

{% for file, chunks in results %}

{{ file[1] }} {% set file_link = tree_link(repo, ref, path, file[1]) %} view | raw | blame | history

{% for chunk in chunks %} {% for lineno, line in chunk %} {% endfor %} {% endfor %}
{{ lineno }}
{{ decode(line)|highlight(request.args['q']) }}
 
{% endfor %} {% if prev_page or next_page %} {% endif %} {% endif %} {% endblock %}