diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:17:01 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:17:01 +0200 |
commit | a25edc8edf23e652dbd529b8c42199ae559905a1 (patch) | |
tree | bdc47a31288343a8bd11310a021fdf0679eb503c /appli_3_alpha_old/app/include/ludo/html_elements.inc.php | |
parent | 3fc908d3a1d0f6c9b1fca690561098541a73266e (diff) | |
download | 2007-AWOR-a25edc8edf23e652dbd529b8c42199ae559905a1.tar.gz 2007-AWOR-a25edc8edf23e652dbd529b8c42199ae559905a1.tar.bz2 2007-AWOR-a25edc8edf23e652dbd529b8c42199ae559905a1.zip |
Version alpha_old6 2007-02-22+15:45:00 - 2007-03-12+13:59:02
Diffstat (limited to 'appli_3_alpha_old/app/include/ludo/html_elements.inc.php')
-rw-r--r-- | appli_3_alpha_old/app/include/ludo/html_elements.inc.php | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/appli_3_alpha_old/app/include/ludo/html_elements.inc.php b/appli_3_alpha_old/app/include/ludo/html_elements.inc.php index f05f7e2..41fd812 100644 --- a/appli_3_alpha_old/app/include/ludo/html_elements.inc.php +++ b/appli_3_alpha_old/app/include/ludo/html_elements.inc.php @@ -26,16 +26,17 @@ echo '<?xml version="1.0" encoding="ISO-8859-1"?>'."\n" $cssfilemain=$CONFIG['CSS']['CHOOSER_LIST']['standard']; } echo ' <link href="css/' . $cssfilemain . '.css" rel="stylesheet" type="text/css" />' . "\n"; + echo ' <link href="css/' . $cssfilemain . '_nohelp.css" rel="stylesheet" type="text/css" title="nohelp" />' . "\n"; if ( isset($CONFIG['CSS']['CHOOSER_LIST']) ) { - foreach ( $CONFIG['CSS']['CHOOSER_LIST'] as $cssfile ) + foreach ( $CONFIG['CSS']['CHOOSER_LIST'] as $cssname => $cssfile ) { if ( $cssfile != $cssfilemain ) { - echo ' <link href="css/' . $cssfile . '.css" rel="alternate stylesheet" type="text/css" />' . "\n"; + echo ' <link href="css/' . $cssfile . '.css" rel="alternate stylesheet" type="text/css" title="'.$cssname.'"/>' . "\n"; + echo ' <link href="css/' . $cssfile . '_nohelp.css" rel="alternate stylesheet" type="text/css" title="'.$cssname.'_nohelp"/>' . "\n"; } - echo ' <link href="css/' . $cssfile . '_nohelp.css" rel="alternate stylesheet" type="text/css" title="nohelp"/>' . "\n"; } } ?> @@ -120,7 +121,18 @@ function generate_html_div_footer() <li class="left"> <?php generate_html_div_css_chooser(); ?> </li> - <li class="rigth"> + <li class="center"> + <a href="http://validator.w3.org/check/referer" target="_blank"> + <img src="./images/vxhtml.gif" alt="Validate" border="0" height="31" width="88" /> + </a> + <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank"> + <img src="./images/vcss.gif" alt="Validate" border="0" height="31" width="88" /> + </a> + <a href="http://www.w3.org/WAI/WCAG1A-Conformance" title="Explanation of Level A Conformance" target="_blank"> + <img src="./images/wai.gif" alt="W3C-WAI level A conformance icon" border="0" height="31" width="88" /> + </a> + </li> + <li class="right"> <span class="discret">Application réalisée par Jérémie Dénoyer, Ludovic Pouzenc, Julien Séré et Andriana Semouchtchak</span> </li> </ul> |