1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| function init_HTML(){
global $theme;
echo"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n";
echo"<HTML>\n";
echo"<HEAD>\n";
echo"<TITLE>KarKam 2007 -- Plateforme</TITLE>\n";
echo"<META name=\"Description\" content=\"\">\n";
echo"<META name=\"Keywords\" content=\"\">\n";
echo"<META name=\"Author-Personal\" content=\"KarKam\">\n";
echo"<META name=\"category\" content=\"open source;web;developpement;programmation\">\n";
echo"<META name=\"Copyright\" content=\"\">\n";
echo"<META name=\"Reply-to\"content=\"\">\n";
echo"<META name=\"Robots\" content=\"all\">\n";
echo"<META http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n";
echo"<META http-equiv=\"Content-Language\" content=\"fr\">\n";
echo"<link rel=\"stylesheet\" href=\"style.css\">\n";
echo"<link rel=\"stylesheet\" href=\"album/Prague2006/images/galleryStyle.css\">\n";
echo"<link rel=\"stylesheet\" href=\"themes/". $theme ."/navBar.css\">\n";
echo"<link rel=\"shortcut icon\" href=\"images/favicon.ico\">\n";
echo "<SCRIPT TYPE=\"text/javascript\" SRC=\"js/fonctionJS.js\"></SCRIPT>\n";
echo"</HEAD>\n";
} |