2023-01-01 11:13:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ current_lang }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
{% block head %}
|
|
|
|
<meta name="description" content="" />
|
|
|
|
<meta name="keywords" content="" />
|
|
|
|
<title>{{ _("PyNyaaTa") }}</title>
|
|
|
|
{% endblock head %}
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="{{ url_for('static', filename='css/bulma.min.css') }}"/>
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="{{ url_for('static', filename='css/bulma-prefers-dark.min.css') }}"/>
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="{{ url_for('static', filename='css/bulma-tooltip.min.css') }}"/>
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="{{ url_for('static', filename='css/font-awesome.min.css') }}"/>
|
2023-01-01 20:59:57 +00:00
|
|
|
<link rel="stylesheet"
|
|
|
|
href="{{ url_for('static', filename='css/styles.css') }}"/>
|
2023-01-01 11:13:32 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-04 13:40:19 +00:00
|
|
|
{% if request.endpoint != "index" %}
|
|
|
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
|
|
|
<div class="navbar-brand">
|
2023-01-04 15:57:16 +00:00
|
|
|
<a class="navbar-item" href="{{ url_for('index') }}">{{ _("𝚷😼た") }}</a>
|
2023-01-04 13:40:19 +00:00
|
|
|
</div>
|
|
|
|
<div class="navbar-start">
|
|
|
|
{% block links %}
|
|
|
|
{% endblock links %}
|
|
|
|
</div>
|
2023-01-04 15:57:16 +00:00
|
|
|
<div class="navbar-menu">
|
|
|
|
<div class="navbar-end">
|
|
|
|
<form action="{{ url_for('search') }}" class="navbar-item">
|
|
|
|
<div class="field has-addons">
|
|
|
|
<div class="control">
|
|
|
|
{{ search_form.q(placeholder=_("Search animes ..."), class="input", value=request.args.get("q", "")) }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<button type="submit" class="button">
|
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
2023-01-04 13:40:07 +00:00
|
|
|
</div>
|
2023-01-04 15:57:16 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-01-04 13:40:19 +00:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
{% endif %}
|
2023-01-01 11:13:32 +00:00
|
|
|
{% block body %}
|
|
|
|
{% endblock body %}
|
2023-01-04 14:43:20 +00:00
|
|
|
<footer class="has-text-centered is-size-7">
|
|
|
|
<span class="mr-2">
|
|
|
|
<i class="fa fa-user-plus"></i>
|
|
|
|
<a href="https://discord.com/users/133305654512320513" target="_blank">{{ _("Discord") }}</a>
|
|
|
|
</span>
|
|
|
|
<span class="mr-2">
|
|
|
|
<i class="fa fa-book"></i>
|
|
|
|
{# djlint:off H022 #}<a href="http://www.wtfpl.net" target="_blank">{{ _("Licence") }}</a>{# djlint:on #}
|
|
|
|
</span>
|
|
|
|
<span class="mr-2">
|
|
|
|
<i class="fa fa-code-fork"></i>
|
|
|
|
<a href="https://git.crystalyx.net/Xefir/PyNyaaTa" target="_blank">{{ _("Code") }}</a>
|
|
|
|
</span>
|
|
|
|
<span class="mr-2">
|
|
|
|
<i class="fa fa-cubes"></i>
|
|
|
|
<a href="https://hub.docker.com/r/xefir/pynyaata" target="_blank">{{ _("Docker") }}</a>
|
|
|
|
</span>
|
|
|
|
<br />
|
|
|
|
<i class="fa fa-heartbeat"></i>
|
|
|
|
{{ _("Next castastrophic life failure in about %s days", apocalypse_left.days) }}
|
2023-01-01 23:44:48 +00:00
|
|
|
</footer>
|
2023-01-01 11:13:32 +00:00
|
|
|
</body>
|
|
|
|
</html>
|