pidgin/nest

b1b5ffddaf91
Add blog post for the 2.14.2 release of pidgin

Include full changelog for the release and a link to download it on sourceforge

Testing Done:
1. Build image with `docker build -t pidgin-nest -f Dockerfile .`
2. Run image with `docker run -p 3000:3000 -it --rm pidgin-nest:latest`
3. Verified site being served from container was rendering post correctly using a web browser

Reviewed at https://reviews.imfreedom.org/r/592/
{{ 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" . }}