-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (76 loc) · 3.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RSS aggregator</title>
</head>
<body class="d-flex flex-column min-vh-100">
<!-- modal -->
<div id="modal" class="modal fade" aria-labelledby="modalLable" tabindex="-1" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p>Modal body.</p>
</div>
<div class="modal-footer">
<a target="blank" role="button" class="btn btn-primary">Читать полностью</a>
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
</div>
</div>
</div>
</div>
<!-- modal -->
<main>
<section class="container-fluid bg-dark text-white p-5">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8 text-white">
<h1 class="display-3 mb-0">RSS агрегатор</h1>
<p class="lead">Начните читать RSS сегодня! Это легко, это красиво.</p>
<form action autocomplete="off">
<div class="row">
<div class="col">
<div class="form-floating text-body">
<input id="url-input" name="url" autofocus required class="form-control form-control-lg" aria-label="url" placeholder="Ссылка RSS">
<label for="url-input">Ссылка RSS</label>
</div>
</div>
<div class="col-auto">
<button id="submit-button" type="submit" class="btn btn-primary h-100 btn-lg px-sm-5">Добавить</button>
</div>
</div>
</form>
<p class="asd mt-2 mb-0 text-secondary">Пример: https://ru.hexlet.io/lessons.rss</p>
<p id="feedback" class="text-success small m-0 position-absolute"></p>
</div>
</div>
</section>
<!-- RSS -->
<section class="container-fluid p-5">
<div class="row">
<div class="col-lg-8 col-md-10 order-lg-0 order-1">
<div id="posts" class="card border-0"></div>
</div>
<div class="col-lg-4 col-md-10 order-lg-1 order-0">
<div id="feeds" class="card border-0"></div>
</div>
</div>
</section>
</main>
<footer class="footer p-3 mt-auto border-top bg-light">
<div class="container-fluid">
<div class="row">
<div class="col text-center">
<span>
created by <a target="_blank" href="http://github.com/artem-mar">Artem Marin</a>
</span>
</div>
</div>
</div>
</footer>
</body>
</html>