This commit is contained in:
Juhani Krekelä 2018-04-07 20:30:30 +03:00
parent 027fb8385d
commit d0de210c4f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def generate_nav(*, soup):
for board in ['a', 'b', 'his', 'g']:
# FIXME: Read this from a config file
url = 'board/' + urllib.parse.quote(board, safe = '') + '/'
url = '/board/' + urllib.parse.quote(board, safe = '') + '/'
a_tag = soup.new_tag('a', href = url)
a_tag.string = '/' + board + '/'
nav_tag.append(a_tag)