templates/theme/show.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% if theme is not null %}
  3.     {% set title = "Thème : " ~ theme.name %}
  4. {% else %}
  5.     {% set title = "Thème : " ~ slug %}
  6. {% endif %}
  7. {% block title %}{{ title }}{% endblock %}
  8. {% set activeMenu = "infos-pratiques" %}
  9. {% block body %}
  10.     {% include 'common/searchResult.html.twig' with {'listWithThumbnails': listWithThumbnails, 'term': slug, 'title': title, 'articles': articles, 'events': events, 'questionAnswers': questionAnswers, 'structures': structures, 'theme': theme } %}
  11. {% endblock %}