New blog access key

merge-requests/30/head
Bob Mottram 2022-05-25 20:33:09 +01:00
parent 4a4f22504f
commit 3eeb9383e3
2 changed files with 4 additions and 4 deletions

View File

@ -77,7 +77,7 @@ def get_right_column_content(base_dir: str, nickname: str, domain_full: str,
' <a href="' + \
'/users/' + nickname + '/newblog?nodropdown" ' + \
'title="' + title_str + '" ' + \
'accesskey="' + access_keys['menuNewPost'] + '">' + \
'accesskey="' + access_keys['menuNewBlog'] + '">' + \
'<button class="publishbtn" tabindex="4">' + \
translate['Publish'] + '</button></a>\n'
else:
@ -183,7 +183,7 @@ def get_right_column_content(base_dir: str, nickname: str, domain_full: str,
html_str += \
' <a href="' + \
'/users/' + nickname + '/newblog?nodropdown" ' + \
'accesskey="' + access_keys['menuNewPost'] + \
'accesskey="' + access_keys['menuNewBlog'] + \
'" class="imageAnchor" tabindex="4">' + \
'<img class="' + edit_image_class + \
'" loading="lazy" decoding="async" alt="' + \

View File

@ -127,7 +127,7 @@ def _html_timeline_new_post(manually_approve_followers: bool,
new_post_button_str += \
'<a class="imageAnchor" href="' + users_path + \
'/newblog" tabindex="3" accesskey="' + \
access_keys['menuNewBlog'] + '">' + \
access_keys['menuNewPost'] + '">' + \
'<img loading="lazy" decoding="async" src="/' + \
'icons/newpost.png" title="' + \
translate['Create a new post'] + '" alt="| ' + \
@ -137,7 +137,7 @@ def _html_timeline_new_post(manually_approve_followers: bool,
new_post_button_str += \
'<a href="' + users_path + \
'/newblog" tabindex="3" accesskey="' + \
access_keys['menuNewBlog'] + '">' + \
access_keys['menuNewPost'] + '">' + \
'<button class="button"><span>' + \
translate['Post'] + '</span></button></a>'
elif box_name == 'tlshares':