17 lines
353 B
PHTML
17 lines
353 B
PHTML
|
<!doctype html>
|
||
|
<html lang="<?=$lang?>">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title><?=$title?></title>
|
||
|
<link href="css/blog.css" rel="stylesheet" title="Style par défaut" type="text/css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php
|
||
|
include "views/header.phtml";
|
||
|
include "views/main.phtml";
|
||
|
include "views/aside.phtml";
|
||
|
include "views/footer.phtml";
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|