mirror of
https://github.com/iv-org/invidious-redirect.git
synced 2025-01-18 19:31:49 -05:00
75 lines
2.2 KiB
Plaintext
75 lines
2.2 KiB
Plaintext
doctype html
|
|
html(lang="en")
|
|
head
|
|
title Select instance - Invidious
|
|
meta(charset="utf-8")
|
|
meta(name="viewport" content="width=device-width, initial-scale=1")
|
|
link(rel="stylesheet" type="text/css" href=static.get("/main.sass"))
|
|
script(src=static.get("/main.js") text="text/javascript" defer)
|
|
body
|
|
noscript
|
|
style.
|
|
.requires-scripts {
|
|
display: none;
|
|
}
|
|
|
|
include header.pug
|
|
|
|
noscript
|
|
.script-warning
|
|
p.
|
|
You are seeing the fallback version of this page.#[br]
|
|
Some features are missing.
|
|
p.
|
|
JavaScript is required to use the regular page.
|
|
|
|
.story
|
|
.requires-scripts
|
|
p.
|
|
To see this content, select an instance,
|
|
or #[a#watch-on-youtube see directly on YouTube.]
|
|
noscript
|
|
p.
|
|
To see this content, please select an instance,
|
|
or #[a(href="https://www.youtube.com") go to YouTube] and look for it there.
|
|
|
|
.instances-table.requires-scripts
|
|
table
|
|
thead
|
|
tr
|
|
th(scope="col") Region
|
|
th(scope="col") Domain
|
|
th(scope="col") Health
|
|
th(scope="col") Action
|
|
tbody#instances-tbody
|
|
tr.loading
|
|
td(colspan="4" data-loading-message="Loading instances...").loading-td Trying to run scripts...
|
|
|
|
noscript
|
|
.instances-list
|
|
h2 Available instances
|
|
ul.list
|
|
-
|
|
const instances = [
|
|
{url: "yewtu.be", flag: "🇳🇱"},
|
|
{url: "vid.puffyan.us", flag: "🇺🇸"},
|
|
{url: "invidious.flokinet.to", flag: "🇷🇴"},
|
|
{url: "invidious.projectsegfau.lt", flag: "🇫🇷"},
|
|
{url: "inv.bp.projectsegfau.lt", flag: "🇱🇺"},
|
|
{url: "inv.in.projectsegfau.lt", flag: "🇮🇳"},
|
|
{url: "invidious.tiekoetter.com", flag: "🇩🇪"},
|
|
{url: "invidious.slipfox.xyz", flag: "🇺🇸"},
|
|
{url: "invidious.privacydev.net", flag: "🇫🇷"},
|
|
{url: "vid.priv.au", flag: "🇸🇬"},
|
|
{url: "iv.ggtyler.dev", flag: "🇨🇦"},
|
|
{url: "invidious.0011.lt", flag: "🇱🇹"},
|
|
{url: "inv.zzls.xyz", flag: "🇨🇱"},
|
|
{url: "invidious.protokolla.fi", flag: "🇫🇮"},
|
|
]
|
|
for instance in instances
|
|
li
|
|
= `${instance.flag} `
|
|
a(href=`https://${instance.url}`)= instance.url
|
|
|
|
include footer.pug
|