Compare commits
No commits in common. "7fdee72682e68c2b34e68dfa8771d513aa645bd1" and "bcdea5c92222cffcd34b58a5018b4dc4737b2068" have entirely different histories.
7fdee72682
...
bcdea5c922
@ -1,5 +1,3 @@
|
||||
# Teumbleur
|
||||
|
||||
Galerie d'images minimaliste, simple et légère.
|
||||
|
||||
J'ai développé cela car je souhaitais pouvoir afficher en toute simplicité la beauté de mes waifus au reste du monde.
|
BIN
img/0 test.jpg
Before Width: | Height: | Size: 769 KiB |
BIN
img/258.png
Normal file
After Width: | Height: | Size: 1024 KiB |
BIN
img/259.png
Normal file
After Width: | Height: | Size: 4.5 MiB |
BIN
img/261.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
img/267.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
img/271.png
Normal file
After Width: | Height: | Size: 3.5 MiB |
BIN
img/272.png
Normal file
After Width: | Height: | Size: 723 KiB |
BIN
img/282.png
Normal file
After Width: | Height: | Size: 874 KiB |
17
index.php
@ -4,7 +4,7 @@
|
||||
<title>Teumbleur</title>
|
||||
|
||||
<meta property="og:title" content="Teumbleur">
|
||||
<meta property="og:image" content="https://concepts.esenjin.xyz/teumbleur/v3/logo.png">
|
||||
<meta property="og:image" content="logo.png">
|
||||
<meta property="og:description" content="Albums d'illustrations des waifus d'Esenjin.">
|
||||
|
||||
<link rel="shortcut icon" id="favicon" href="favicon.ico">
|
||||
@ -15,14 +15,14 @@
|
||||
<body>
|
||||
<div align="center"><img src="logo.png" /></div>
|
||||
</br>
|
||||
<center><p>Vous pouvez également aller faire un tour sur <a href="https://esenjin.xyz" target="_blank">mon blog</a>, j'y raconte de temps à autre des choses.</p></center>
|
||||
<center><p>Vous pouvez également aller faire un tour sur <a href="http://esenjin.xyz" target="_blank">mon site</a> ou jeter un œil à mes <a href="../index.html" target="_blank">autres concepts</a>.</p></center>
|
||||
</br></br>
|
||||
|
||||
<?php
|
||||
|
||||
$dir_nom = './img';
|
||||
$dir = opendir($dir_nom) or die('Erreur : le répertoire indiqué n\'existe pas');
|
||||
$fichier = array();
|
||||
$dir = opendir($dir_nom) or die('Erreur de listage : le répertoire n\'existe pas');
|
||||
$fichier= array();
|
||||
|
||||
while($element = readdir($dir)) {
|
||||
if($element != '.' && $element != '..') {
|
||||
@ -30,15 +30,20 @@ while($element = readdir($dir)) {
|
||||
}
|
||||
}
|
||||
|
||||
closedir($dir);
|
||||
|
||||
if(!empty($fichier)){
|
||||
rsort($fichier);
|
||||
echo "\t\t<ul class=rien>\n";
|
||||
foreach($fichier as $lien) {
|
||||
echo "<div align=\"center\"><a href=\"$dir_nom/$lien\" target=\"_blank\"><img src=\"$dir_nom/$lien\"></a></div>\r
|
||||
<div align=\"center\"><p>🔍 <a href=\"http://saucenao.com/search.php?db=999&url=https://concepts.esenjin.xyz/teumbleur/v3/img/$lien\" target=\_blank>source</a></p></div>\r\r </br></br>";
|
||||
echo "<div align=\"center\"><a href=\"$dir_nom/$lien\" target=\"_blank\"><img src=\"$dir_nom/$lien \"></a></div>\r
|
||||
<div align=\"center\"><p>- <a href=\"http://saucenao.com/search.php?db=999&url=http://concepts.esenjin.xyz/teumbleur/v3/img/$lien\" target=\_blank>source</a> -</p></div>\r\r </br></br>";
|
||||
}
|
||||
echo "\t\t</ul>";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</br>
|
||||
<center><p>Esenjin Asakha - <i>Les illustrations appartiennent à leurs auteurs respectifs</i>.</p></center>
|
||||
</body>
|