fix: Pass public_domain to index

pull/156/head
Raphaël Vinot 2021-01-17 12:54:16 +01:00
parent fbd981d543
commit 05b106f14b
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ def index_generic(show_hidden: bool=False, category: Optional[str]=None):
titles.append((cached.uuid, cached.title, cached.timestamp.isoformat(), cached.url, titles.append((cached.uuid, cached.title, cached.timestamp.isoformat(), cached.url,
cached.redirects, cached.incomplete_redirects)) cached.redirects, cached.incomplete_redirects))
titles = sorted(titles, key=lambda x: (x[2], x[3]), reverse=True) titles = sorted(titles, key=lambda x: (x[2], x[3]), reverse=True)
return render_template('index.html', titles=titles) return render_template('index.html', titles=titles, public_domain=lookyloo.public_domain)
# ##### Index level methods ##### # ##### Index level methods #####