-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
92 lines (88 loc) · 2.07 KB
/
test.html
File metadata and controls
92 lines (88 loc) · 2.07 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
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
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<title>Super Simple Scraper</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://cdn.trippnology.net/css/bootstrap-4.6.2.min.css"
/>
</head>
<body>
<header role="banner">
<div class="container">
<div class="row">
<div class="col">
<h1>Super Simple Scraper</h1>
</div>
</div>
</div>
</header>
<main role="main">
<div class="container">
<div class="row">
<div class="col">
<h2>Second Level Heading</h2>
<p class="lead">A lead paragraph.</p>
<p>A regular paragraph.</p>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
<img
src="https://cdn.trippnology.net/img/code-icon-512.png"
alt="Code icon"
/>
</div>
<div class="col">
<h2>Magnet Links</h2>
<ul>
<li>
<a
href="magnet:?xt=urn:btih:22276559ed3dcecb617a7abcef826285812398b6&dn=rutor.info&tr=udp://opentor.net:6969&tr=http://retracker.local/announce"
>One</a
>
</li>
<li>
<a
href="magnet:?xt=urn:btih:248a26600fa4a7cf25a5dfaf3bcd0a28a40b341e&dn=rutor.info&tr=udp://opentor.net:6969&tr=http://retracker.local/announce"
>Two</a
>
</li>
<li>
<a
href="magnet:?xt=urn:btih:f7d13e66846b13b0cc0cfee70dad88f974416e21&dn=rutor.info&tr=udp://opentor.net:6969&tr=http://retracker.local/announce"
>Three</a
>
</li>
</ul>
</div>
</div>
</div>
</main>
<script class="json" type="application/json">
{ "foo": "bar" }
</script>
<footer role="contentinfo">
<div class="container">
<div class="row">
<div class="col">
<p>
Built with
<a href="https://github.com/Trippnology/Matchbox"
>Matchbox</a
>
from
<a href="https://trippnology.com/">Trippnology</a>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>