This commit is contained in:
relikd
2020-09-25 02:56:16 +02:00
parent bd4a5f321f
commit 69b2875177
15 changed files with 340 additions and 193 deletions

View File

@@ -65,7 +65,7 @@ def h2(inner, attr=None):
def a_path(parts, suffix):
''' expects (name, url) tuples '''
return ' / '.join(['<a href="{}/">{}</a>'.format(url, title)
return ' / '.join(['<a href="{}">{}</a>'.format(url, title)
for title, url in parts] + [suffix])