mirror of https://gitlab.com/bashrc2/epicyon
Show pgp public key within dropdown to avoid taking up a large amount of screen space
parent
92d949585a
commit
646bd8507b
|
@ -1167,8 +1167,10 @@ def html_profile(signing_priv_key_pem: str,
|
||||||
pgp_fingerprint.replace('\n', '<br>') + '</p>\n'
|
pgp_fingerprint.replace('\n', '<br>') + '</p>\n'
|
||||||
if pgp_pub_key:
|
if pgp_pub_key:
|
||||||
donate_section += \
|
donate_section += \
|
||||||
'<p class="pgp">' + \
|
'<details><summary class="cw" tabindex="10">' + \
|
||||||
pgp_pub_key.replace('\n', '<br>') + '</p>\n'
|
'PGP</summary><div class="pgp">' + \
|
||||||
|
pgp_pub_key.replace('\n', '<br>') + \
|
||||||
|
'</div></details>\n'
|
||||||
donate_section += ' </center>\n'
|
donate_section += ' </center>\n'
|
||||||
donate_section += '</div>\n'
|
donate_section += '</div>\n'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue