summaryrefslogtreecommitdiff
path: root/searx/templates/simple/info.html
blob: b94ad0037d37221d388b67a8fdbd16ae7a89f0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends 'simple/page_with_header.html' %}
{% block title %}{{ active_page.title }} - {% endblock %}
{% block content %}
<ul class="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>
<div class="info-page {{pagename}}">
  {{- active_page.html | safe -}}
</div>
{% endblock %}