32 lines
993 B
HTML
32 lines
993 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
<link href="./node_modules/bootstrap-icons/font/bootstrap-icons.min.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="./static/css/base.css">
|
|
<title>Неконтакте</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header class="sticky-top">
|
|
<nav class="navbar">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand">неконтакте</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main class="px-4 pt-4 d-flex position-relative">
|
|
|
|
</main>
|
|
<footer class="py-2 d-flex justify-content-center">
|
|
<span>© <span id="current-year"></span> Неконтакте</span>
|
|
</footer>
|
|
</body>
|
|
<script>document.getElementById('current-year').innerHTML = new Date().getFullYear();</script>
|
|
|
|
</html>
|