mirror of https://gitlab.com/bashrc2/epicyon
Show blog address on profile
parent
8edc3ac7ef
commit
2e323a4641
|
@ -552,6 +552,7 @@ def htmlProfile(rssIconAtTop: bool,
|
||||||
donateSection = ''
|
donateSection = ''
|
||||||
donateUrl = getDonationUrl(profileJson)
|
donateUrl = getDonationUrl(profileJson)
|
||||||
websiteUrl = getWebsite(profileJson, translate)
|
websiteUrl = getWebsite(profileJson, translate)
|
||||||
|
blogAddress = getBlogAddress(profileJson)
|
||||||
PGPpubKey = getPGPpubKey(profileJson)
|
PGPpubKey = getPGPpubKey(profileJson)
|
||||||
PGPfingerprint = getPGPfingerprint(profileJson)
|
PGPfingerprint = getPGPfingerprint(profileJson)
|
||||||
emailAddress = getEmailAddress(profileJson)
|
emailAddress = getEmailAddress(profileJson)
|
||||||
|
@ -581,6 +582,10 @@ def htmlProfile(rssIconAtTop: bool,
|
||||||
donateSection += \
|
donateSection += \
|
||||||
'<p>' + translate['Email'] + ': <a href="mailto:' + \
|
'<p>' + translate['Email'] + ': <a href="mailto:' + \
|
||||||
emailAddress + '">' + emailAddress + '</a></p>\n'
|
emailAddress + '">' + emailAddress + '</a></p>\n'
|
||||||
|
if blogAddress:
|
||||||
|
donateSection += \
|
||||||
|
'<p>Blog: <a href="' + \
|
||||||
|
blogAddress + '">' + blogAddress + '</a></p>\n'
|
||||||
if xmppAddress:
|
if xmppAddress:
|
||||||
donateSection += \
|
donateSection += \
|
||||||
'<p>' + translate['XMPP'] + ': <a href="xmpp:' + \
|
'<p>' + translate['XMPP'] + ': <a href="xmpp:' + \
|
||||||
|
|
Loading…
Reference in New Issue