xbbcode-help.html.twig in Extensible BBCode 4.0.x
Same filename and directory in other branches
Default theme implementation for token help.
1 theme call to xbbcode-help.html.twig
- TagFormBase::form in src/
Form/ TagFormBase.php - Gets the actual form array to be built.
File
templates/xbbcode-help.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for token help.
- */
- #}
- <p>{{ title }}</p>
- <dl>
- {% for label, row in rows %}
- <dt>
- {% if row.suffix %}
- {% for suffix in row.suffix %}
- <code>{{ '{{ ' }}{{ label_prefix }}{{ label }}{{ suffix }}{{ ' }}' }}</code>
- {% endfor %}
- {% set description = row.description %}
- {% else %}
- <code>{{ '{{ ' }}{{ label_prefix }}{{ label }}{{ ' }}' }}</code>
- {% set description = row %}
- {% endif %}
- </dt>
- <dd>{{ description }}</dd>
- {% endfor %}
- </dl>