templates/about/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}About{% endblock %}
  3. {% block body %}
  4. {% include('partials/_breadcrumbs.html.twig') with {
  5. hero_title: "About Us",
  6. hero_title_breadcrumb: "About Us"
  7. } %}
  8. {% include 'partials/about/_about.html.twig' %}
  9. {% include 'partials/about/_whyus.html.twig' %}
  10. {% include 'partials/about/_dev-process.html.twig' %}
  11. {% endblock %}