-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
66 lines (66 loc) · 1.63 KB
/
template.html
File metadata and controls
66 lines (66 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rss reader</title>
</head>
<body>
<main role="main" class="container bg-light">
<h1 class="pt-4">Aliexpress</h1>
<p class="lead">
Neither snow nor rain nor heat nor gloom of night stays these couriers
from the swift completion of their appointed rounds.
</p>
<form id="form" class="container">
<label
id="label"
for="url"
class="text-success row mb-2"
>
Url for feed
</label>
<input
id="url"
type="text"
class="form-control is-valid row mb-2"
placeholder="Type address"
/>
<small id="help" class="invisible row mb-2"></small>
<button
id="add"
class="btn btn-outline-success row"
type="submit"
>
Add
</button>
</form>
<h2 class="mt-4">Feeds:</h2>
<ul id="feeds" class="list-group"></ul>
<h2 class="mt-4">Articles:</h2>
<div id="articles" class="list-group"></div>
</main>
<div
class="modal fade"
id="modal"
tabindex="-1"
aria-labelledby="modalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<p></p>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
</body>
</html>