Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / web / modules / contrib / security_review / templates / check_evaluation.html.twig
diff --git a/web/modules/contrib/security_review/templates/check_evaluation.html.twig b/web/modules/contrib/security_review/templates/check_evaluation.html.twig
deleted file mode 100644 (file)
index 77f4509..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-{#
-/**
- * @file
- * Default evaluation page template for checks.
- *
- * Available variables:
- * - paragraphs: Array of paragraphs (strings) to show before the list.
- * - items: Array of items (strings) to show in an unordered list after the paragraphs.
- */
-#}
-
-{% for paragraph in paragraphs %}
-    <p>
-        {{ paragraph }}
-    </p>
-{% endfor %}
-{% if items is not empty %}
-    <ul>
-        {% for item in items %}
-            <li>{{ item }}</li>
-        {% endfor %}
-    </ul>
-{% endif %}