24 lines
511 B
PHP
Executable File
24 lines
511 B
PHP
Executable File
<!DOCTYPE HTML>
|
|
<html lang="ru-RU">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Example 05: <?php echo h($page_title) ?></title>
|
|
</head>
|
|
<body>
|
|
<h1><?php echo h($page_title) ?></h1>
|
|
<div id="main">
|
|
<!-- main content -->
|
|
<h2>Main content</h2>
|
|
<?php echo $content; ?>
|
|
</div>
|
|
<!--
|
|
$sidebar contains the content_for('sidebar') captured content.
|
|
-->
|
|
<?php if(!empty($sidebar)): ?>
|
|
<div id="sidebar">
|
|
<h2>Sidebar</h2>
|
|
<?php echo $sidebar; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</body>
|
|
</html>
|