templates/juki/HitsoCommonBundle/Front/HomePage/index.html.twig line 1

Open in your IDE?
  1. {% extends 'HitsoCommonBundle::layout.html.twig' %}
  2. {% block stylesheets %}
  3.     {{ parent() }}
  4.     <link rel="stylesheet" href="{{ asset('juki/source/css/index-critical.css') }}">
  5.     <link rel="preload" as="style" href="{{ preload(asset('juki/source/css/index-critical.css'), { as: 'style' }) }}">
  6.     <link rel="preload" href="{{ preload(asset('juki/source/css/index.css'), { as: 'style' }) }}" as="style" onload="this.onload=null;this.rel='stylesheet'">
  7. {% endblock %}
  8. {% block body_class %}{{ parent() }} page--home{% endblock %}
  9. {% block content %}
  10.     <main class="main">
  11.         {% cache cache_hash('get_started') {time: 3600} %}
  12.             {% include 'HitsoCommonBundle:Front/HomePage:get_started.html.twig' %}
  13.         {% endcache %}
  14.         {% cache cache_hash('banner') {time: 3600} %}
  15.             {% include 'HitsoCommonBundle:Front/HomePage:banner.html.twig' %}
  16.         {% endcache %}
  17.         {% cache cache_hash('get_started') {time: 3600} %}
  18.             {% include 'HitsoCommonBundle:Front/HomePage:whats_new.html.twig' %}
  19.         {% endcache %}
  20.         {% cache cache_hash('technology_showcase') {time: 3600} %}
  21.             {% include 'HitsoCommonBundle:Front/HomePage:technology_showcase.html.twig' %}
  22.         {% endcache %}
  23.         {% cache cache_hash('possibilities_showcase') {time: 3600} %}
  24.             {% include 'HitsoCommonBundle:Front/HomePage:possibilities_showcase.html.twig' %}
  25.         {% endcache %}
  26.         {% cache cache_hash('blog') {time: 3600} %}
  27.             {% include 'HitsoCommonBundle:Front/HomePage:blog.html.twig' %}
  28.         {% endcache %}
  29.         {% cache cache_hash('features') {time: 3600} %}
  30.             {% include 'HitsoCommonBundle:Front/HomePage:features.html.twig' %}
  31.         {% endcache %}
  32.         {% cache cache_hash('contact') {time: 3600} %}
  33.             {% include 'HitsoCommonBundle:Front/HomePage:contact.html.twig' %}
  34.         {% endcache %}
  35.     </main>
  36. {% endblock %}
  37. {% block footer_javascripts %}
  38.     {{ parent() }}
  39.     <script src="{{ asset('juki/source/js/index.js') }}" defer></script>
  40. {% endblock %}