{% extends 'base.html' %} {% from '_macros.html' import product_card, empty_state with context %} {% block title %}TradeHub — Student Marketplace{% endblock %} {% block content %}
{# Hero — only when not searching #} {% if not q and not category %}
New listings every day

Find your next deal.
Sell what you don't need.

A student-only marketplace for textbooks, electronics, furniture, and everything in between — at prices that work for a student budget.

{% if current_user.is_authenticated %} List an item {% else %} Get started Log in {% endif %}
{% endif %} {# Category pills #} {# Filter / sort bar #}

{% if q %}Results for "{{ q }}" {% elif category %}{{ category | replace('_', ' ') | title }} {% else %}Fresh finds{% endif %} {{ pagination.total }} item{{ '' if pagination.total == 1 else 's' }}

{# Product grid #} {% if products %}
{% for product in products %} {{ product_card(product) }} {% endfor %}
{# Pagination #} {% if pagination.pages > 1 %}
{% if pagination.has_prev %} Previous {% else %}{% endif %} Page {{ pagination.page }} / {{ pagination.pages }} {% if pagination.has_next %} Next {% else %}{% endif %}
{% endif %} {% else %} {{ empty_state(icon='search-x', title='No items found', message='Try different keywords or browse all categories.', cta_url=url_for('main.index'), cta_text='View all items') }} {% endif %}
{% endblock %}