forked from 3wordchant/capsul-flask
added FAQ, Changelog, and Support static pages
This commit is contained in:
@ -14,3 +14,18 @@ from capsulflask.db import get_model
|
||||
|
||||
bp = Blueprint("landing", __name__, url_prefix="/")
|
||||
|
||||
@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")
|
Reference in New Issue
Block a user