forked from indymedia/epicyon
Icon style
parent
b33fdd5e39
commit
c3ccc3e170
6
blog.py
6
blog.py
|
@ -360,13 +360,15 @@ def htmlBlogPost(authorized: bool,
|
||||||
|
|
||||||
blogStr += '<a href="' + httpPrefix + '://' + \
|
blogStr += '<a href="' + httpPrefix + '://' + \
|
||||||
domainFull + '/blog/' + nickname + '/rss.xml">'
|
domainFull + '/blog/' + nickname + '/rss.xml">'
|
||||||
blogStr += '<img loading="lazy" alt="RSS 2.0" ' + \
|
blogStr += '<img style="width:3%;min-width:50px" ' + \
|
||||||
|
'loading="lazy" alt="RSS 2.0" ' + \
|
||||||
'title="RSS 2.0" src="/' + \
|
'title="RSS 2.0" src="/' + \
|
||||||
iconsDir + '/rss.png" /></a>'
|
iconsDir + '/rss.png" /></a>'
|
||||||
|
|
||||||
blogStr += '<a href="' + httpPrefix + '://' + \
|
blogStr += '<a href="' + httpPrefix + '://' + \
|
||||||
domainFull + '/blog/' + nickname + '/rss.txt">'
|
domainFull + '/blog/' + nickname + '/rss.txt">'
|
||||||
blogStr += '<img loading="lazy" alt="RSS 3.0" ' + \
|
blogStr += '<img style="width:3%;min-width:50px" ' + \
|
||||||
|
'loading="lazy" alt="RSS 3.0" ' + \
|
||||||
'title="RSS 3.0" src="/' + \
|
'title="RSS 3.0" src="/' + \
|
||||||
iconsDir + '/rss3.png" /></a>'
|
iconsDir + '/rss3.png" /></a>'
|
||||||
|
|
||||||
|
|
|
@ -769,7 +769,8 @@ def htmlHashtagSearch(nickname: str, domain: str, port: int,
|
||||||
# RSS link for hashtag feed
|
# RSS link for hashtag feed
|
||||||
hashtagSearchForm += '<center><a href="/tags/rss2/' + hashtag + '">'
|
hashtagSearchForm += '<center><a href="/tags/rss2/' + hashtag + '">'
|
||||||
hashtagSearchForm += \
|
hashtagSearchForm += \
|
||||||
'<img style="width:3%;min-width:50px" loading="lazy" alt="RSS 2.0" ' + \
|
'<img style="width:3%;min-width:50px" ' + \
|
||||||
|
'loading="lazy" alt="RSS 2.0" ' + \
|
||||||
'title="RSS 2.0" src="/' + \
|
'title="RSS 2.0" src="/' + \
|
||||||
iconsDir + '/rss.png" /></a></center>'
|
iconsDir + '/rss.png" /></a></center>'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue