templates/faq/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}FAQ{% endblock %}
  3. {% block body %}
  4. {% include('partials/_breadcrumbs.html.twig') with {
  5. hero_title: "F.A.Q's",
  6. hero_title_breadcrumb: "F.A.Q's",
  7. description: "As am hastily invited settled at limited civilly fortune me. Really spring in extent an by. Judge
  8. but built party world. Of so am he remember although required. Bachelor unpacked be advanced at. Confined in
  9. declared marianne is vicinity."
  10. } %}
  11. <section class="why-choos-lg py-5">
  12. <div class="container">
  13. {% include "partials/faq/heading.html.twig" with {
  14. heading: "Shopping"
  15. } %}
  16. <div class="row">
  17. {% include "partials/faq/card.html.twig" %}
  18. {% include "partials/faq/card.html.twig" %}
  19. </div>
  20. </div>
  21. </section>
  22. <section class="why-choos-lg py-5">
  23. <div class="container">
  24. {% include "partials/faq/heading.html.twig" with {
  25. heading: "Payment"
  26. } %}
  27. <div class="row">
  28. {% include "partials/faq/card.html.twig" %}
  29. {% include "partials/faq/card.html.twig" %}
  30. </div>
  31. </div>
  32. </section>
  33. <section class="why-choos-lg py-5">
  34. <div class="container">
  35. {% include "partials/faq/heading.html.twig" with {
  36. heading: "Warranty and return"
  37. } %}
  38. <div class="row">
  39. {% include "partials/faq/card.html.twig" %}
  40. {% include "partials/faq/card.html.twig" %}
  41. </div>
  42. </div>
  43. </section>
  44. {% endblock %}