Mercurial > hg > cmmr2012-drupal-site
annotate core/modules/forum/templates/forums.html.twig @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
rev | line source |
---|---|
Chris@0 | 1 {# |
Chris@0 | 2 /** |
Chris@0 | 3 * @file |
Chris@0 | 4 * Default theme implementation to display a forum. |
Chris@0 | 5 * |
Chris@0 | 6 * May contain forum containers as well as forum topics. |
Chris@0 | 7 * |
Chris@0 | 8 * Available variables: |
Chris@0 | 9 * - forums: The forums to display (as processed by forum-list.html.twig). |
Chris@0 | 10 * - topics: The topics to display. |
Chris@4 | 11 * - topics_original: Original topics data before modification. |
Chris@0 | 12 * - topics_pager: The topics pager. |
Chris@0 | 13 * - forums_defined: A flag to indicate that the forums are configured. |
Chris@0 | 14 * |
Chris@0 | 15 * @see template_preprocess_forums() |
Chris@0 | 16 * |
Chris@0 | 17 * @ingroup themeable |
Chris@0 | 18 */ |
Chris@0 | 19 #} |
Chris@0 | 20 {% if forums_defined %} |
Chris@0 | 21 {{ forums }} |
Chris@0 | 22 {{ topics }} |
Chris@0 | 23 {{ topics_pager }} |
Chris@0 | 24 {% endif %} |