{% extends "base.html" %} {% block title %}{{ _('Browse listings') }}{% endblock %} {% block content %}
{% if near %}

{{ _('%(n)s results within %(r)s mi of %(z)s', n=near.total, r=near.radius, z=near.zip) }}

{% endif %} {% if not results %}

{{ _('No listings found.') }}

{% endif %}
{% if page > 1 %}← {{ _('Prev') }}{% endif %} {% if has_next %}{{ _('Next') }} →{% endif %}
{% endblock %}