summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/info.html
blob: 3a696da502482e1f4b6a8cccee0f96eb65ed31b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "oscar/base.html" %}
{% block title %}{{ active_page.title }} - {% endblock %}
{% block content %}
<ul class="nav nav-tabs">
{% for pagename, page in all_pages('en') %}
  <li {% if pagename == active_pagename %}class="active"{% endif %}>
    <a href="{{pagename}}">{{page.title}}</a>
  </li>
{% endfor %}
</ul>
{{ active_page.html | safe }}
{% endblock %}