-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 2.27 KB
/
index.html
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
<!DOCTYPE html>
<html lang="rus">
<head>
<meta charset="utf-8" />
<title>Rss reader</title>
</head>
<body>
<div class="container-fluid text-light py-5 bg-dark">
<form class="row col-8 mx-auto">
<h1 class="display-3 p-0 mb-3">RSS агрегатор</h1>
<input autofocus required placeholder="RSS ссылка" class="form-control w-75 me-4" />
<button id="addButton" class="col btn btn-primary text-center py-3">Добавить</button>
<p class = "mt-2 text-danger"></p>
</form>
</div>
<div class="container mt-4">
<div class="row mx-auto mb-5">
<div class="col-8 invisible" id="posts">
<h2 class="p-3">Посты</h2>
<ul class="list-group"></ul>
</div>
<div class="col-4 invisible" id="feeds">
<h2 class="p-3">Фиды</h2>
<ul class="list-group"></ul>
</div>
</div>
</div>
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header d-flex justify-content-between">
<h5 class="modal-title" id="title"></h5>
<button type="button" class="btn-close close border-0" data-dismiss="modal" aria-label="Close" data-bs-target="#modal" data-bs-toggle="modal"></button>
</div>
<div class="modal-body" id="description"></div>
<div class="modal-footer">
<button id="closeButton" type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
<a id="readMore" target="_blank" type="button" class="btn btn-primary">Читать полностью</a>
</div>
</div>
</div>
</div>
<!-- <div id="language" class="fixed-top">
<p type="button" class="d-inline mt-3 ms-3 font-weight-bold text-white">RUS</p>
</div> -->
</body>
</html>