1
1
mirror of https://github.com/XXIIVV/webring.git synced 2024-09-11 19:47:14 +03:00
This commit is contained in:
Devine Lu Linvega 2018-05-17 09:05:47 +12:00
parent 9df9a8c0cd
commit 447b0441d0
2 changed files with 37 additions and 0 deletions

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="scripts/portal.js"></script>
<link rel="stylesheet" type="text/css" href="links/reset.css"/>
<link rel="stylesheet" type="text/css" href="links/fonts.css"/>
<link rel="stylesheet" type="text/css" href="links/main.css"/>
<title>Webring</title>
</head>
<body>
<script>
// protocole://url.domain.ext/
var sites = [
"https://wiki.xxiivv.com/",
"http://estevancarlos.com/"
]
var portal = New Portal(sites);
portal.start();
</script>
</body>
</html>

14
scripts/portal.js Normal file
View File

@ -0,0 +1,14 @@
function Portal(sites)
{
this.sites = sites;
this.install = function()
{
}
this.start = function()
{
}
}