You are here

check_help.html.twig in Security Review 8

Default check-specific help page template for checks.

Available variables:

  • title: The title to show on the top of the page.
  • paragraphs: Array of paragraphs (strings) to show after the title.

File

templates/check_help.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default check-specific help page template for checks.
  5. *
  6. * Available variables:
  7. * - title: The title to show on the top of the page.
  8. * - paragraphs: Array of paragraphs (strings) to show after the title.
  9. */
  10. #}
  11. <h3>
  12. {{ title }}
  13. </h3>
  14. {% for paragraph in paragraphs %}
  15. <p>
  16. {{ paragraph }}
  17. </p>
  18. {% endfor %}