{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{{ _('Search for posts') }}
{{ _('Example searches:') }}

{{ _('star wars') }}

{{ _('There is an implied "and" here. Results will have both words somewhere in them.') }}

{{ _('star or wars') }}

{{ _('This will broaden the search to include results that contain any of the words.') }}

{{ _('star -wars') }}

{{ _('To search for things containing "star" but not "wars" you can put a - before the word you want to exclude.') }}

{{ _('"star wars"') }}

{{ _('Results will have exactly that phrase in them.') }}

{{ _('Trying to add a communitiy or post from another instance?') }}

{{ _('In many types of federated platforms you can put a URL of a post or community into the search in order to add it to your local instance. In PieFed the search is just for searching.') }}

{{ _('Add remote community') }}

{{ _('Retrieve remote post') }}

{% endblock %}