templates/front/about/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layouts/default.html.twig' %}
  2. {% block title %} {{ 'app.about.title'|trans }} {{ parent() }} {% endblock %}
  3. {% block breadcrumb_title %}{{ 'app.about.title'|trans }}{% endblock %}
  4. {% block breadcrumb_sub_title %}{{ 'app.about.about_us.title'|trans }}{% endblock %}
  5. {% block body %}
  6.    
  7.     <!--Start About Style1 Area-->
  8.     {% include 'front/includes/about_section.html.twig' with {'class': 'about-page'}  %}
  9.     <!--End About Style1 Area-->
  10.     <!--Start Testimonial style1 Area-->
  11.     {{ render(controller('App\\Controller\\Front\\HomeController::testimonials', { 'mode': 'light' })) }}
  12.     <!--End Testimonial Style1 Area--> 
  13. {% endblock %}
  14. {% block javascripts %}
  15.     <script>
  16.         $( document ).ready(function() {
  17.             $('#description-see-more').on('click', function(e){
  18.                 e.preventDefault();
  19.                 $('.description-more').toggle();
  20.             });
  21.         });
  22.     </script>
  23. {% endblock %}