forked from 3wordchant/capsul-flask
capsulflask
btcpay
schema_migrations
shell_scripts
static
templates
theme
yolocolo
account-balance.html
base.html
capsuls.html
faq.html
index.html
pricing.html
support.html
__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
shared.py
spoke_api.py
spoke_model.py
readme
.drone.yml
.gitignore
Dockerfile
LICENSE.md
Pipfile
Pipfile.lock
README.md
app.py
docker-compose.yml
letsencrypt-root-ca.crt
setup.cfg
setup.py
61 lines
2.0 KiB
HTML
61 lines
2.0 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<!-- Namecoin Address: N2aVL6pHtBp7EtNGb3jpsL2L2NyjBNbiB1 -->
|
|
<link href="{{ url_for('static', filename='favicon.ico') }}" rel="icon">
|
|
<title>{% block title %}{% endblock %}{% if self.title() %} - {% endif %}Capsul</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<meta name="Description" content="Cyberia Capsul">
|
|
{% block head %}{% endblock %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.yolocolo.css') }}">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<div class="row justify-space-between half-margin">
|
|
<div>
|
|
🦉 <a href="/"><b>YOLOCOLO</b></a>
|
|
</div>
|
|
<div>
|
|
|
|
{% if session["account"] %}
|
|
{ {{ session["account"] }} <a href="{{ url_for('auth.logout') }}">Log Out</a> }
|
|
{% else %}
|
|
<a href="{{ url_for('auth.login') }}">Login</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="row justify-center half-margin wrap nav-links">
|
|
<a href="/pricing">Pricing</a>
|
|
<a href="/faq">FAQ</a>
|
|
|
|
{% if session["account"] %}
|
|
<a href="/console">Capsuls</a>
|
|
<a href="/console/ssh">SSH Public Keys</a>
|
|
<a href="/console/account-balance">Account Balance</a>
|
|
{% endif %}
|
|
|
|
<a href="/support">Support</a>
|
|
</div>
|
|
</nav>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class="flash">{{ message }}</div>
|
|
{% endfor %}
|
|
{% block custom_flash %}{% endblock %}
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% block subcontent %}{% endblock %}
|
|
<footer>
|
|
This server runs <a
|
|
href="https://giit.cyberia.club/~forest/capsul-flask">capsul-flask</a> by
|
|
Cyberia Computer Club, available under the <a
|
|
href="https://creativecommons.org/licenses/by-sa/4.0/">Attribution-ShareAlike
|
|
4.0 International</a> licence.<br/><br/>
|
|
<a href="https://git.autonomic.zone/3wordchant/capsul-flask/src/branch/yolocolo/capsulflask{% block pagesource %}{% endblock %}">View page source</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|
|
|