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 21:24:35 +00:00
{% for pagename, locale, page in all_pages %}
2022-03-13 21:15:27 +00: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 %}