23 lines
886 B
PHP
Executable File
23 lines
886 B
PHP
Executable File
<?php
|
|
// echo 'Je suis le fichier admin.head.php';
|
|
|
|
// -----------------------------------------------------
|
|
// Balises meta
|
|
// -----------------------------------------------------
|
|
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />';
|
|
echo '<meta charset="UTF-8" />';
|
|
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />';
|
|
|
|
// -----------------------------------------------------
|
|
// Titre de la page par defaut
|
|
// -----------------------------------------------------
|
|
include ('titrePageBrowser.php');
|
|
echo '<title id="pageTitle">' .$title. '</title>';
|
|
|
|
// -----------------------------------------------------
|
|
// Icône favori
|
|
// -----------------------------------------------------
|
|
echo '<link rel="icon" type="image/gif" href="' .$includeAdminDesign. '/admin.gif" />';
|
|
|
|
|
|
?>
|