mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
8 lines
216 B
Python
8 lines
216 B
Python
|
from flask import render_template
|
||
|
from . import content
|
||
|
|
||
|
|
||
|
@content.route('/about_faq')
|
||
|
def about_faq():
|
||
|
return render_template('content/about_faq.html.j2',
|
||
|
title='About Nopaqe and FAQ')
|