19 lines
515 B
HTML
19 lines
515 B
HTML
<table class="security-cves">
|
|
<caption>{{ T "cve_table" }}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>{{ T "cve_id" }}</th>
|
|
<th>{{ T "cve_summary"}}</th>
|
|
<th>{{ T "cve_issue_url" }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range $issues := getJSON .Site.Params.cveFeedBucket }}
|
|
<tr>
|
|
<td><a href="{{ .cve_url }}">{{ .cve_id | htmlEscape | safeHTML }}</a></td>
|
|
<td>{{ .summary | htmlEscape | safeHTML }}</td>
|
|
<td><a href="{{ .issue_url }}">#{{ .number }}</a></td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table> |