convert http://astroport into / URL (keeps the actual http gateway in use)

This commit is contained in:
fred 2021-09-19 02:31:01 +02:00
parent 47671bbd21
commit e21fca1d07
2 changed files with 51 additions and 51 deletions

View File

@ -1,52 +1,52 @@
<!DOCTYPE html>
<html>
<head>
<title>${TITLE} in Astroport</title>
<meta charset="UTF-8">
<meta http-equiv="Refresh" content="7;URL=http://astroport/ipns/${IPNSLINK}/${G1PUB}/">
<link rel='stylesheet' href='/styles/astroport/style.css' type='text/css' />
<link rel='icon' type='image/png' href='/styles/astroport/logo.png' />
<title>${TITLE} in Astroport</title>
<meta charset="UTF-8">
<meta http-equiv="Refresh" content="7;URL=/ipns/${IPNSLINK}/${G1PUB}/">
<link rel='stylesheet' href='/styles/astroport/style.css' type='text/css' />
<link rel='icon' type='image/png' href='/styles/astroport/logo.png' />
</head>
<body>
<header>
<h6>
<a href='/'><span>ASTROPORT</span> <q>${XZUID}</q></a>
</h6>
<h6>
<a href='/'><span>ASTROPORT</span> <q>${XZUID}</q></a>
</h6>
</header>
<main>
<article>
<h1>${TITLE}</h1>
<p>Lancement de la video dans 7 secondes...</p>
<p class="pubkey-and-copy-button">
Ce fichier vous est servi par une station amie. Faites lui un don pour la remercier&nbsp;:
<input type="text" id="pubkey" readonly value="${G1PUB}" />
<button id="copy">Tip !</button>
</p>
<p id="successMsg">
La clef de la station amie est maintenant copiée dans le presse-papier. Vous pouvez la coller dans le client Ğ1 de votre choix (Cesium par exemple) afin de faire votre don 😉
</p>
<script>
function copy() {
var copyText = document.querySelector("input#pubkey");
copyText.select();
document.execCommand("copy");
<h1>${TITLE}</h1>
var successMsg = document.querySelector("#successMsg");
successMsg.style.opacity = "1";
<p>Lancement de la video dans 7 secondes...</p>
var copyButton = document.querySelector("button#copy");
copyButton.style.animation = "none";
}
<p class="pubkey-and-copy-button">
Ce fichier vous est servi par une station amie. Faites lui un don pour la remercier&nbsp;:
<input type="text" id="pubkey" readonly value="${G1PUB}" />
<button id="copy">Tip !</button>
</p>
<p id="successMsg">
La clef de la station amie est maintenant copiée dans le presse-papier. Vous pouvez la coller dans le client Ğ1 de votre choix (Cesium par exemple) afin de faire votre don 😉
</p>
<script>
function copy() {
var copyText = document.querySelector("input#pubkey");
copyText.select();
document.execCommand("copy");
var successMsg = document.querySelector("#successMsg");
successMsg.style.opacity = "1";
var copyButton = document.querySelector("button#copy");
copyButton.style.animation = "none";
}
document.querySelector("button#copy").addEventListener("click", copy);
</script>
document.querySelector("button#copy").addEventListener("click", copy);
</script>
</article>
</main>
</body>

View File

@ -1,29 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>${TITLE} in Astroport</title>
<meta charset="UTF-8">
<link rel='stylesheet' href='/styles/astroport/style.css' type='text/css' />
<link rel='icon' type='image/png' href='/styles/astroport/logo.png' />
<title>${TITLE} in Astroport</title>
<meta charset="UTF-8">
<link rel='stylesheet' href='/styles/astroport/style.css' type='text/css' />
<link rel='icon' type='image/png' href='/styles/astroport/logo.png' />
</head>
<body>
<header>
<h6>
<a href='http://astroport/'><span>ASTROPORT</span> <q>${XZUID}</q></a>
</h6>
<h6>
<a href='/'><span>ASTROPORT</span> <q>${XZUID}</q></a>
</h6>
</header>
<main>
<article>
<video autoplay="autoplay" controls>
<source src="/ipfs/${IPFSREPFILEID}/${URLENCODE_FILE_NAME}">
<a href="/ipfs/${IPFSREPFILEID}/${URLENCODE_FILE_NAME}">${TITLE}</a>
</video>
<article>
<video autoplay="autoplay" controls>
<source src="/ipfs/${IPFSREPFILEID}/${URLENCODE_FILE_NAME}">
<a href="/ipfs/${IPFSREPFILEID}/${URLENCODE_FILE_NAME}">${TITLE}</a>
</video>
<h1 class="video-title">
${TITLE}
</h1>
</article>
<h1 class="video-title">
${TITLE}
</h1>
</article>
</main>
</body>