templates/Community/overview.html.twig line 1

Open in your IDE?
  1. {% extends "Layout/default.html.twig" %}
  2. {% block content %}
  3.     {{ include('Content/includes/hero.html.twig') }}
  4.     {{ include('Navigation/breadcrumb.html.twig') }}
  5.     {{ include('Includes/main-title-block-splitted-editable.html.twig') }}
  6.     <div class="container content-block">
  7.         {{ include('Includes/title-block-editable.html.twig', {
  8.             isCentered: true,
  9.             suffix: '-filter',
  10.             styleModifier: 'js-fade-in'
  11.         }) }}
  12.         {{ include('Community/Includes/places-filtering.html.twig', {
  13.         }) }}
  14.     </div>
  15.     {{ include('Includes/areablock.html.twig', {
  16.         suffix: 'bottom'
  17.     }) }}
  18. {% endblock %}
  19. {# INFO: different JS for different sitetypes must be embedded #}
  20.     {% block javascripts %}
  21.         {% if not app.request.get('onlyInlineCss') %}
  22.         {{ include('Layout/includes/encore.html.twig', {
  23.             'staticDebugMode': staticDebugMode,
  24.             'file': 'js/places'
  25.         }) }}
  26.         {% endif %}
  27.     {% endblock %}