2017-05-12 20:51:49 +02:00
{% extends "layout.html" %}
2017-05-17 11:27:54 +03:00
{% block title %}{% if search.term %}{{ search.term | e}}{% else %}Browse{% endif %} :: {{ config.SITE_NAME }}{% endblock %}
2017-05-26 01:03:59 +03:00
{% block metatags %}
{% if search.term %}
< meta property = "og:description" content = "Search for '{{ search.term }}'" >
{% else %}
< meta property = "og:description" content = "{{ config.SITE_NAME }} homepage" >
{% endif %}
{% endblock %}
2017-05-12 20:51:49 +02:00
{% block body %}
2017-05-24 07:18:57 +00:00
{% if search["term"] == '' %}
2017-05-12 20:51:49 +02:00
< div class = "alert alert-info" >
2017-05-17 01:29:18 -07:00
< p > We welcome you to provide feedback at < a href = "irc://irc.rizon.net/nyaa-dev" > #nyaa-dev@irc.rizon.net< / a > < / p >
2017-05-13 08:59:31 +03:00
< p > Our GitHub: < a href = "https://github.com/nyaadevs" target = "_blank" > https://github.com/nyaadevs< / a > - creating < a href = "https://github.com/nyaadevs/nyaa/issues" > issues< / a > for features and faults is recommendable!< / p >
2017-05-12 20:51:49 +02:00
< / div >
2017-05-24 07:18:57 +00:00
{% endif %}
2017-05-12 20:51:49 +02:00
{% include "search_results.html" %}
{% endblock %}