-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (64 loc) · 3.33 KB
/
index.html
File metadata and controls
73 lines (64 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../styles/index.css">
<link rel="stylesheet" href="../styles/notification.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<link rel="shortcut icon" href="/images/siteicon.png" />
<title>Глаjjвная</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light mb-3">
<b class="navbar-brand">Блог 607</b>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarInfo"
aria-controls="navbarInfo" aria-expanded="false" aria-label="Переключатель навигации">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarInfo">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="/">Главная</a>
</li>
<li class="nav-item" style="display: none" id="communities">
<a class="nav-link" href="/communities">Группы</a>
</li>
<li class="nav-item" style="display: none" id="authors">
<a class="nav-link" href="/authors">Авторы</a>
</li>
</ul>
<ul class="navbar-nav ml-auto mr-2 mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" id="loginButton" style="display: block" href="/login/">Войти</a>
</li>
<li class="nav-item mt-auto mb-auto mr-3" style="display: none;" id="create-post">
<button id="create-post-button" class="btn btn-outline-primary mr-2">Написать пост</button>
</li>
<li class="dropdown" style="display: none" id="user-menu">
<a class="nav-link dropdown-toggle" id="dropdownMenuButton" data-toggle="dropdown" role="button">
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="/" id="logout">Выйти</a>
<a class="dropdown-item" href="/profile">Профиль</a>
</div>
</li>
</ul>
</div>
</nav>
<div id="notification" class="hidden">
<p id="notification-text"></p>
</div>
<div id="app"></div>
<footer class="sticky-footer">
<p class="mb-0">© 2023 - Блог 607</p>
</footer>
<meta class="title-of-page" name="hidden" content="Главная">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script type="module" src="../scriptsJS/routing/routing.js"></script>
<script type="module" src="../scriptsJS/helpers/navbarInfoHelper.js"></script>
</body>
</html>