2020-05-11 02:43:06 +00:00
|
|
|
from flask import Blueprint
|
|
|
|
from flask import render_template
|
|
|
|
|
|
|
|
bp = Blueprint("landing", __name__, url_prefix="/")
|
|
|
|
|
2020-05-11 03:55:16 +00:00
|
|
|
@bp.route("/")
|
|
|
|
def index():
|
|
|
|
return render_template("index.html")
|
|
|
|
|
|
|
|
@bp.route("/faq")
|
|
|
|
def faq():
|
|
|
|
return render_template("faq.html")
|
|
|
|
|
|
|
|
@bp.route("/changelog")
|
|
|
|
def changelog():
|
|
|
|
return render_template("changelog.html")
|
|
|
|
|
|
|
|
@bp.route("/support")
|
|
|
|
def support():
|
|
|
|
return render_template("support.html")
|