mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 11:58:25 +00:00
16 lines
504 B
Text
16 lines
504 B
Text
|
<!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" lang="en" xml:lang="en">
|
||
|
<head>
|
||
|
<title><?php echo $title_for_layout; ?></title>
|
||
|
<?php echo $html->charsetTag('UTF-8'); ?>
|
||
|
<?php echo $html->cssTag('cake.scaffold'); ?>
|
||
|
<?php echo $html->cssTag('cake.forms'); ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<h1><?php echo $title_for_layout; ?></h1>
|
||
|
<?php echo $content_for_layout; ?>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|