mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2026-05-12 18:44:38 +00:00
Add About/FAQ page
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
from flask import Blueprint
|
||||
|
||||
|
||||
content = Blueprint('content', __name__)
|
||||
from . import views # noqa
|
||||
@@ -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