12 lines
243 B
PHTML
12 lines
243 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>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php echo $this->content(); ?>
|
||
|
</body>
|
||
|
</html>
|