-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
39 lines (36 loc) · 1.22 KB
/
template.html
File metadata and controls
39 lines (36 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>RSS reader</title>
</head>
<body>
<div class="jumbotron">
<h1 class="display-4">RSS Reader</h1>
<hr class="my-4">
<form id="rss-form" class="form">
<div class="form-group">
<input class="form-input form-control w-50" type="text" placeholder="Please, write URL">
<div class="invalid-feedback"></div>
</div>
<button class="btn btn-primary btn-lg" type="submit">add feed</button>
</form>
</div>
<div class="rss-list container"></div>
<div class="modal fade" id="descriptionModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="descriptionModalLabel">Описание</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>
</div>
</div>
</body>
</html>