templates/page/about_us.html.twig line 1

Open in your IDE?
  1. {% extends 'standard_tpl.html.twig' %}
  2. {% block page_container %}
  3.     
  4.     <section class="about-section">
  5.       <div class="container">
  6.         <div class="row">
  7.           <div class="col-lg-6 col-md-12">
  8.             <h3 class="mb-4">About <span class="d-block">Ghana Stammering Association</span></h3>
  9.             {{ content.body|raw }}
  10.           </div>
  11.           <div class="col-md-6">
  12.           </div>
  13.         </div>
  14.       </div>
  15.     </section>
  16.     
  17.     <section class="select-category">
  18.       <div class="container">
  19.         <div class="row justify-content-center">
  20.           <div class="col-lg-4 col-md-6 category-col d-flex">
  21.             <div class="category-subox pb-0 d-flex flex-wrap w-100">
  22.               <h4>Vision</h4>
  23.               <p>To be the support centre for people to live successful lives in an environment that openly embraces people who stammer.</p>
  24.               <div class="subox-img">
  25.                 <div class="subox-circle">
  26.                   <img src="{{ asset('themes/castine/assets/img/icons/vect-01.png') }}" alt="" width="42">
  27.                 </div>
  28.               </div>
  29.             </div>
  30.           </div>
  31.           <div class="col-lg-4 col-md-6 category-col d-flex">
  32.             <div class="category-subox pb-0 d-flex flex-wrap w-100">
  33.               <h4>Mission</h4>
  34.               <p>To promote stammering awareness and offer assistance to all whose lives are affected by stammering.</p>
  35.               <div class="subox-img">
  36.                 <div class="subox-circle">
  37.                   <img src="{{ asset('themes/castine/assets/img/icons/vect-02.png') }}" alt="" width="42">
  38.                 </div>
  39.               </div>
  40.             </div>
  41.           </div>
  42.           <div class="col-lg-4 col-md-6 category-col d-flex">
  43.             <div class="category-subox pb-0 d-flex flex-wrap w-100">
  44.               <h4>Our Values</h4>
  45.               <p>The Ghana Stammering Association values are guiding principles that shape the organization's operations and activities.</p>
  46.               <div class="subox-img">
  47.                 <div class="subox-circle">
  48.                   <img src="{{ asset('themes/castine/assets/img/icons/vect-03.png') }}" alt="" width="42">
  49.                 </div>
  50.               </div>
  51.             </div>
  52.           </div>
  53.         </div>
  54.       </div>
  55.     </section>
  56.     
  57.     <section class="section testimonials">
  58.       <div class="container">
  59.         <div class="section-header text-center mb-4">
  60.           <h2>Testimonials</h2>
  61.           <p class="sub-title">Read what our Certified and Qualified Speech therapy Professionals in Ghana have done for these participants.</p>
  62.         </div>
  63.             {{ sonata_block_render({'name':'homeTestimonies'},{
  64.                 "template": "page/home_testimonies_widget.html.twig",
  65.                 "parent_id":6
  66.             })}}
  67.       </div>
  68.     </section>
  69.     
  70. {% endblock %}