templates/Doc/States/checkout.html.twig line 1

Open in your IDE?
  1. {% extends 'Layouts/Doc/default.html.twig' %}
  2. {% block title %}
  3.     {{ 'app.documentation.menu.architecture.drivers'|trans }}
  4. {% endblock %}
  5. {% block headerPageTitle %}
  6.     {{ 'app.documentation.menu.workflow.checkout'|trans|upper }}
  7. {% endblock %}
  8. {% block body %}
  9.     <div class="card mb-12">
  10.         <div class="card-body flex-column p-5">
  11.             <div class="d-flex align-items-center h-lg-100px p-5 p-lg-15">
  12.                 <div class="row">
  13.                     <div class="col-md-12 pt-5 scroll-y">
  14.                         <div class="position-relative w-100 text-gray-800">
  15.                             <p><strong>Checkout</strong> is a comprehensive platform designed to streamline the order management process for businesses and provide customers with visibility into the progress of their orders through various checkout statuses. With Popina Order, businesses can efficiently manage and track orders while offering customers real-time updates.</p></div>
  16.                     </div>
  17.                 </div>
  18.             </div>
  19.             <div class="d-flex flex-column">
  20.                 <div class="row table-responsive">
  21.                     <div class="col-md-12 offset-2">
  22.                         {% include 'Doc/Diagram/checkout.html.twig' %}
  23.                     </div>
  24.                 </div>
  25.             </div>
  26.             <div class="d-flex align-items-center p-lg-15">
  27.                 <div class="row">
  28.                     <div class="col-md-12 pt-5 scroll-y">
  29.                         {% include 'Doc/States/Checkout/checkout.html.twig' %}
  30.                     </div>
  31.                 </div>
  32.             </div>
  33.         </div>
  34.     </div>
  35. {% endblock %}