BitTorrent Network for Yggdrasil
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<form class="margin-t-16-px" name="search" method="get" action="{{ path('search_index') }}">
|
|
|
|
<input class="min-width-200-px" type="text" name="query" value="{{ query }}" placeholder="{{ 'Keyword, file, hash...' | trans }}" />
|
|
|
|
<select name="type">
|
|
|
|
{% if type == 'torrent' %}
|
|
|
|
<option value="torrent" selected="selected">{{ 'Torrents' | trans }}</option>
|
|
|
|
{% else %}
|
|
|
|
<option value="torrent">{{ 'Torrents' | trans }}</option>
|
|
|
|
{% endif %}
|
|
|
|
{% if type == 'article' %}
|
|
|
|
<option value="article" selected="selected">{{ 'Articles' | trans }}</option>
|
|
|
|
{% else %}
|
|
|
|
<option value="article">{{ 'Articles' | trans }}</option>
|
|
|
|
{% endif %}
|
|
|
|
</select>
|
|
|
|
<input {% if query %}class="button-green"{% endif %} type="submit" value="{{ 'Search' | trans }}" />
|
|
|
|
</form>
|