templates/pages/custom_page/custom_page.html.twig line 1

Open in your IDE?
  1. {% extends '@App/base.html.twig' %}
  2. {% block content %}
  3.     <figure class="mt-[10px] lg:mt-[40px] mx-auto max-w-max lg:max-w-[1328px] px-[24px]">
  4.         {% include '@App/shared/ui/header/header.html.twig' %}
  5.         <div class="mt-[14px] p-[18px] max-w-max md:max-w-[1328px] mx-auto rounded-[24px] bg-white prose">
  6.             <figure class="banner my-[30px] md:my-[60px] px-[16px] py-[16px] md:px-[48px] md:py-[68px] md:min-h-[498px] rounded-[16px] w-full border border-[#E2E2E9] bg-[#F7F7FA] bg-no-repeat bg-contain bg-right">
  7.                 {% if customPage.title is not empty %}
  8.                     <h2 class="text-[24px] md:text-[32px] text-center text-[#1B2028] font-medium text-left mb-[12px] md:mb-[32px] leading-[1.2]">{{ customPage.title }}</h2>
  9.                 {% endif %}
  10.                 {{ customPage.content|raw }}
  11.             </figure>
  12.         </div>
  13.     </figure>
  14. {% endblock %}