nyaa/nyaa/templates/home.html

24 lines
1.1 KiB
HTML
Raw Normal View History

2017-05-12 18:51:49 +00:00
{% extends "layout.html" %}
{% block title %}{% if search.term %}{{ search.term | e}}{% else %}Browse{% endif %} :: {{ config.SITE_NAME }}{% endblock %}
{% block metatags %}
{% if search.term %}
<meta property="og:description" content="Search for '{{ search.term }}'">
{% else %}
2017-06-07 06:53:19 +00:00
<meta name="description" content="A BitTorrent community focused on Eastern Asian media including anime, manga, music, and more">
<meta name="keywords" content="torrents, bittorrent, torrent, anime, manga, sukebei, download, nyaa, magnet, magnets">
<meta property="og:description" content="{{ config.SITE_NAME }} homepage">
{% endif %}
{% endblock %}
2017-05-12 18:51:49 +00:00
{% block body %}
{% if not search.term %}
2017-05-12 18:51:49 +00:00
<div class="alert alert-info">
<p>We welcome you to provide feedback on IRC at <a href="irc://irc.rizon.net/nyaa-dev">#nyaa-dev@irc.rizon.net</a></p>
2017-07-05 17:15:58 +00: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 recommended!</p>
2017-05-12 18:51:49 +00:00
</div>
2017-05-24 07:18:57 +00:00
{% endif %}
2017-05-12 18:51:49 +00:00
{% include "search_results.html" %}
{% endblock %}