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 %}
|
2017-06-06 23:53:19 -07: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">
|
2017-05-26 01:03:59 +03:00
|
|
|
<meta property="og:description" content="{{ config.SITE_NAME }} homepage">
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2017-05-12 20:51:49 +02:00
|
|
|
{% block body %}
|
|
|
|
|
2017-09-02 01:14:11 +03:00
|
|
|
{% if not search.term %}
|
2019-04-09 04:50:30 +02:00
|
|
|
{% include "infobubble.html" %}
|
2017-05-24 07:18:57 +00:00
|
|
|
{% endif %}
|
2017-05-12 20:51:49 +02:00
|
|
|
|
|
|
|
{% include "search_results.html" %}
|
|
|
|
|
|
|
|
{% endblock %}
|