| |
@@ -197,9 +197,9 @@
|
| |
<div class="col-6">
|
| |
<h3>{{key.name}}</h3>
|
| |
id: <pre><code>{{key.id}}</code></pre>
|
| |
- Fingerprint: <pre><code>{{key.fingerprint}}</code></pre
|
| |
- {% if key.opengpgkey %}>
|
| |
- DNS OpenGPGKey: <pre><code>{{key.opengpgkey}}</code></pre>
|
| |
+ Fingerprint: <pre><code>{{key.fingerprint}}</code></pre>
|
| |
+ {% if key.openpgpkey %}
|
| |
+ DNS OpenPGPKey: <pre><code>{{key.openpgpkey}}</code></pre>
|
| |
{% endif %}
|
| |
</div>
|
| |
{% endif %}
|
| |
Our GPG key list has been subtly broken since bdeb1cc (add opengpgkeys,
2021-02-15). The
<pre>
tag was incomplete and the conditionalreferenced the openpgpkey property as opengpgkey (gpg instead of the
correct pgp).
Fix both issues so the key listing displays as intended.
Signed-off-by: Todd Zullinger tmz@pobox.com