NyaaV3/nyaa/templates/home.html

17 lines
1.1 KiB
HTML
Raw Normal View History

2017-05-12 20:51:49 +02:00
{% extends "layout.html" %}
{% block title %}{% if search.term %}{{ search.term | e}}{% else %}Browse{% endif %} :: {{ config.SITE_NAME }}{% 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-22 18:32:48 -04:00
<p><strong>2017-05-22 Update:</strong> We've added comments. You can change your avatar using <a href="http://en.gravatar.com">Gravatar</a> or if you don't like gravatar you can just stick with our spify default avatar.</p>
2017-05-22 22:54:33 +03:00
<p><strong>2017-05-22 Update:</strong> We've updated our upload API to v2 (v1 <b>is now disabled!</b>). See documentation <b><a href="https://github.com/nyaadevs/nyaa/blob/master/utils/api_uploader_v2.py">here</a></b>.</p>
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 %}