33 lines
957 B
PHP
33 lines
957 B
PHP
<?php
|
|
|
|
class Squelette {
|
|
public static function enrober($page) {
|
|
return ''
|
|
. Squelette::en_tete($page)
|
|
. $page->contenu
|
|
. Squelette::pied($page);
|
|
}
|
|
|
|
public static function en_tete($page) {
|
|
return
|
|
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
<head>
|
|
<title>' . $page->titre . '</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="Content-Language" content="fr" />
|
|
<link href="../style.css" rel="stylesheet" type="text/css" /><!-- TODO : chemin incorrect -->
|
|
</head>
|
|
<body>';
|
|
// <meta name="keywords" lang="fr" content="motcle1,mocle2" />
|
|
// <meta name="description" content="Description de ma page web." />
|
|
}
|
|
|
|
public static function pied() {
|
|
return
|
|
' </body>
|
|
</html>';
|
|
}
|
|
}
|
|
|
|
?>
|