From dd607b3c9b79e7ff8f5f9522d38db0f9297fb7f0 Mon Sep 17 00:00:00 2001 From: j3s Date: Mon, 8 Jun 2020 18:27:13 -0500 Subject: [PATCH] Add pricing details to front page --- capsulflask/landing.py | 6 +++++- capsulflask/templates/base.html | 1 + capsulflask/templates/pricing.html | 24 ++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 capsulflask/templates/pricing.html 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 @@