Restyle most recent list: add grid

This commit is contained in:
Yusur 2021-07-27 21:41:41 +02:00
parent 64f8b98acd
commit cb87ec347d
4 changed files with 19 additions and 7 deletions

3
app.py
View file

@ -506,7 +506,8 @@ def _before_request():
def _inject_variables():
return {
'T': partial(get_string, g.lang),
'app_name': _getconf('site', 'title')
'app_name': _getconf('site', 'title'),
'strong': lambda x:Markup('<strong>{0}</strong>').format(x),
}
@app.route('/')