2021-05-05 21:04:38 +00:00
|
|
|
{{- define "main" -}}
|
|
|
|
|
|
|
|
<h1>{{ .Title | markdownify }}</h1>
|
2021-12-28 01:22:25 +00:00
|
|
|
|
2022-12-07 18:31:53 +00:00
|
|
|
{{ .Content }}
|
|
|
|
|
2021-12-28 01:22:25 +00:00
|
|
|
<table>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_stability" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.stability | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_connection_security" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.connection_security | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_connection_anonymous" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.connection_anonymous | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_storage_encrypted" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.storage_encrypted | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_zero_knowledge" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.zero_knowledge | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_storage_backup" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.storage_backup | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{{ i18n "service_badge_logging" }}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
{{ with .Params.service_badges.logging | printf "service_badges_status_%s" }}
|
|
|
|
{{ i18n . }}
|
|
|
|
{{ end }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
{{- end -}}
|