_includes/cve-list.html (16 lines of code) (raw):
{% if include.reports != empty %}
{{ include.title }}
-------------------
<ul class="cve-list">
{% for report in include.reports %}
<li>
<h3 id="{{ report.cve }}">
<a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name={{ report.cve | url_encode }}">{{ report.cve }}</a>:
{{ report.title }}
</h3>
{{ report.content }}
<p>Acknowledgements: We would like to thank {{ report.reporters }} for reporting this issue.</p>
</li>
{% endfor %}
</ul>
{% endif %}