diff --git a/_config.yml b/_config.yml index 9a4f3571..550c72bc 100644 --- a/_config.yml +++ b/_config.yml @@ -134,4 +134,7 @@ pagination: # Without file extension # indexpage: 'index' + data: + cve_data: _data/cve_data.yml + ############################################################ diff --git a/_layouts/security.html b/_layouts/security.html index dded7e26..da604548 100644 --- a/_layouts/security.html +++ b/_layouts/security.html @@ -40,4 +40,23 @@

Other considerations

security@wildfly.org

+
+

CVE Reporting

+ {% for cve in site.data.cve_data %} +
+

CVE: {{ cve.CVE }}

+

Link: {{ cve.Link }}

+

Status: {{ cve.Status }}

+

JIRA Link: {{ cve.JIRA_Link }}

+

Fix Versions:

+ +

Notes:

+

{{ cve.Notes | newline_to_br }}

+
+ {% endfor %} +