1
0
Fork 0
mirror of https://github.com/ProjectSynthoria/SynthoriaArchive.git synced 2025-03-12 15:26:56 +02:00
SynthoriaArchive/nyaa/templates/home.html

21 lines
759 B
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 %}
{% block metatags %}
{% if search.term %}
<meta property="og:description" content="Search for '{{ search.term }}'">
{% else %}
2025-03-04 23:56:47 +02:00
<meta name="description" content="A voice synth community focused on documenting and preserving voice synthesizers and more">
<meta name="keywords" content="torrents, bittorrent, torrent, vocaloid, voicebank, download, magnet, magnets">
<meta property="og:description" content="{{ config.SITE_NAME }} Homepage">
{% endif %}
{% endblock %}
2017-05-12 20:51:49 +02:00
{% block body %}
{% if not search.term %}
{% 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 %}