pidgin/nest

a74b7c49795b
Merged in rw_grim/pidgin-nest (pull request #83)

A start to migrating the security stuff, it's mostly self explanatory but we'll need to document some of how this works
{{ partial "header.html" . }}
{{- if and (eq (trim (.Param "cveNumber") " ") "") (eq (trim (.Param "talosReportId") " ") "") -}}
<p><em><b>NOTE:</b></em> This issue was not reported to a security reporting body.</p>
{{- end -}}
<table>
<tbody>
<tr>
<th>Summary</th>
<td>{{ .Param "summary" }} </td>
</tr>
<tr>
<th>Date</th>
<td>{{ .Date.Format "2006-01-02" }}</td>
</tr>
{{- if .Param "cveNumber" -}}
<tr>
<th>CVE Number</th>
<td><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name={{ .Param "cveNumber" | upper }}">{{ .Param "cveNumber" | upper }}</a></td>
</td>
{{- end -}}
{{- if .Param "talosReportId" -}}
<tr>
<th>Talos Report ID</th>
<td><a href="https://talosintelligence.com/vulnerability_reports/{{ .Param "talosReportId" }}">{{ .Param "talosReportId" | upper }}</a></td>
</tr>
{{- end -}}
<tr>
<th>Discovered By</th>
<td>{{ .Param "discoveredBy" }}</td>
</tr>
{{- if .Param "fixedInRevision" -}}
<tr>
<th>Fixed In Revision</th>
<td>{{ .Param "fixedInRevision" }}</td>
</tr>
{{- end -}}
<tr>
<th>Fixed In Release</th>
<td>{{ .Param "fixedInRelease" }}</td>
</tr>
</tbody>
</table>
{{ .Content }}
<div class="item-nav">
{{- with .PrevInSection -}}
<div class="prev">
<a href="{{ .Permalink }}">Previous<br/>{{ .Param "summary" }}</a>
</div>
{{- end -}}
{{- with .NextInSection -}}
<div class="next">
<a href="{{ .Permalink }}">Next<br/>{{ .Param "summary" }}</a>
</div>
{{- end -}}
</div>
{{ partial "footline.html" . }}
{{ partial "footer.html" . }}