thopic
861f8a50d5
Adaptation of Susie Oviatt artwork https://asciiart.website/index.php?art=events/birthday
116 lines
6.3 KiB
PHP
116 lines
6.3 KiB
PHP
<?php
|
|
$this_file = basename($_SERVER["SCRIPT_FILENAME"]); //contient le nom de ce fichier (lui-même)
|
|
setlocale (LC_TIME, 'fr_FR.utf8','fra');
|
|
$rev_long = exec('git rev-parse HEAD'); // contient le hash du commit sélectionné
|
|
$rev_short = substr($rev_long, 0, 7); // contient le hash du commit sélectionné
|
|
|
|
/*
|
|
Petit script pour afficher la dernière date de modification (toute page confondue) sur la page d'accueil (index.php)
|
|
*/
|
|
date_default_timezone_set('Europe/Paris');
|
|
$mtime_this_file = filemtime($this_file); //récupération de la date de modification de ce fichier
|
|
$mtime_max = $mtime_this_file; //elle est instituée comme un maximum
|
|
|
|
foreach (glob("*.php") as $filename) { //récupération de la liste de tous les fichiers .php du répertoire courant (les pages en somme)
|
|
$mtime = filemtime($filename);
|
|
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;
|
|
}
|
|
}
|
|
if($mtime_max > $mtime_this_file) { //si la date maximum n'est pas celle de cette page (index.php), alors cela veut dire qu'une page a été modifiée plus récemment
|
|
$mtime_this_file = $mtime_max;
|
|
}
|
|
$mtime_this_file = date("d M Y H:i:s", $mtime_this_file); //formatage de la date retenue
|
|
?>
|
|
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<HEAD>
|
|
<?php include 'includes/header.html'; ?>
|
|
<title>Accueil</title>
|
|
</HEAD>
|
|
<BODY>
|
|
<CENTER>
|
|
<?php include 'includes/titre.php'; ?>
|
|
<br>
|
|
<?php include 'includes/menu.php'; ?>
|
|
<p style="text-align:right;">Dernière mise à jour du site le <?php echo strftime("%d %B %Y à %H:%M:%S UTC%z", strtotime($mtime_this_file)); ?><br>git revision: <a href="https://git.gnous.fr/gnous/main_website/commit/<?php echo $rev_long;?>" target="_blank"><?php echo $rev_short;?></a></p>
|
|
|
|
<div style="width:40%;">
|
|
<pre style="text-align: center;">
|
|
__ _ _ _
|
|
__ _ _ __ ___ _ _ ___ / _| ___| |_ ___ ___ ___ ___ | || |
|
|
/ _` | '_ \ / _ \| | | / __| | |_ / _ \ __/ _ \ / __|/ _ \/ __| | || |_
|
|
| (_| | | | | (_) | |_| \__ \ | _| __/ || __/ \__ \ __/\__ \ |__ _|
|
|
\__, |_| |_|\___/ \__,_|___/ |_| \___|\__\___| |___/\___||___/ |_|
|
|
|___/
|
|
_ _ _ _ _
|
|
__ _ _ __ ___ __ _ _ _ (_) ___ _ _ _ __ __| ( ) |__ _ _(_)
|
|
/ _` | '_ \/ __| / _` | | | || |/ _ \| | | | '__/ _` |/| '_ \| | | | |
|
|
| (_| | | | \__ \ | (_| | |_| || | (_) | |_| | | | (_| | | | | | |_| | |
|
|
\__,_|_| |_|___/ \__,_|\__,_|/ |\___/ \__,_|_| \__,_| |_| |_|\__,_|_|
|
|
|__/
|
|
|
|
( )
|
|
) (*) (*) (
|
|
(*) | | (*)
|
|
| |~| |~| |
|
|
|~| | | | | |~|
|
|
| | | | | | | |
|
|
,| |a@@@@| |@@@@@@@@@@@| |@@@@a| |.
|
|
.,a@@@| |@@@@@| |@@@@@@@@@@@| |@@@@@| |@@@@a,.
|
|
,a@@@@@@| |@@@@@@@@@@@@.@@@@@@@@@@@@@@| |@@@@@@@a,
|
|
a@@@@@@@@@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@@@@@@@@@a
|
|
;`@@@@@@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@@@@@@';
|
|
;@@@`@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@'@@@;
|
|
;@@@;,.aaaaaaaaaa . aaaaa,,aaaaaaa,;@@@;
|
|
;;@;;;;@@@@@@@@;@ @.@ ;@@@;;;@@@@@@;;;;@@;
|
|
;;;;;;;@@@@;@@;;@ @@ . @@ ;;@;;;;@@;@@@;;;;;;;
|
|
;;;;;;;;@@;;;;;;; @@ . @@ ;;;;;;;;;;;@@;;;;@;;
|
|
;;;;;;;;;;;;;;;;;@@ . @@;;;;;;;;;;;;;;;;@@@;
|
|
,%%%;;;;;;;;@;;;;;;;; . ;;;;;;;;;;;;;;;;@@;;%%%,
|
|
.%%%%%%;;;;;;;@@;;;;;;;; ,%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%,
|
|
.%%%%%%%;;;;;;;@@;;;;;;;; ,%%%%%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%%,
|
|
%%%%%%%%`;;;;;;;;;;;;;;;; %%%%%%%%%%% ;;;;;;;;;;;;;;;;;;;'%%%%%%%%
|
|
%%%%%%%%%%%%`;;;;;;;;;;;;,%%%%%%%%%%%%%,;;;;;;;;;;;;;;;'%%%%%%%%%%%%
|
|
`%%%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%%%%%%'
|
|
`%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'
|
|
`%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'
|
|
""""""""""""""`,,,,,,,,,'"""""""""""""""""
|
|
`%%%%%%%'
|
|
`%%%%%'
|
|
%%%
|
|
%%%%%
|
|
.,%%%%%%%,.
|
|
,%%%%%%%%%%%%%%%%%%%,
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
</pre>
|
|
<br>
|
|
<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;">
|
|
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.
|
|
</p>
|
|
</div>
|
|
|
|
<br>
|
|
<br>
|
|
|
|
<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>
|