| Fichier source |
cv.php
[ 0]
<?php
[ 1]require_once "include/global.php";
[ 2]require_once "include/preferences.php";
[ 3]require_once "include/menubar.php";
[ 4]
[ 5]$initialiser_preferences();
[ 6]$entete_html();
[ 7]afficher_top_bar();
[ 8]
[ 9]// Cv's Left Bar
[10]debut_mosaique_horizontale();
[11]//$T = "<A href=\"cv.htm\" target=\"_blank\">Version imprimable</a><BR />\n";
[12]//$T .= "<A href=\"cv.doc\">Version Word 97</a>\n";
[13]
[14]$T .= $inserer_lien( "Baud.Thierry.CV.pdf", "Version pdf" ) . "<BR />\n";
[15]
[16]$encadre($T, 140, $COL_bg_yellow, "CV");
[17]echo "<BR>\n";
[18]
[19]// Standard Left Bar
[20]afficher_standard_left_bar();
[21]fin_mosaique_gauche();
[22]
[23]///////////////////////////
[24]// Begin of the main Bar //
[25]///////////////////////////
[26]
[27]
[28]//$encadre("Choisissez le format du CV dans la barre de gauche...");
[29]unset($source);
[30]$T = "Voici mon CV au format pdf: ";
[31]$T .= $inserer_lien( "Baud.Thierry.CV.pdf", "Ingénieur développement logiciel" ) . "<BR />\n";
[32]$encadre($T, $Largeur_Mainbar, $COL_bg_yellow, "CV");
[33]//$encadre_fichier( "cv.htm", $Largeur_Mainbar, white );
[34]
[35]fin_mosaique_horizontale();
[36]afficher_foot_bar();
[37]
[38]$ferme_html();
[39]?>
[40]
|
|
|