{% extends 'base.html.twig' %} {% block title %}Template Marketplace – Rise Mailer{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% if grouped is empty %}

No templates in the marketplace yet

Seed the marketplace with professional templates:

php bin/console app:seed-marketplace
{% else %} {# ── Toolbar ── #}
{% set total = 0 %}{% for cat, tpls in grouped %}{% set total = total + tpls|length %}{% endfor %} {{ total }} templates
{% for category, templates in grouped %} {% endfor %}
{# ── Template sections ── #}
{% for category, templates in grouped %} {% set catColor = {'Promotional':'#ef4444','Welcome':'#7c3aed','Newsletter':'#0ea5e9','Transactional':'#10b981','Re-engagement':'#f59e0b'}[category] ?? '#64748b' %}

{{ category }}

{{ templates|length }}
{% for template in templates %}
{{ category }}
Full Preview
{{ template.name }}
{{ template.subject }}
{% endfor %}
{% endfor %}
{% endif %} {# ── Preview Modal ── #} {% endblock %} {% block javascripts %} {% endblock %}