aboutsummaryrefslogtreecommitdiff
path: root/data/templates/search.htm
blob: 4f7d3e043fa48685a8b6702b7af0e44217e95c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% extends "base.htm" %}
{% block title %}Search results{% endblock %}

{% block meta %}
<meta name="robots" content="noindex"/>
{% endblock %}

{% block content %}
{% if sres.results == 0 %}
 <p>
  Sorry, no results for "<tt>{{query}}</tt>".
 </p>
{% else %}
 <p>
  Found {{sres.results}} search results for "<tt>{{query}}</tt>":
 </p>
 <ul class="nav nav-pills nav-stacked">
 {% for repo in sres.repos %}
   {% include 'repo-list.htm' %}
 {% endfor %}
 </ul>
 {% include 'pager.htm' %}
{% endif %}

{% endblock %}

{% block sidebar %}
 <h4>Search tips</h4>
 <dl>
  <dt>Exclusion</dt>
   <dd><tt>+foo -bar</tt></dd>
  <dt>Logical OR</dt>
   <dd><tt>foo OR bar</tt></dd>
  <dt>Quoting</dt>
   <dd><tt>"foo bar"</tt></dd>
  <dt>Partial words</dt>
   <dd><tt>foo*</tt></dd>
  <dt>Particular fields only</dt>
   <dd><tt>description:foo</tt></dd>
   <dd><tt>name:foo.txt</tt></dd>
   <dd><tt>extension:rst</tt></dd>
   <dd><tt>content:Hello</tt></dd>
 </dl>
{% endblock %}