webring/index.html

65 lines
1.9 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-18 23:20:34 +03:00
, "http://estevancarlos.com/"
, "https://electro.pizza/"
, "http://xla.wiki/"
, "https://monochromatic.co/"
, "https://joshavanier.github.io/"
, "http://kaemura.com/"
, "https://liamcooke.com/"
, "https://electricgecko.de/"
, "https://wichniow.ski/"
, "https://hraew.autophagy.io/"
, "https://evenunto.net/"
, "https://anxl.faith"
, "https://xvw.github.io"
, "https://heracl.es"
, "https://felipecortez.net"
, "http://rukial.tk"
, "http://luminghao.com"
, "http://silane.io"
, "https://theiceshelf.com/"
, "https://turelio.github.io/"
, "https://spaceshipsin.space/"
, "http://log.lectronice.com"
, "https://craze.co.uk"
, "https://shaneckel.com"
, "https://cblgh.org"
, "https://ellugar.co"
, "http://hur.bet"
, "http://chigby.org"
, "https://0101.solar"
, "https://longest.voyage"
, "https://palomakop.tv/"
, "https://travisshears.com/"
, "https://v-os.ca"
, "http://secretinternet.club/"
, "https://jmandel.xyz"
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; }
2018-05-18 23:31:05 +03:00
body p { display:block; padding:0px 5px}
2018-05-18 23:20:34 +03:00
body list { display:block; columns:3; }
body list ln { display:block; padding-left:5px}
2018-05-18 23:31:05 +03:00
body list ln a:visited { color:#000; background:white}
2018-05-17 02:36:32 +03:00
</style>
2018-05-17 00:05:47 +03:00
</body>
</html>