mirror of https://gitlab.com/bashrc2/epicyon
Separator above page up
parent
033dc4a238
commit
3d5ff0ecec
|
@ -590,8 +590,14 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
||||||
|
|
||||||
_logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '7')
|
_logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '7')
|
||||||
|
|
||||||
|
# separator between posts which only appears in shell browsers
|
||||||
|
# such as Lynx and is not read by screen readers
|
||||||
|
textModeSeparator = \
|
||||||
|
'<div class="transparent"><hr></div>'
|
||||||
|
|
||||||
# page up arrow
|
# page up arrow
|
||||||
if pageNumber > 1:
|
if pageNumber > 1:
|
||||||
|
tlStr += textModeSeparator
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <center>\n' + \
|
' <center>\n' + \
|
||||||
' <a href="' + usersPath + '/' + boxName + \
|
' <a href="' + usersPath + '/' + boxName + \
|
||||||
|
@ -602,11 +608,6 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
||||||
translate['Page up'] + '"></a>\n' + \
|
translate['Page up'] + '"></a>\n' + \
|
||||||
' </center>\n'
|
' </center>\n'
|
||||||
|
|
||||||
# separator between posts which only appears in shell browsers
|
|
||||||
# such as Lynx and is not read by screen readers
|
|
||||||
textModeSeparator = \
|
|
||||||
'<div class="transparent"><hr></div>'
|
|
||||||
|
|
||||||
# show the posts
|
# show the posts
|
||||||
itemCtr = 0
|
itemCtr = 0
|
||||||
if timelineJson:
|
if timelineJson:
|
||||||
|
|
Loading…
Reference in New Issue