logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

index.html (594B)


  1. {% extends "courgette/base.html" %}
  2. {% block content %}
  3. {% include 'courgette/github_ribbon.html' %}
  4. <div class="center">
  5. <div class="title"><h1>searx</h1></div>
  6. {% include 'courgette/search.html' %}
  7. <p class="top_margin">
  8. {% if rtl %}
  9. <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
  10. {% endif %}
  11. <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
  12. {% if not rtl %}
  13. <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
  14. {% endif %}
  15. </p>
  16. </div>
  17. {% endblock %}