-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (56 loc) · 1.65 KB
/
index.html
File metadata and controls
68 lines (56 loc) · 1.65 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
<html lang="en">
<head>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #121212;
color: #ffffff;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2, h3, h4, h5, h6 {
color: #ffffff;
text-align: center;
}
p {
color: #d3d3d3;
}
a {
color: #007bff;
}
</style>
<title>The 'We Need A Name' Webring Index</title>
</head>
<body>
<h2>The 'We Need A Name' Webring Index</h2>
<p>
This is the full list of all the sites participating in the webring.
All these sites are from people to write about data related topics.
</p>
<p>The ordering of the sites is completely arbitrary.</p>
<p>If you're interested in learning more or joining the webring,
refer to <a href='https://github.com/willdotwhite/webring/'>https://github.com//willdotwhite/webring/</a> for
instructions.
</p>
<br/>
<p>The current list is:</p>
<div id='index'>
<pre id="output"></pre>
<script type="text/javascript">
fetch("https://willdotwhite.github.io/webring/data.json")
.then(async res => document.getElementById("output").textContent = JSON.stringify(await res.json(), undefined, 2))
</script>
</div>
<br/>
<pre>
<div id='index'>
<pre id="output"></pre>
<script type="text/javascript">
fetch("https://willdotwhite.github.io/webring/data.json")
.then(async res => document.getElementById("output").textContent = JSON.stringify(await res.json(), undefined, 2))
</script>
</div>
</pre>
</body>
</html>