-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (74 loc) · 3.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>RSS-aggregator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="modal" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"></h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
<a role="button" target="_blank" class="btn btn-primary full-article">Читать полностью</a>
</div>
</div>
</div>
</div>
<section class="container-fluid bg-dark p-5">
<div class="row">
<div class="fixed-top d-flex justify-content-end mt-2">
<div class="updating-error-alert alert alert-danger d-none" role="alert">Не удалось обновить посты</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-lg-8 mx-auto text-white">
<h1 class="display-4">RSS-Агрегатор</h1>
<p class="lead">Начните читать RSS сегодня! Это легко, это красиво.</p>
<form class="rss-form text-body">
<div class="row">
<div class="col-sm-12 col-md-8 col-lg-10 mb-2">
<div class="form-floating">
<input id="url-input" class="form-control" aria-label="url" name="url" placeholder="Ссылка RSS" autofocus autocomplete="off" required>
<label for="url-input">Ссылка RSS</label>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-2 d-grid d-lg-block mb-2">
<button type="submit" aria-label="add" name="add" class="btn btn-primary btn-lg h-100 px-sm-5">Добавить</button>
</div>
</div>
</form>
<p class="text-muted mb-0">Пример: https://ru.hexlet.io/lessons.rss</p>
<p class="feedback small position-absolute"></p>
</div>
</div>
</section>
<section class="container-fluid container-xxl p-5">
<div class="row">
<div class="posts col-sm-12 col-md-8">
<div class="card border-0 d-none">
<div class="card-body">
<h2 class="card-title h4">Посты</h2>
</div>
<ul class="list-group border-0 rounded-0"></ul>
</div>
</div>
<div class="feeds col-sm-12 col-md-4">
<div class="card border-0 d-none">
<div class="card-body">
<h2 class="card-title h4">Фиды</h2>
</div>
<ul class="list-group border-0 rounded-0"></ul>
</div>
</div>
</div>
</section>
</body>
</html>