L'ancien dépot du générateur de sites d'Antopie
https://antopie.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
<?php
|
|
// Les URL n'ont pas le .php sur le site d'Antopie
|
|
function formerUrlLocale($page) {
|
|
if (DESTINATION === "dns" OR DESTINATION === "onion") {
|
|
echo $page;
|
|
} else {
|
|
echo $page . ".html";
|
|
}
|
|
}
|
|
|
|
// Détermine si il faut utiliser les liens en .onion ou pas
|
|
function clearnetOrOnion($clearnetUrl, $onionUrl) {
|
|
if (DESTINATION === "onion") {
|
|
return $onionUrl;
|
|
} else {
|
|
return $clearnetUrl;
|
|
}
|
|
}
|
|
|