importation de la v1

This commit is contained in:
Esenjin 2022-09-16 19:14:51 +02:00
parent f82ac4bc6a
commit 1c2408ec8d
19 changed files with 68 additions and 0 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 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/263.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

BIN
img/264.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
img/266.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
img/267.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
img/268.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

BIN
img/270.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 785 KiB

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/278.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

BIN
img/281.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 459 KiB

BIN
img/282.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 KiB

BIN
img/288.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

45
index.php Normal file
View File

@ -0,0 +1,45 @@
<head>
<meta charset="utf-8">
<title>Teumbleur</title>
<meta name="title" content="Teumbleur" />
<meta name="description" content="Mes illustrations coups de cœur !" />
<link rel="shortcut icon" id="favicon" href="favicon.ico">
<link href='style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div align="center"><img src="logo.png" /></div>
</br>
<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 de listage : le répertoire n\'existe pas');
$fichier= array();
while($element = readdir($dir)) {
if($element != '.' && $element != '..') {
if (!is_dir($dir_nom.'/'.$element)) {$fichier[] = $element;}
}
}
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=http://concepts.esenjin.xyz/teumbleur/img/$lien\" target=\_blank>source</a> -</p></div>\r\r </br></br>";
}
echo "\t\t</ul>";
}
?>
</body>

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

23
style.css Normal file
View File

@ -0,0 +1,23 @@
body {
background-color: #0A0A0A;
}
p {
font-family: 'Terminal Dosis Light', sans-serif;
color: #F4F4F4;
}
a {
color: #BD0235;
text-decoration: none;
}
div {
font-family: 'Terminal Dosis Light', sans-serif;
}
img {
width: 600px;
height: auto;
border-radius: 12px;
}