templates/about/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}About – CogniEdu{% endblock %}
  3. {% block body %}
  4. <section class="bg-white">
  5.   <div class="container py-5">
  6.     <div class="row justify-content-center">
  7.       <div class="col-lg-9">
  8.         <h1 class="display-6 fw-semibold mb-3">About CogniEdu</h1>
  9.         <p class="text-muted mb-4">
  10.           Proprietary AI-based IP platform developed exclusively for universities and higher education institutions.
  11.         </p>
  12.         <div class="border rounded p-4 bg-light">
  13.           <div class="fs-5 lh-lg">
  14.             {{ description|nl2br }}
  15.           </div>
  16.         </div>
  17.         <div class="d-flex flex-wrap gap-3 mt-4">
  18.           <a href="{{ path('request_demo') }}" class="btn btn-primary">Request a Demo</a>
  19.           <a href="{{ path('contact') }}" class="btn btn-outline-secondary">Contact</a>
  20.         </div>
  21.       </div>
  22.     </div>
  23.   </div>
  24. </section>
  25. {% endblock %}