{% 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 %}
{{ _('Retrieve Remote Post') }}

Enter the full URL of the post submitted to {{ community.ap_id }}

Note: URL needs to match the one from the post author's instance (which may be different than the community's instance)

{{ render_form(form) }}
{% if new_post %}
{{ _('Found a post:') }}
{% endif %} {% endblock %}