summaryrefslogtreecommitdiff
path: root/searx/templates/simple/help.html
blob: 5f571ae01784aedeb3c3f969652d9fe5b5e9a859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'simple/page_with_header.html' %}
{% block title %}{{ page.title }} - {% endblock %}
{% block content %}
<ul class="tabs">
{% for name, page in all_pages %}
  <li>
    <a href="{{name}}" {% if name == page_filename %}class="active"{% endif %}>{{page.title}}</a>
  </li>
{% endfor %}
</ul>
{{ page.content | safe }}
{% endblock %}