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/",
|
|
|
|
"http://estevancarlos.com/"
|
|
|
|
]
|
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>
|