mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-21 13:30:35 +00:00
Add About/FAQ page
This commit is contained in:
5
web/app/content/__init__.py
Normal file
5
web/app/content/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
from flask import Blueprint
|
||||
|
||||
|
||||
content = Blueprint('content', __name__)
|
||||
from . import views # noqa
|
8
web/app/content/views.py
Normal file
8
web/app/content/views.py
Normal file
@ -0,0 +1,8 @@
|
||||
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')
|
Reference in New Issue
Block a user