mirror of
https://github.com/ilyakooo0/webring.git
synced 2024-11-22 13:35:24 +03:00
67 lines
2.1 KiB
HTML
67 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="portal.js"></script>
|
|
<title>Webring</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
// protocole://url.domain.ext
|
|
var sites = [
|
|
"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"
|
|
, "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"
|
|
, "https://systems.ws"
|
|
// Don't forget the comma!
|
|
]
|
|
var portal = new Portal(sites);
|
|
portal.start();
|
|
</script>
|
|
<style>
|
|
body { background:#fff; padding:0px; margin:0px; }
|
|
body pre { background: #000;height: calc(100vh - 60px);width: calc(100vw - 60px);margin: 15px;color: #555;padding: 15px; }
|
|
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; }
|
|
body pre p { display:block; padding:0px 5px}
|
|
body pre list { display:block; columns:3; }
|
|
body pre list ln { display:block; padding-left:5px}
|
|
body pre list ln a:visited { color:#555;}
|
|
</style>
|
|
</body>
|
|
</html>
|