nopaque/web/app/content/views.py

14 lines
363 B
Python
Raw Normal View History

2020-09-21 12:37:46 +00:00
from flask import render_template
from . import content
@content.route('/about_faq')
def about_faq():
return render_template('content/about_faq.html.j2',
2020-09-21 13:25:28 +00:00
title='About Nopaqe and FAQ')
@content.route('/news_launch')
def news_launch():
return render_template('content/news_launch.html.j2',
title='')