Add pricing details to front page
This commit is contained in:
parent
22f85dcd85
commit
dd607b3c9b
@ -8,6 +8,10 @@ bp = Blueprint("landing", __name__, url_prefix="/")
|
|||||||
def index():
|
def index():
|
||||||
return render_template("index.html")
|
return render_template("index.html")
|
||||||
|
|
||||||
|
@bp.route("/pricing")
|
||||||
|
def pricing():
|
||||||
|
return render_template("pricing.html")
|
||||||
|
|
||||||
@bp.route("/faq")
|
@bp.route("/faq")
|
||||||
def faq():
|
def faq():
|
||||||
return render_template("faq.html")
|
return render_template("faq.html")
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row justify-center half-margin wrap nav-links">
|
<div class="row justify-center half-margin wrap nav-links">
|
||||||
|
<a href="/pricing">Pricing</a>
|
||||||
<a href="/faq">FAQ</a>
|
<a href="/faq">FAQ</a>
|
||||||
<a href="/changelog">Changelog</a>
|
<a href="/changelog">Changelog</a>
|
||||||
|
|
||||||
|
24
capsulflask/templates/pricing.html
Normal file
24
capsulflask/templates/pricing.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block title %}Pricing{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="row third-margin">
|
||||||
|
<h1>CAPSUL TYPES & PRICING</h1>
|
||||||
|
</div>
|
||||||
|
<div class="row half-margin">
|
||||||
|
<pre>
|
||||||
|
type monthly* cpus mem ssd net*
|
||||||
|
----- ------- ---- --- --- ---
|
||||||
|
f1-xs $5.00 1 512M 25G .5TB
|
||||||
|
f1-s $7.50 1 1024M 25G 1TB
|
||||||
|
f1-m $12.50 1 2048M 25G 2TB
|
||||||
|
f1-l $20.00 2 3072M 25G 3TB
|
||||||
|
f1-x $27.50 3 4096M 25G 4TB
|
||||||
|
f1-xx $50.00 4 8192M 25G 5TB
|
||||||
|
|
||||||
|
* net is calculated as a per-month average
|
||||||
|
* vms are billed for a minimum of 24 hours upon creation
|
||||||
|
* all VMs come standard with one public IPv4 address</pre>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user