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>
|
2018-05-18 23:56:12 +03:00
|
|
|
// protocole://url.domain.ext
|
2018-05-17 00:05:47 +03:00
|
|
|
var sites = [
|
2018-05-18 23:56:12 +03:00
|
|
|
"https://wiki.xxiivv.com",
|
|
|
|
, "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"
|
2018-05-18 23:20:34 +03:00
|
|
|
, "https://anxl.faith"
|
|
|
|
, "https://xvw.github.io"
|
|
|
|
, "https://heracl.es"
|
|
|
|
, "https://felipecortez.net"
|
|
|
|
, "http://rukial.tk"
|
|
|
|
, "http://luminghao.com"
|
|
|
|
, "http://silane.io"
|
2018-05-18 23:56:12 +03:00
|
|
|
, "https://theiceshelf.com"
|
|
|
|
, "https://turelio.github.io"
|
|
|
|
, "https://spaceshipsin.space"
|
2018-05-18 23:20:34 +03:00
|
|
|
, "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"
|
2018-05-18 23:56:12 +03:00
|
|
|
, "https://palomakop.tv"
|
|
|
|
, "https://travisshears.com"
|
2018-05-18 23:20:34 +03:00
|
|
|
, "https://v-os.ca"
|
2018-05-18 23:56:12 +03:00
|
|
|
, "http://secretinternet.club"
|
2018-05-18 23:20:34 +03:00
|
|
|
, "https://jmandel.xyz"
|
2018-05-19 00:05:04 +03:00
|
|
|
, "https://systems.ws"
|
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>
|
2018-05-18 23:56:12 +03:00
|
|
|
body { background:#fff; padding:0px; margin:0px; }
|
2018-05-19 00:49:10 +03:00
|
|
|
body pre { background: #000;height: calc(100vh - 60px);width: calc(100vw - 60px);margin: 15px;color: #555;padding: 15px;font-family: 'Courier New',courier;font-size:12px; position: relative; }
|
2018-05-18 23:56:12 +03:00
|
|
|
body pre a { color:#fff; display: inline-block; padding:0px 5px; line-height: 20px}
|
|
|
|
body pre a:hover { color:#eee; background:#000; text-decoration: none; }
|
2018-05-19 00:49:10 +03:00
|
|
|
body pre #icon { display: block;width: 20px;height: 20px;background-image: url(icon.white.svg);background-size: 20px;background-repeat: no-repeat;position: absolute;bottom: 10px;right:10px;background-position: center;padding:0px }
|
2018-05-18 23:56:12 +03:00
|
|
|
body pre p { display:block; padding:0px 5px}
|
2018-05-19 00:49:10 +03:00
|
|
|
body pre p b { font-weight: normal; color:#ccc; }
|
2018-05-18 23:56:12 +03:00
|
|
|
body pre list { display:block; columns:3; }
|
|
|
|
body pre list ln { display:block; padding-left:5px}
|
2018-05-19 00:49:10 +03:00
|
|
|
body pre list ln a:visited { color:#ccc;}
|
2018-05-17 02:36:32 +03:00
|
|
|
</style>
|
2018-05-17 00:05:47 +03:00
|
|
|
</body>
|
|
|
|
</html>
|