Compare commits

..

No commits in common. "7fdee72682e68c2b34e68dfa8771d513aa645bd1" and "bcdea5c92222cffcd34b58a5018b4dc4737b2068" have entirely different histories.

10 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,3 @@
# Teumbleur # Teumbleur
Galerie d'images minimaliste, simple et légère. 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.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 769 KiB

BIN
img/258.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1024 KiB

BIN
img/259.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

BIN
img/261.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

BIN
img/267.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
img/271.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

BIN
img/272.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 723 KiB

BIN
img/282.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 KiB

View File

@ -4,7 +4,7 @@
<title>Teumbleur</title> <title>Teumbleur</title>
<meta property="og:title" content="Teumbleur"> <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."> <meta property="og:description" content="Albums d'illustrations des waifus d'Esenjin.">
<link rel="shortcut icon" id="favicon" href="favicon.ico"> <link rel="shortcut icon" id="favicon" href="favicon.ico">
@ -15,14 +15,14 @@
<body> <body>
<div align="center"><img src="logo.png" /></div> <div align="center"><img src="logo.png" /></div>
</br> </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> </br></br>
<?php <?php
$dir_nom = './img'; $dir_nom = './img';
$dir = opendir($dir_nom) or die('Erreur : le répertoire indiqué n\'existe pas'); $dir = opendir($dir_nom) or die('Erreur de listage : le répertoire n\'existe pas');
$fichier = array(); $fichier= array();
while($element = readdir($dir)) { while($element = readdir($dir)) {
if($element != '.' && $element != '..') { if($element != '.' && $element != '..') {
@ -30,15 +30,20 @@ while($element = readdir($dir)) {
} }
} }
closedir($dir);
if(!empty($fichier)){ if(!empty($fichier)){
rsort($fichier); rsort($fichier);
echo "\t\t<ul class=rien>\n";
foreach($fichier as $lien) { foreach($fichier as $lien) {
echo "<div align=\"center\"><a href=\"$dir_nom/$lien\" target=\"_blank\"><img src=\"$dir_nom/$lien\"></a></div>\r echo "<div align=\"center\"><a href=\"$dir_nom/$lien\" target=\"_blank\"><img src=\"$dir_nom/$lien \"></a></div>\r
<div align=\"center\"><p>&#128269; <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>"; <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> </br>
<center><p>Esenjin Asakha - <i>Les illustrations appartiennent à leurs auteurs respectifs</i>.</p></center>
</body> </body>