1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-13 08:40:16 +02:00
searxng/searx/templates/oscar/info.html

13 lines
414 B
HTML
Raw Normal View History

{% extends "oscar/base.html" %}
{% block title %}{{ active_page.title }} - {% endblock %}
{% block content %}
<ul class="nav nav-tabs">
2022-03-16 22:24:35 +01:00
{% for pagename, locale, page in all_pages %}
2022-03-13 22:15:27 +01:00
<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 %}