77 lines
3.4 KiB
HTML
77 lines
3.4 KiB
HTML
<!doctype html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<link rel="icon" href="https://deev.space/media/favicon.ico" type="image/x-icon">
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
||
|
||
<title>
|
||
{% if title %}
|
||
{{ title }}
|
||
{% else %}
|
||
Лабораторная работа №2
|
||
{% endif %}
|
||
</title>
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||
<div class="container">
|
||
<a class="navbar-brand" href="{{ url_for('index') }}">Лабораторная работа № 2</a>
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
||
<li class="nav-item">
|
||
<a class="nav-link" aria-current="page" href="{{ url_for('index') }}">Задание</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" aria-current="page" href="{{ url_for('posts') }}">Посты</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="{{ url_for('login') }}">Данные запроса</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="{{ url_for('phone') }}">Телефон</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="{{ url_for('about') }}">Об авторе</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
|
||
<main class="my-1">
|
||
<div class="container">
|
||
{% block content %}
|
||
<h1>Содержимое по умолчанию</h1>
|
||
{% endblock %}
|
||
</div>
|
||
</main>
|
||
|
||
<footer>
|
||
<div class="container">
|
||
<div class="footer-content">
|
||
<div>
|
||
<div class="footer-name">Деев Егор Викторович, ст. гр. 241-327</div>
|
||
<div class="footer-group">Московский Политехнический университет</div>
|
||
</div>
|
||
<div class="footer-links">
|
||
<a href="mailto:egor@deev.space">egor@deev.space</a>
|
||
<a href="https://deev.space" target="_blank">My Site</a>
|
||
<a href="https://t.me/Egor_Deev" target="_blank">Telegram</a>
|
||
<a href="https://github.com/EDeev" target="_blank">GitHub</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
||
</body>
|
||
</html>
|