You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
<html lang="en"> |
|
<head> |
|
<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') }}"> |
|
</head> |
|
<body> |
|
<nav> |
|
<div class="row justify-space-between half-margin"> |
|
<div> |
|
<a href="/"><b>Capsul</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="/faq">FAQ</a> |
|
<a href="/changelog">Changelog</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> |
|
(c) Attribution-ShareAlike 4.0 International <br/> |
|
A service by Cyberia Computer Club 2020-<span class="bigtext">∞</span> <br/> |
|
<br/> |
|
<br/> |
|
<a href="https://giit.cyberia.club/~forest/capsul-flask/tree/master/capsulflask{% block pagesource %}{% endblock %}">View page source</a> |
|
</footer> |
|
</body> |
|
</html> |
|
|
|
|
|
|