templates/forms/classified-listing.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3. {% embed "1-col-sidebar.html.twig" %}
  4. {% block column %}
  5. <!-- here down to  -->
  6. {% if site_code == constant("App\\Entity\\Content::SITE_RCS") %}
  7.     {% include  "includes/curtain-ads/classified.html.twig" %}
  8. {% elseif site_code == constant("App\\Entity\\Content::SITE_MCS") %}
  9.     {% include  "includes/curtain-ads/classified-mcs.html.twig" %}
  10. {% endif %}
  11. <!-- here -->
  12.     <form class="classifiedform" method="post" action="" enctype="multipart/form-data">
  13.         <h1 class="mb-3">Post a Classified AD</h1>
  14.         {% if step == 1 %}
  15.             {# initial step #}
  16.             {% include "forms/classified/choose-ad.html.twig" %}
  17.         {% elseif step == 2 %}
  18.             {# fill out listing details #}
  19.             {% include "forms/classified/ad-details.html.twig" %}
  20.         {% elseif step == 3 %}
  21.             {# view preview #}
  22.             {% include "forms/classified/ad-preview.html.twig" %}
  23.         {% elseif step == 4 %}
  24.             {# finalize order #}
  25.             {% include "forms/classified/ad-finalize.html.twig" %}
  26.         {% endif %}
  27.     </form>
  28. {% endblock %}
  29. {% block sidebar %}
  30.     {% include "includes/sidebar.html.twig" %}
  31. {% endblock %}
  32. {% endembed %}
  33. {% endblock %}