-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 3.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>RSS aggregator</title>
</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"></div>
<div class="modal-footer"><a class="read btn btn-primary full-article" href=""
role="button" target="_blank" rel="noopener noreferrer"></a>
<button type="button" class="close-btn btn btn-secondary" data-bs-dismiss="modal"></button>
</div>
</div>
</div>
</div>
<main class="flex-grow-1">
<section class="header container-fluid bg-dark p-5">
<div class="text-end">
<div role="group" class="btn-group btn-group-sm" aria-label="Small button group">
<button type="button" class="btn btn-outline-secondary active" data-lng="ru">ru</button>
<button type="button" class="btn btn-outline-secondary" data-lng="en">en</button>
</div>
</div>
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto text-white"><h1 class="display-3 mb-0"></h1>
<p class="lead"></p>
<form action="" class="rss-form text-body rss-link">
<div class="row">
<div class="col">
<div class="form-floating"><input id="url-input" autofocus="" name="url"
aria-label="url" class="form-control w-100"
autocomplete="off"><label for="url-input"></label></div>
</div>
<div class="col-auto">
<button type="submit" aria-label="add" class="h-100 add btn btn-lg btn-primary px-sm-5"></button>
</div>
</div>
</form>
<p class="example mt-2 mb-0 text-muted"></p>
<p class="feedback m-0 position-absolute small text-success"></p></div>
</div>
</section>
<section class="main 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/MilaNick/frontend-project-lvl3"
target="_blank">MilaNick</a></div>
</div>
</footer>
<div>
<div style="display: none; position: fixed; top: 30px; width: auto; max-width: 100%; text-align: center; left: 50%; transform: translateX(-50%); z-index: 99999999;">
<div style="display: inline-block; font-size: 14px; font-weight: bold; border: 1px solid rgb(240, 195, 109); background-color: rgb(249, 237, 190); padding: 0px 10px; border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;"></div>
</div>
</div>
</body>
</html>