camaleon-8.x-1.x-dev/templates/dataset/forums.html.twig
templates/dataset/forums.html.twig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | {# /** * @file * Theme override to display a forum. * * May contain forum containers as well as forum topics. * * Available variables: * - forums: The forums to display (as processed by forum-list.html.twig). * - topics: The topics to display. * - topics_pager: The topics pager. * - forums_defined: A flag to indicate that the forums are configured. * * @see template_preprocess_forums() */ #} {{ attach_library( 'classy/forum' ) }} {% if forums_defined %} <div class = "forum" > {{ forums }} {{ topics }} {{ topics_pager }} </div> {% endif %} |