capsul-flask/capsulflask/landing.py

39 lines
901 B
Python
Raw Normal View History

from flask import Blueprint
from flask import render_template
2020-05-16 04:19:01 +00:00
from flask import current_app
from capsulflask.db import get_model
from capsulflask.shared import *
bp = Blueprint("landing", __name__, url_prefix="/")
@bp.route("/")
def index():
return render_template("index.html")
2020-06-08 23:27:13 +00:00
@bp.route("/pricing")
def pricing():
vm_sizes = get_model().vm_sizes_dict()
operating_systems = get_model().operating_systems_dict()
return render_template(
"pricing.html",
vm_sizes=vm_sizes,
operating_systems=operating_systems
)
2020-06-08 23:27:13 +00:00
@bp.route("/faq")
def faq():
return render_template("faq.html", ssh_username=current_app.config['SSH_USERNAME'])
2021-01-31 04:14:04 +00:00
@bp.route("/about-ssh")
def about_ssh():
return render_template("about-ssh.html")
@bp.route("/changelog")
def changelog():
return render_template("changelog.html")
@bp.route("/support")
def support():
2020-06-08 23:27:13 +00:00
return render_template("support.html")