Add About/FAQ page

This commit is contained in:
Stephan Porada
2020-09-21 14:37:46 +02:00
parent 3572966190
commit f53689af2c
5 changed files with 276 additions and 3 deletions

View 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
View 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')