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

{{ cat.name }} {{ _('listings') }}

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

{% if not listings %}

{{ _('No listings yet in this category.') }}

{% 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 %} {% if cat.children %}

{{ _('Subcategories') }}

{% endif %}
{% endblock %}