capsul-flask/capsulflask/templates/pricing.html

24 lines
558 B
HTML
Raw Normal View History

2020-06-08 23:27:13 +00:00
{% 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">
2021-07-20 23:43:45 +00:00
<p>
Rates for this service isn't set yet. You can see Cyberia's Capsul pricing
on <a href="https://capsul.org/pricing">their website</a>.
</p>
</div>
2021-07-20 23:43:45 +00:00
<div>
2020-06-08 23:27:13 +00:00
<pre>
2021-07-20 23:43:45 +00:00
SUPPORTED OPERATING SYSTEMS:
2021-07-20 23:43:45 +00:00
{% for os_id, os in operating_systems.items() %} - {{ os.description }}
{% endfor %}
</pre>
2020-06-08 23:27:13 +00:00
</div>
{% endblock %}