{% extends "base.html" %} {% block title %}{{ state }} {{ _('classifieds') }} — Classifieds{% endblock %} {% block meta_description %}{% endblock %} {% block og_title %}{{ state }} {{ _('classifieds') }}{% endblock %} {% block content %}

{{ state }} {{ _('listings') }}

{{ _('%(n)s active listings', n=listings|length) }} · {{ _('See all with filters') }}

{% if not listings %}

{{ _('No listings in %(state)s yet.', state=state) }}

{% else %}
{% for l in listings %} {% if l.images %} {{ l.title }} {% endif %}
{{ l.title }}
{% if l.price_display %}
{{ l.price_display }}
{% endif %}
{{ l.city or '' }}{% if l.city and l.state %}, {% endif %}{{ l.state or '' }}
{% endfor %}
{% endif %}
{% endblock %}