mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-12 22:06:55 +02:00
23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
{% 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 %}
|
|
<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 %}
|
|
{% block body %}
|
|
|
|
{% if search["term"] == '' %}
|
|
<div class="alert alert-info">
|
|
<p>We welcome you to provide feedback at <a href="irc://irc.rizon.net/nyaa-dev">#nyaa-dev@irc.rizon.net</a></p>
|
|
<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>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include "search_results.html" %}
|
|
|
|
{% endblock %}
|