2024-01-31 19:37:01 +10:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2024-03-07 16:18:48 +10:00
|
|
|
<title>PaperParser: {% block title %}{% endblock %}</title>
|
2024-01-31 19:37:01 +10:00
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<!-- Bootstrap CSS v5.2.1 -->
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
|
|
|
|
|
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
|
|
</head>
|
|
|
|
|
2024-03-07 16:18:48 +10:00
|
|
|
<body class="d-flex flex-column vh-100">
|
2024-01-31 19:37:01 +10:00
|
|
|
<header>
|
|
|
|
<!-- place navbar here -->
|
2024-03-07 16:18:48 +10:00
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light mb-3">
|
2024-01-31 19:37:01 +10:00
|
|
|
<div class="container justify-content-beetwen">
|
|
|
|
<a class="navbar-brand" href="/">PaperParser</a>
|
2024-03-07 16:18:48 +10:00
|
|
|
<ul class="navbar-nav">
|
|
|
|
<li class="nav-item"><a class="nav-link" href="/collections">Пользователи</a></li>
|
|
|
|
<li class="nav-item"><a class="nav-link" href="/tasks">Задачи</a></li>
|
|
|
|
<li class="nav-item"><a class="btn btn-outline-success ms-2" href="/add" role="button">Войти</a></li>
|
2024-01-31 19:37:01 +10:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2024-03-07 16:18:48 +10:00
|
|
|
|
|
|
|
<main class="mb-3">
|
2024-01-31 19:37:01 +10:00
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
<footer class="container mt-auto">
|
|
|
|
<div class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
|
|
|
|
<p class="col-md-4 mb-0 text-body-secondary">Anatoly "wineT" Bogomolov</p>
|
|
|
|
|
|
|
|
<ul class="nav col-md-4 justify-content-end">
|
|
|
|
<li class="nav-item"><a href="https://t.me/AnatolyFL" class="nav-link px-2 text-body-secondary">Telegram</a></li>
|
|
|
|
<li class="nav-item"><a href="https://mastodon.ml/@winet" class="nav-link px-2 text-body-secondary">Mastodon</a></li>
|
2024-01-31 19:44:23 +10:00
|
|
|
<li class="nav-item"><a href="https://gitea.winet.space/wineT/PaperParser" class="nav-link px-2 text-body-secondary">Project on Gitiea</a></li>
|
2024-01-31 19:37:01 +10:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Bootstrap JavaScript Libraries -->
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"
|
|
|
|
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.min.js"
|
|
|
|
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script src="https://unpkg.com/htmx.org@1.9.10" integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" crossorigin="anonymous"></script>
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
|
|
|
</body>
|
2024-04-12 16:55:27 +10:00
|
|
|
</html>
|