From bf0f9175741c5069f2320f33cde6da0f6da32d54 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Sun, 2 Oct 2022 00:54:48 +0200 Subject: [PATCH 1/4] readme game --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4f9ab6a..98f4ceb 100644 --- a/README.md +++ b/README.md @@ -222,6 +222,9 @@ Au niveau des modifications, tu peux changer le nom des équipes dans le script ### error.php Page sans complexité, une erreur 404 plus ou moin donc mettre une image drôle ou un ptit message rigolo. +### game.php +Jeu rajouté tardivement développé par le club info, spécifique à la semaine d'accueil 2022 => tu peux la retirer et essaye de voir avec le club info pour éventuellement les chauffer à en faire un nouveau sur le nouveau thème ! + ### index.php Page d'accueil, sans complexité, juste du contenu et des liens, actuellement le lien vers la page enigma y est caché en cliquant sur INSA BROS => à changer pour pas que ce soit prévisible. From c267f73a36beaecb4dead3031336d291e158dea8 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Mon, 10 Oct 2022 12:47:29 +0200 Subject: [PATCH 2/4] photos --- assets/css/page/photos.css | 5 +++++ photos.php | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/assets/css/page/photos.css b/assets/css/page/photos.css index 9339004..5ea9d3c 100644 --- a/assets/css/page/photos.css +++ b/assets/css/page/photos.css @@ -26,6 +26,11 @@ li { display: inline-block; } +.photo { + display: inline-block; + width: 100px; +} + .directory-ul { list-style: none; } diff --git a/photos.php b/photos.php index 241cab0..1a622ae 100644 --- a/photos.php +++ b/photos.php @@ -1,7 +1,7 @@
  • - + 1) { echo " - ".$photos." photos"; @@ -235,13 +235,13 @@ function generatePath($path) $currentPath = ""; $pathTitle = "Menu"; $pathLink = "?" . urlParam . "="; - echo '
  • '.$pathTitle.'
  • '; + echo '
  • '.str_replace("_", " ", $pathTitle).'
  • '; foreach ($folders as $value) { if ($value != "") { $pathTitle = $value; $currentPath .= DIRECTORY_SEPARATOR . $value; $pathLink = "?" . urlParam . "=" . $currentPath; - echo ' >
  • '.$pathTitle.'
  • '; + echo ' >
  • '.str_replace("_", " ", $pathTitle).'
  • '; } } } From a223c29e7db14b35b737a3bdbf7cd425e2d74bc2 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Mon, 10 Oct 2022 16:02:07 +0200 Subject: [PATCH 3/4] photos --- photos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photos.php b/photos.php index 1a622ae..c64e69f 100644 --- a/photos.php +++ b/photos.php @@ -1,7 +1,7 @@ Date: Mon, 10 Oct 2022 16:36:11 +0200 Subject: [PATCH 4/4] height photo --- assets/css/page/photos.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/page/photos.css b/assets/css/page/photos.css index 5ea9d3c..141a1f6 100644 --- a/assets/css/page/photos.css +++ b/assets/css/page/photos.css @@ -28,7 +28,7 @@ li { .photo { display: inline-block; - width: 100px; + height: 100px; } .directory-ul {