mirror of
https://github.com/searxng/searxng
synced 2024-11-01 15:40:29 +00:00
13 lines
414 B
HTML
13 lines
414 B
HTML
{% 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 %}
|