templates/article/detail.html.twig line 1

Open in your IDE?
  1. {#
  2. project: Pimcore - Schutzverband Nuernberg Rostbratwuerste
  3. User: erikb
  4. Year: 2022
  5. #}
  6. {% extends 'layouts/default.html.twig' %}
  7. {% block content %}
  8.     {% include 'navigation/breadcrumb.html.twig' %}
  9.     {%
  10.         include 'navigation/prev-next.html.twig' with {
  11.             'overview': overview|default(null),
  12.             'prev': prev|default(null),
  13.             'next': next|default(null)
  14.         }
  15.     %}
  16.     {% include 'includes/areabrick.html.twig' with {'id': 'sections', 'controlsAlign': 'top' } %}
  17.     {%
  18.         include 'navigation/prev-next.html.twig' with {
  19.             'overview': overview|default(null),
  20.             'prev': prev|default(null),
  21.             'next': next|default(null),
  22.             'bottom': true
  23.         }
  24.     %}
  25. {% endblock content %}