Files
searxng/searx/templates/oscar/help.html
T

13 lines
336 B
HTML
Raw Normal View History

2022-01-31 11:24:45 +01:00
{% extends "oscar/base.html" %}
{% block title %}{{ page.title }} - {% endblock %}
{% block content %}
2022-01-31 12:42:04 +01:00
<ul class="nav nav-tabs">
{% for name, page in all_pages %}
<li {% if name == page_filename %}class="active"{% endif %}>
<a href="{{name}}">{{page.title}}</a>
</li>
{% endfor %}
</ul>
2022-01-31 11:24:45 +01:00
{{ page.content | safe }}
{% endblock %}