Merge branch 'master' of Riedler/gmgsite into master

Small update for ytr.html.
next
Gianmarco Gargiulo 2023-05-10 11:09:57 +02:00 committed by Gogs
commit 751e285b7b
1 changed files with 63 additions and 63 deletions

View File

@ -1,10 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Video site chooser</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<style>
html, body {
html,
body {
height: 100%;
}
@ -36,14 +38,12 @@
cursor: pointer;
}
#pipedbtn {background-color: darkred;} /* Piped */
#ytbtn {background-color: red;} /* YouTube */
#odybtn {background-color: purple;} /* Odysee */
#ptbtn {background-color: darkorange;} /* PeerTube */
#pipedbtn {background-color: darkred} /* Piped */
#ytbtn {background-color: red} /* YouTube */
#odybtn {background-color: purple} /* Odysee */
#ptbtn {background-color: darkorange} /* PeerTube */
</style>
</head>
<body>
<script async>
<script>
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const codeyt = urlParams.get('yt')
@ -63,13 +63,13 @@
changeHref('ody',codeody);
});
</script>
</head>
<body>
<p>Where do you want to watch this video?</p>
<a id="pipedbtn" class="button" href="https://il.ax/embed/">Piped (il.ax)</a>
<a id="ytbtn" class="button" href="https://youtube.com/embed/">YouTube*</a>
<a id="odybtn" class="button" href="https://odysee.com/$/embed/@gianmarcogg03:e/">Odysee*</a>
<a id="ptbtn" class="button" href="https://peertube.uno/videos/embed/">PeerTube</a>
<p>* = not freedom and/or privacy respecting.</p>
</body>
</html>