diff --git a/capsulflask/landing.py b/capsulflask/landing.py index 0ed7a6e..dbdcfbb 100644 --- a/capsulflask/landing.py +++ b/capsulflask/landing.py @@ -8,6 +8,10 @@ bp = Blueprint("landing", __name__, url_prefix="/") def index(): return render_template("index.html") +@bp.route("/pricing") +def pricing(): + return render_template("pricing.html") + @bp.route("/faq") def faq(): return render_template("faq.html") @@ -18,4 +22,4 @@ def changelog(): @bp.route("/support") def support(): - return render_template("support.html") \ No newline at end of file + return render_template("support.html") diff --git a/capsulflask/templates/base.html b/capsulflask/templates/base.html index e1894b6..b1e9163 100644 --- a/capsulflask/templates/base.html +++ b/capsulflask/templates/base.html @@ -24,6 +24,7 @@