diff --git a/index.html b/index.html index 579f61d..d85538b 100644 --- a/index.html +++ b/index.html @@ -11,41 +11,41 @@ // 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" + , "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" // Don't forget the comma! ] var portal = new Portal(sites); @@ -55,6 +55,10 @@ 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; } + body list { display:block; columns:3; } + body list ln { display:block; padding-left:5px} + body list ln a:active { color:#pink; background:black} + body list ln a:visited { color:#000; background:pink} diff --git a/portal.js b/portal.js index ca53895..d034ec9 100644 --- a/portal.js +++ b/portal.js @@ -20,11 +20,9 @@ function Portal(sites) for(id in this.sites){ var site = this.sites[id] - html += `${id}) ${site}\n` + html += `${id}) ${site.split("//")[1]}` } - html += `\nRandom | Information` - - return html + return `${html}\nRandom | Information` } this.reload = function()