pidgin/nest

c1fbb1f6b8e5
WCAG 2 fixes for contrast and empty header

Testing Done:
Ran WAVE tool browser extension. They have a no-install, web version at https://wave.webaim.org/

As an example, improvement goes from 3+24 errors to 2+0 errors on https://pidgin.im/contact/

The colors are directly-scaled, viable suggestions, but it would be possible to make the green more green by exchanging red/blue for green while maintaining the same level of contrast. As an example #0c8a0c might be a bit more vibrant green. Please let me know if you would like me to suggest other slight color variations.

Bugs closed: NEST-45

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