15 lines
873 B
HTML
15 lines
873 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ _('Classifieds — Buy, Sell & Find Services') }}{% endblock %}
|
|
{% block meta_description %}<meta name="description" content="{{ _('Free classifieds for Vietnamese and Hispanic communities across the US. Buy, sell, find jobs, services, and more.') }}">{% endblock %}
|
|
{% block content %}
|
|
<section class="hero">
|
|
<p class="hero-eyebrow">{{ _('Your local community marketplace') }}</p>
|
|
<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 %}
|