mirror of
https://github.com/ilyakooo0/webring.git
synced 2024-11-22 22:57:39 +03:00
Init
This commit is contained in:
parent
9df9a8c0cd
commit
447b0441d0
23
index.html
Normal file
23
index.html
Normal 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
14
scripts/portal.js
Normal file
@ -0,0 +1,14 @@
|
||||
function Portal(sites)
|
||||
{
|
||||
this.sites = sites;
|
||||
|
||||
this.install = function()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
this.start = function()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user