Including security review as a submodule - with patched for Yaffs.
[yaffs-website] / web / modules / contrib / security_review / templates / check_evaluation.html.twig
1 {#
2 /**
3  * @file
4  * Default evaluation page template for checks.
5  *
6  * Available variables:
7  * - paragraphs: Array of paragraphs (strings) to show before the list.
8  * - items: Array of items (strings) to show in an unordered list after the paragraphs.
9  */
10 #}
11
12 {% for paragraph in paragraphs %}
13     <p>
14         {{ paragraph }}
15     </p>
16 {% endfor %}
17 {% if items is not empty %}
18     <ul>
19         {% for item in items %}
20             <li>{{ item }}</li>
21         {% endfor %}
22     </ul>
23 {% endif %}