templates/content/home.html.twig line 49

Open in your IDE?
  1. {% extends 'layouts/layout.html.twig' %} {% block content %}
  2. {% set cache = pimcore_cache("main_navigation_cache", 60) %}
  3. {% if not cache.start() %}
  4. {{
  5.     pimcore_areablock("content", {
  6.         allowed: ["portal-banner", "our-technology-partners","proudly-sponsor",'contact-c2-form']
  7.     })
  8. }}
  9. <!-- Hero Section -->
  10. <!--/Hero Section -->
  11. <!-- Tech Partners Section -->
  12. <!--/Tech Partners Section -->
  13. <!-- Main Content -->
  14. <div id="main-content">
  15.     <!-- Main Page Content -->
  16.     <div id="main-page-content" class="content-max-width">
  17.         {{
  18.             pimcore_areablock("content2", {
  19.                 allowed: [
  20.                     "our-projects",
  21.                     "services",
  22.                     "award",
  23.                     "our-customers",
  24.                     "our-products",
  25.                     "blog-and-news",
  26.                     "achievement",
  27.                     "global-partnership",
  28.                     "contact-c2-form"
  29.                 ]
  30.             })
  31.         }}
  32.     </div>
  33.     <!--/Main Page Content -->
  34. </div>
  35. <script type="application/ld+json">
  36.     {
  37.         "@context": "https://schema.org",
  38.         "@type": "Organization",
  39.         "name": "CENTRIC",
  40.         "url": "{{app.request.getSchemeAndHttpHost}}",
  41.         "logo": "{{app.request.getSchemeAndHttpHost}}/assets/images/centric_logo_color_text.svg"
  42.     }
  43. </script>
  44. <!--/Main Content -->
  45.   {% do cache.end() %}
  46. {% endif %}
  47. {% endblock %}