Files
classifieds/app/templates/index.html
T
2026-06-15 11:23:05 -04:00

13 lines
569 B
HTML

{% extends "base.html" %}
{% block title %}{{ _('Classifieds — Home') }}{% endblock %}
{% block content %}
<section class="hero">
<h1>{{ _('Find what you need. Post what you offer.') }}</h1>
<p>{{ _('Buy, sell, request, hire, and connect across your community.') }}</p>
<a class="btn btn-lg" href="{{ url_for('listings.browse') }}">{{ _('Browse listings') }}</a>
{% if not current_user.is_authenticated %}
<a class="btn btn-lg ghost" href="{{ url_for('auth.register') }}">{{ _('Get started') }}</a>
{% endif %}
</section>
{% endblock %}