21 lines
354 B
PHTML
21 lines
354 B
PHTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title><?php echo $this->title ?></title>
|
||
|
<link rel="stylesheet" href="css/main.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
{HEADER}
|
||
|
</header>
|
||
|
|
||
|
<?php echo $this->content(); ?>
|
||
|
|
||
|
<footer>
|
||
|
{FOOTER}
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|