Mercurial > hg > cmmr2012-drupal-site
view core/modules/help/templates/help-section.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 | c75dbcec494b |
children |
line wrap: on
line source
{# /** * @file * Default theme implementation for a section of the help page. * * Available variables: * - title: The section title. * - description: The description text for the section. * - links: Links to display in the section. * - empty: Text to display if there are no links. * * @ingroup themeable */ #} <h2>{{ title }}</h2> <p>{{ description }}</p> {% if links %} <ul> {% for link in links %} <li>{{ link }}</li> {% endfor %} </ul> {% else %} <p>{{ empty }}</p> {% endif %}