forked from indymedia/epicyon
Additional text in left column
parent
1d4362537d
commit
86df8d64ee
|
@ -943,17 +943,16 @@ aside .toggle-inside li {
|
||||||
}
|
}
|
||||||
.col-left a:link {
|
.col-left a:link {
|
||||||
background: var(--column-left-color);
|
background: var(--column-left-color);
|
||||||
color: var(--column-left-fg-color);
|
|
||||||
}
|
}
|
||||||
.col-left a:visited {
|
.col-left a:visited {
|
||||||
background: var(--column-left-color);
|
background: var(--column-left-color);
|
||||||
color: var(--column-left-fg-color);
|
|
||||||
}
|
}
|
||||||
.column-left {
|
.column-left {
|
||||||
background-color: var(--column-left-color);
|
background-color: var(--column-left-color);
|
||||||
width: var(--column-left-width);
|
width: var(--column-left-width);
|
||||||
}
|
}
|
||||||
.col-left {
|
.col-left {
|
||||||
|
color: var(--column-left-fg-color);
|
||||||
padding: 10px 10px;
|
padding: 10px 10px;
|
||||||
font-size: var(--font-size-links);
|
font-size: var(--font-size-links);
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -5195,6 +5195,16 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
|
||||||
htmlStr += \
|
htmlStr += \
|
||||||
' <p><a href="' + linkStr + '">' + \
|
' <p><a href="' + linkStr + '">' + \
|
||||||
lineStr + '</a></p>\n'
|
lineStr + '</a></p>\n'
|
||||||
|
else:
|
||||||
|
if lineStr:
|
||||||
|
if lineStr.startswith('#'):
|
||||||
|
linestr = lineStr[1:].strip()
|
||||||
|
htmlStr += \
|
||||||
|
' <h5>' + lineStr + '</h5>\n'
|
||||||
|
else:
|
||||||
|
htmlStr += \
|
||||||
|
' <p>' + lineStr + '</p>\n'
|
||||||
|
|
||||||
return htmlStr
|
return htmlStr
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue