forked from 3wordchant/capsul-flask
capsulflask
btcpay
schema_migrations
shell_scripts
static
templates
about-ssh.html
account-balance.html
admin.html
base.html
btcpay.html
capsul-detail.html
capsuls.html
changelog.html
create-capsul.html
display-metric.html
faq.html
index.html
keys.html
login-landing.html
login.html
pricing.html
stripe.html
support.html
theme
__init__.py
admin.py
auth.py
cli.py
console.py
db.py
db_model.py
http_client.py
hub_api.py
hub_model.py
landing.py
metrics.py
payment.py
publicapi.py
shared.py
spoke_api.py
spoke_model.py
docs
.drone.yml
.gitignore
Dockerfile
LICENSE.md
Pipfile
Pipfile.lock
README.md
app.py
docker-compose.yml
letsencrypt-root-ca.crt
setup.cfg
setup.py
34 lines
987 B
HTML
34 lines
987 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
<h1>CAPSUL</h1>
|
|
<pre>
|
|
.-.
|
|
/:::\
|
|
/::::/
|
|
/ `-:/
|
|
/ /
|
|
\ /
|
|
`"`
|
|
</pre>
|
|
<span>Simple, fast, private compute by <a href="https://cyberia.club">cyberia.club</a></span>
|
|
{% endblock %}
|
|
|
|
{% block subcontent %}
|
|
<p>
|
|
<ul>
|
|
<li>Low friction: simply log in with your email address and fund your account with Credit/Debit or Cryptocurrency</li>
|
|
<li>All root disks are backed up at no charge</li>
|
|
<li>All storage is fast, local, and solid-state</li>
|
|
<li>All network connections are low latency</li>
|
|
<li>Supported by amazing volunteers from Cyberia</li>
|
|
<li>Upfront prices, no confusing billing</li>
|
|
<li>Operated by a Minnesota non-profit organization that will never exploit you</li>
|
|
<li>We donate a portion of our proceeds to likeminded hacker groups around the globe</li>
|
|
</ul>
|
|
</p>
|
|
{% endblock %}
|
|
|
|
{% block pagesource %}/templates/index.html{% endblock %}
|