-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (110 loc) · 3.34 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
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
<!DOCTYPE html>
<html lang="ru">
<head>
<style>
html:lang(en) *:not(:lang(en)) {
display: none;
}
html:lang(ru) *:not(:lang(ru)) {
display: none;
}
</style>
<title lang="en">RSS aggregator</title>
<title lang="ru">RSS агрегатор</title>
</head>
<body>
<main class="flex-grow-1">
<div
class="modal fade"
tabindex="-1"
id="modal"
aria-labelledby="modalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalLabel"></h5>
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body"></div>
<div class="modal-footer">
<a
class="btn btn-primary"
role="button"
target="_blank"
rel="noopener noreferrer"
></a>
<button
type="button"
class="btn btn-secondary"
data-dismiss="modal"
></button>
</div>
</div>
</div>
</div>
<section class="jumbotron jumbotron-fluid bg-dark">
<div class="container-xl">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto text-white">
<h1 class="display-3">
<span lang="en">RSS Reader</span>
<span lang="ru">RSS Читалка</span>
</h1>
<p class="lead">
<span lang="en">
Start reading RSS today! It is easy, it is nicely.
</span>
<span lang="ru">
Начните читать RSS сегодня! Это легко, это весело.
</span>
</p>
<form>
<div class="form-row">
<div class="col">
<input
required
type="url"
class="form-control form-control-lg w-100"
placeholder="RSS link"
name="rssLink"
/>
</div>
<div class="col-auto">
<button
type="submit"
class="btn btn-lg btn-primary px-sm-5"
>
<span lang="en">Add</span>
<span lang="ru">Добавить</span>
</button>
</div>
</div>
</form>
<p class="text-muted my-1">
Example: https://ru.hexlet.io/lessons.rss
</p>
<div class="feedback"> </div>
</div>
</div>
</div>
</section>
<div class="container-xl">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto feeds"></div>
</div>
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto posts"></div>
</div>
</div>
</main>
</body>
</html>