1
1
mirror of https://github.com/XXIIVV/webring.git synced 2024-09-11 19:47:14 +03:00
webring/index.html

39 lines
1.0 KiB
HTML
Raw Normal View History

2018-05-17 00:05:47 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2018-05-17 02:36:32 +03:00
<script src="portal.js"></script>
2018-05-17 00:05:47 +03:00
<title>Webring</title>
</head>
<body>
<script>
// protocole://url.domain.ext/
var sites = [
"https://wiki.xxiivv.com/",
2018-05-17 04:05:07 +03:00
"http://estevancarlos.com/",
"https://electro.pizza/",
2018-05-17 04:31:23 +03:00
"http://xla.wiki/",
2018-05-17 06:16:27 +03:00
"https://monochromatic.co/",
2018-05-17 07:13:17 +03:00
"https://joshavanier.github.io/",
2018-05-17 07:12:39 +03:00
"http://kaemura.com/",
2018-05-17 10:03:13 +03:00
"https://liamcooke.com/",
2018-05-17 10:08:53 +03:00
"https://electricgecko.de/",
2018-05-17 10:47:43 +03:00
"https://wichniow.ski/",
2018-05-17 11:00:24 +03:00
"https://hraew.autophagy.io/",
2018-05-17 11:41:26 +03:00
"https://anxl.faith",
2018-05-17 12:13:42 +03:00
"https://xvw.github.io",
2018-05-17 11:41:26 +03:00
"https://heracl.es"
2018-05-17 11:01:00 +03:00
// Don't forget the comma!
2018-05-17 00:05:47 +03:00
]
2018-05-17 00:22:20 +03:00
var portal = new Portal(sites);
2018-05-17 00:05:47 +03:00
portal.start();
</script>
2018-05-17 02:36:32 +03:00
<style>
body { background:#eee; padding:30px; }
body a { color:#000; display: inline-block; padding:0px 5px; line-height: 20px}
body a:hover { color:#eee; background:#000; text-decoration: none; }
</style>
2018-05-17 00:05:47 +03:00
</body>
</html>