-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (129 loc) · 4.24 KB
/
index.html
File metadata and controls
129 lines (129 loc) · 4.24 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>RSS Агрегатор</title>
<script id="data" type="application/json"></script>
<link href="src/styles.scss" />
<link rel="icon" href="src/images/favicon.svg" type="image/svg+xml">
<link rel="shortcut icon" href="src/images/favicon.svg" type="image/svg+xml">
</head>
<body class="d-flex flex-column min-vh-100">
<div
class="modal fade"
id="modal"
tabindex="-1"
role="dialog"
aria-labelledby="modal"
aria-hidden="true"
>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"></h5>
<button
type="button"
class="btn-close close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text-break"></div>
<div class="modal-footer">
<a
class="btn btn-primary full-article"
href="#"
role="button"
target="_blank"
rel="noopener noreferrer"
>Читать полностью </a
><button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Закрыть
</button>
</div>
</div>
</div>
</div>
<main class="flex-grow-1">
<section class="container-fluid bg-dark p-5">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto text-white">
<h1 class="display-3 mb-0">RSS агрегатор</h1>
<p class="lead">
Начните читать RSS сегодня! Это легко, это красиво.
</p>
<form action="" class="rss-form text-body">
<div class="row">
<div class="col">
<div class="form-floating">
<input
id="url-input"
autofocus
required
name="url"
aria-label="url"
class="form-control w-100"
placeholder="ссылка RSS"
autocomplete="off"
/>
<label for="url-input">Ссылка RSS</label>
</div>
</div>
<div class="col-auto">
<button
type="submit"
aria-label="add"
class="h-100 btn btn-lg btn-primary px-sm-5"
>
Добавить
</button>
</div>
</div>
</form>
<p class="mt-2 mb-0 text-secondary">
Пример: https://lorem-rss.hexlet.app/feed
</p>
<p class="feedback m-0 position-absolute small text-danger"></p>
</div>
<div class="col-auto h-50" id="block-lng">
<div class="btn-group-vertical" role="group">
<label class="btn btn-outline-secondary" data-lng="ru"
>ру</label
>
<label class="btn btn-outline-secondary" data-lng="en"
>en</label
>
</div>
</div>
</div>
</section>
<section class="container-fluid container-xxl p-5">
<div class="row">
<div class="col-md-10 col-lg-8 order-1 mx-auto posts"></div>
<div
class="col-md-10 col-lg-4 mx-auto order-0 order-lg-1 feeds"
></div>
</div>
</section>
</main>
<footer class="footer border-top py-3 mt-5 bg-light">
<div class="container-xl">
<div class="text-center">
created by
<a href="https://github.com/bdcry/frontend-project-11" target="_blank"
>bdcry</a
>
</div>
</div>
</footer>
</body>
</html>