summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/info.html
blob: c12446a0835f6c508a7ddaaa35bc76e838fed1d5 (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, locale, page in all_pages %}
  <li>
    <a href="{{ url_for('info', pagename=pagename, locale=locale) }}" {% if pagename == active_pagename %}class="active"{% endif %}>{{page.title}}</a>
  </li>
{% endfor %}
</ul>
{{ active_page.html | safe }}
{% endblock %}