forked from indymedia/epicyon
Separator path
parent
d1e197326c
commit
6782c23a32
|
@ -6801,14 +6801,12 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
||||||
# This changes depending upon theme
|
# This changes depending upon theme
|
||||||
iconsDir = getIconsDir(baseDir)
|
iconsDir = getIconsDir(baseDir)
|
||||||
|
|
||||||
separatorImageFilename = iconsDir + '/separator.png'
|
separatorImageFilename = baseDir + '/img/' + iconsDir + '/separator.png'
|
||||||
separatorStr = ''
|
separatorStr = ''
|
||||||
print('separatorImageFilename: ' + separatorImageFilename)
|
|
||||||
if os.path.isfile(separatorImageFilename):
|
if os.path.isfile(separatorImageFilename):
|
||||||
separatorStr = \
|
separatorStr = \
|
||||||
'<div class="postSeparatorImage">' + \
|
'<div class="postSeparatorImage">' + \
|
||||||
'<img src="/' + \
|
'<img src="/' + iconsDir + '/separator.png"/>' + \
|
||||||
iconsDir.split('/img/')[1] + '/separator.png"/>' + \
|
|
||||||
'</div>\n'
|
'</div>\n'
|
||||||
|
|
||||||
# the css filename
|
# the css filename
|
||||||
|
|
Loading…
Reference in New Issue