2021-11-17 22:33:58 +01:00
|
|
|
<?php
|
|
|
|
$this_file = basename($_SERVER["SCRIPT_FILENAME"]); //contient le nom de ce fichier (lui-même)
|
|
|
|
|
|
|
|
/*
|
|
|
|
Petit script pour afficher la dernière date de modification (toute page confondue) sur la page d'accueil (index.php)
|
|
|
|
*/
|
2023-07-12 16:40:59 +02:00
|
|
|
$mtime_max = exec('git log -1 --pretty="format:%ct" '.$this_file); //récupération de la date de modification de ce fichier et institution comme maximum
|
2023-07-04 17:06:20 +02:00
|
|
|
$last_rev = exec('git log -1 --pretty=format:"%H" '.$this_file); //récupération du hash du commit associé
|
2021-11-17 22:33:58 +01:00
|
|
|
|
|
|
|
foreach (glob("*.php") as $filename) { //récupération de la liste de tous les fichiers .php du répertoire courant (les pages en somme)
|
2023-07-04 17:06:20 +02:00
|
|
|
$mtime = exec('git log -1 --pretty="format:%ct" '.$filename);
|
2021-11-17 22:33:58 +01:00
|
|
|
if($mtime_max < $mtime) { //si une date de modification est supérieure au max (donc celle de index.php), alors on conserve sa valeur
|
|
|
|
$mtime_max = $mtime;
|
2023-07-04 17:06:20 +02:00
|
|
|
$last_rev = exec('git log -1 --pretty=format:"%H" '.$filename); //récupération du hash du commit associé
|
2021-11-17 22:33:58 +01:00
|
|
|
}
|
|
|
|
}
|
2023-07-12 16:40:59 +02:00
|
|
|
$fmt = datefmt_create(
|
|
|
|
'fr-FR',
|
|
|
|
IntlDateFormatter::FULL,
|
|
|
|
IntlDateFormatter::FULL,
|
|
|
|
'Europe/Paris',
|
|
|
|
IntlDateFormatter::GREGORIAN,
|
|
|
|
'd MMMM Y à HH:mm:ss O'
|
|
|
|
);
|
|
|
|
|
2021-11-17 22:33:58 +01:00
|
|
|
?>
|
|
|
|
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<HEAD>
|
2022-04-05 17:15:44 +02:00
|
|
|
<?php include 'includes/header.html'; ?>
|
|
|
|
<title>Accueil</title>
|
2021-11-17 22:33:58 +01:00
|
|
|
</HEAD>
|
|
|
|
<BODY>
|
|
|
|
<CENTER>
|
|
|
|
<?php include 'includes/titre.php'; ?>
|
|
|
|
<br>
|
|
|
|
<?php include 'includes/menu.php'; ?>
|
2023-07-12 16:40:59 +02:00
|
|
|
<p style="text-align:right;">Dernière mise à jour du site le <?php echo datefmt_format($fmt, $mtime_max); ?><br>git revision: <a href="https://git.gnous.fr/gnous/main_website/commit/<?php echo $last_rev;?>" target="_blank"><?php echo substr($last_rev, 0, 7);?></a></p>
|
2021-11-18 00:54:55 +01:00
|
|
|
|
|
|
|
<div style="width:40%;">
|
2024-01-22 00:26:36 +01:00
|
|
|
<pre style="text-align: center;">
|
|
|
|
____ _ _ ___ _ _ ____ __ _ ____
|
|
|
|
/ ___| \ | |/ _ \| | | / ___| / _| ___| |_ ___ ___ ___ ___ | ___| __ _ _ __ ___
|
|
|
|
| | _| \| | | | | | | \___ \ | |_ / _ \ __/ _ \ / __|/ _ \/ __| |___ \ / _` | '_ \/ __|
|
|
|
|
| |_| | |\ | |_| | |_| |___) | | _| __/ || __/ \__ \ __/\__ \ ___) | | (_| | | | \__ \
|
|
|
|
\____|_| \_|\___/ \___/|____/ |_| \___|\__\___| |___/\___||___/ |____/ \__,_|_| |_|___/
|
|
|
|
|
|
|
|
____ _____ _ _ _
|
|
|
|
___ ___ |___ \___ | (_) __ _ _ ____ _(_) ___ _ __ | |
|
|
|
|
/ __/ _ \ __) | / / | |/ _` | '_ \ \ / / |/ _ \ '__| | |
|
|
|
|
| (_| __/ / __/ / / | | (_| | | | \ V /| | __/ | |_|
|
|
|
|
\___\___| |_____/_/ _/ |\__,_|_| |_|\_/ |_|\___|_| (_)
|
|
|
|
|__/
|
|
|
|
|
|
|
|
)
|
|
|
|
( (*) )
|
|
|
|
) (*) | (*) (
|
|
|
|
(*) | |~| | (*)
|
|
|
|
| |~| | | |~| |
|
|
|
|
|~| | | | | | | |~|
|
|
|
|
| | | | | | | | | |
|
|
|
|
,| |a@@@@| |@@@@| |@@@@| |@@@@a| |.
|
|
|
|
.,a@@@| |@@@@@| |@@@@@@@@@@@| |@@@@@| |@@@@a,.
|
|
|
|
,a@@@@@@| |@@@@@@@@@@@@.@@@@@@@@@@@@@@| |@@@@@@@a,
|
|
|
|
a@@@@@@@@@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@@@@@@@@@a
|
|
|
|
;`@@@@@@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@@@@@@';
|
|
|
|
;@@@`@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@'@@@;
|
|
|
|
;@@@;,.aaaaaaaaaa . aaaaa,,aaaaaaa,;@@@;
|
|
|
|
;;@;;;;@@@@@@@@;@ @.@ ;@@@;;;@@@@@@;;;;@@;
|
|
|
|
;;;;;;;@@@@;@@;;@ @@ . @@ ;;@;;;;@@;@@@;;;;;;;
|
|
|
|
;;;;;;;;@@;;;;;;; @@ . @@ ;;;;;;;;;;;@@;;;;@;;
|
|
|
|
;;;;;;;;;;;;;;;;;@@ . @@;;;;;;;;;;;;;;;;@@@;
|
|
|
|
,%%%;;;;;;;;@;;;;;;;; . ;;;;;;;;;;;;;;;;@@;;%%%,
|
|
|
|
.%%%%%%;;;;;;;@@;;;;;;;; ,%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%,
|
|
|
|
.%%%%%%%;;;;;;;@@;;;;;;;; ,%%%%%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%%,
|
|
|
|
%%%%%%%%`;;;;;;;;;;;;;;;; %%%%%%%%%%% ;;;;;;;;;;;;;;;;;;;'%%%%%%%%
|
|
|
|
%%%%%%%%%%%%`;;;;;;;;;;;;,%%%%%%%%%%%%%,;;;;;;;;;;;;;;;'%%%%%%%%%%%%
|
|
|
|
`%%%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%%%%%%'
|
|
|
|
`%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'
|
|
|
|
`%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'
|
|
|
|
""""""""""""""`,,,,,,,,,'"""""""""""""""""
|
|
|
|
`%%%%%%%'
|
|
|
|
`%%%%%'
|
|
|
|
%%%
|
|
|
|
%%%%%
|
|
|
|
.,%%%%%%%,.
|
|
|
|
,%%%%%%%%%%%%%%%%%%%,
|
|
|
|
------------------------------------------------
|
|
|
|
</pre>
|
|
|
|
<br>
|
2021-11-18 00:54:55 +01:00
|
|
|
<p style="text-align: right;">
|
|
|
|
«<i>Ton site il est très utile et très peu énergivore mais il n'est pas très très beau...</i>»<br>
|
|
|
|
Louise, le 17 novembre 2021
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p style="text-align: justify;">
|
2021-11-19 17:16:37 +01:00
|
|
|
Ce site web utilise exclusivement les technologies <abbr title="HyperText Markup Language">HTML</abbr>, <abbr title="PHP: Hypertext Preprocessor">PHP</abbr> et <abbr title="Cascading Style Sheets">CSS</abbr> (un tout petit peu) pour présenter le projet <abbr title="GNOUS's Not Only Ultra Symbolic">GNOUS</abbr>.
|
|
|
|
Son aspect austère résulte d'un manque évident de goût graphique, mais surtout de la volonté de minimiser son impact environnemental au travers de sa consommation énergétique.
|
2021-11-18 00:54:55 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
2021-11-17 22:33:58 +01:00
|
|
|
<img src="ressources/logo.svg" height=400>
|
|
|
|
</CENTER>
|
|
|
|
<BR><BR>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
?>
|
|
|
|
<footer>
|
|
|
|
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/deed.fr" target="_blank"><img alt="Licence Creative Commons (CC BY-SA 4.0)" style="display: block;border-width:0;margin-left: auto;margin-right: auto;" src="/ressources/licence-cc-by-sa.png"/></a>
|
|
|
|
</footer>
|
|
|
|
</BODY>
|
|
|
|
</HTML>
|