filter-guidelines.html.twig 830 B

1234567891011121314151617181920212223242526272829
  1. {#
  2. /**
  3. * @file
  4. * Theme override for guidelines for a text format.
  5. *
  6. * Available variables:
  7. * - format: Contains information about the current text format, including the
  8. * following:
  9. * - name: The name of the text format, potentially unsafe and needs to be
  10. * escaped.
  11. * - format: The machine name of the text format, e.g. 'basic_html'.
  12. * - attributes: HTML attributes for the containing element.
  13. * - tips: Descriptions and a CSS ID in the form of 'module-name/filter-id'
  14. * (only used when 'long' is TRUE) for each filter in one or more text
  15. * formats.
  16. *
  17. * @see template_preprocess_filter_tips()
  18. */
  19. #}
  20. {%
  21. set classes = [
  22. 'filter-guidelines-item',
  23. 'filter-guidelines-' ~ format.id,
  24. ]
  25. %}
  26. <div{{ attributes.addClass(classes) }}>
  27. <h4 class="label">{{ format.label }}</h4>
  28. {{ tips }}
  29. </div>